From 4ce598e0e91cf9ecb264d0ea5522f4078f23caaf Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Thu, 30 Sep 2010 07:56:09 +0000 Subject: main/guile: build fix for gcc-4.5 --- main/guile/APKBUILD | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) (limited to 'main/guile/APKBUILD') diff --git a/main/guile/APKBUILD b/main/guile/APKBUILD index 6283d7e341..8a1bd6e5d5 100644 --- a/main/guile/APKBUILD +++ b/main/guile/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa pkgname=guile pkgver=1.8.7 -pkgrel=3 +pkgrel=4 pkgdesc="Guile is a portable, embeddable Scheme implementation written in C" url="http://www.gnu.org/software/guile/" license="GPL" @@ -9,18 +9,34 @@ subpackages="$pkgname-dev $pkgname-doc" makedepends="gmp-dev libtool ncurses-dev texinfo" depends= install= -source="ftp://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz" +source="ftp://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz + guile-1.8.7-gcc45.patch + " + +_builddir="$srcdir"/$pkgname-$pkgver +prepare() { + cd "$_builddir" + for i in $source; do + case "$i" in + *.patch) + msg "Applying $i" + patch -p1 -i "$srcdir"/$i || return 1 + ;; + esac + done +} build() { - cd "$srcdir"/$pkgname-$pkgver + cd "$_builddir" ./configure --prefix=/usr \ --disable-error-on-warning || return 1 make LDFLAGS+="-lpthread" || return 1 } package() { - cd "$srcdir"/$pkgname-$pkgver + cd "$_builddir" make DESTDIR="$pkgdir" install || return 1 } -md5sums="991b5b3efcbbc3f7507d05bc42f80a5e guile-1.8.7.tar.gz" +md5sums="991b5b3efcbbc3f7507d05bc42f80a5e guile-1.8.7.tar.gz +608a4d2d7bc072d5edc34aa2be1f609f guile-1.8.7-gcc45.patch" -- cgit v1.2.3