diff options
Diffstat (limited to 'abs/extra/libmng')
| -rw-r--r-- | abs/extra/libmng/PKGBUILD | 27 | ||||
| -rw-r--r-- | abs/extra/libmng/__changelog | 1 | ||||
| -rw-r--r-- | abs/extra/libmng/automake-patch | 11 | 
3 files changed, 27 insertions, 12 deletions
| diff --git a/abs/extra/libmng/PKGBUILD b/abs/extra/libmng/PKGBUILD index 8e954f4..7be67d7 100644 --- a/abs/extra/libmng/PKGBUILD +++ b/abs/extra/libmng/PKGBUILD @@ -1,6 +1,6 @@ -# $Id: PKGBUILD 63248 2010-01-16 20:44:09Z jgc $ -# Contributor: Tom Newsom <Jeepster@gmx.co.uk> -# Maintainer: judd <jvinet@zeroflux.org> +# $Id: PKGBUILD 137860 2011-09-12 05:28:13Z eric $ +# Maintainer: Eric Bélanger <eric@archlinux.org> +  pkgname=libmng  pkgver=1.0.10  pkgrel=4 @@ -8,21 +8,24 @@ pkgdesc="A collection of routines used to create and manipulate MNG format graph  arch=('i686' 'x86_64')  url="http://www.libmng.com/"  license=('custom') -depends=('zlib' 'libjpeg>=8') -options=(!libtool) -source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) -md5sums=('a464ae7d679781beebdf7440d144b7bd') +depends=('zlib' 'libjpeg') +options=('!libtool') +source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2 automake-patch)  build() { -  cd $srcdir/$pkgname-$pkgver +  cd "${srcdir}/${pkgname}-${pkgver}" +  patch -Np0 < $srcdir/automake-patch || exit 1    ln -s makefiles/configure.in .    ln -s makefiles/Makefile.am .    autoreconf --force --install    ./configure --prefix=/usr -  make || return 1 +  make  } +  package() { -  cd $srcdir/$pkgname-$pkgver -  make DESTDIR=$pkgdir install || return 1 -  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE +  cd "${srcdir}/${pkgname}-${pkgver}" +  make DESTDIR="${pkgdir}" install +  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"  } +md5sums=('eaf1476a3bb29f6190bca660e6abef16' +         'abd75e07394cc04e0d8ffa9a93b1e485') diff --git a/abs/extra/libmng/__changelog b/abs/extra/libmng/__changelog new file mode 100644 index 0000000..41fd872 --- /dev/null +++ b/abs/extra/libmng/__changelog @@ -0,0 +1 @@ +add automake_patch diff --git a/abs/extra/libmng/automake-patch b/abs/extra/libmng/automake-patch new file mode 100644 index 0000000..309983a --- /dev/null +++ b/abs/extra/libmng/automake-patch @@ -0,0 +1,11 @@ +--- makefiles/configure.in	2005-01-30 05:28:00.000000000 -0500 ++++ makefiles/configure.in.new	2012-05-03 16:36:01.000000000 -0400 +@@ -15,7 +15,7 @@ + dnl Checks for programs. + AC_PROG_CC + AC_ISC_POSIX +-AM_C_PROTOTYPES ++#AM_C_PROTOTYPES + if test "x$U" != "x"; then +   AC_MSG_ERROR(Compiler not ANSI compliant) + fi | 
