diff options
-rw-r--r-- | media-libs/allegro/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/allegro/allegro-4.1.18.ebuild | 5 | ||||
-rw-r--r-- | media-libs/allegro/files/allegro-4.1.18-m4.patch | 11 |
3 files changed, 20 insertions, 4 deletions
diff --git a/media-libs/allegro/ChangeLog b/media-libs/allegro/ChangeLog index 72797251d1f7..1f7160a36b23 100644 --- a/media-libs/allegro/ChangeLog +++ b/media-libs/allegro/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/allegro -# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v 1.42 2005/08/10 18:37:30 dang Exp $ +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v 1.43 2005/08/19 06:00:04 vapier Exp $ + + 19 Aug 2005; Mike Frysinger <vapier@gentoo.org> + +files/allegro-4.1.18-m4.patch, allegro-4.1.18.ebuild: + Fix aclocal underquoted warnings. 10 Aug 2005; <dang@gentoo.org> allegro-4.1.18.ebuild: Keyworded ~amd64 diff --git a/media-libs/allegro/allegro-4.1.18.ebuild b/media-libs/allegro/allegro-4.1.18.ebuild index e6cdbac4bd57..1de9c069b3a1 100644 --- a/media-libs/allegro/allegro-4.1.18.ebuild +++ b/media-libs/allegro/allegro-4.1.18.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-4.1.18.ebuild,v 1.2 2005/08/10 18:37:30 dang Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-4.1.18.ebuild,v 1.3 2005/08/19 06:00:04 vapier Exp $ inherit flag-o-matic @@ -26,7 +26,8 @@ DEPEND="${RDEPEND} src_unpack() { unpack ${A} - + cd "${S}" + epatch "${FILESDIR}"/${P}-m4.patch sed -i \ -e 's/&_oss_\(numfrags\|fragsize\)/NULL/' \ "${S}/setup/setup.c" \ diff --git a/media-libs/allegro/files/allegro-4.1.18-m4.patch b/media-libs/allegro/files/allegro-4.1.18-m4.patch new file mode 100644 index 000000000000..d2ea265e95c2 --- /dev/null +++ b/media-libs/allegro/files/allegro-4.1.18-m4.patch @@ -0,0 +1,11 @@ +--- misc/allegro.m4 ++++ misc/allegro.m4 +@@ -11,7 +11,7 @@ + dnl AM_PATH_allegro([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) + dnl Test for allegro, and define allegro_CFLAGS and allegro_LIBS + dnl +-AC_DEFUN(AM_PATH_ALLEGRO,[ ++AC_DEFUN([AM_PATH_ALLEGRO],[ + AC_ARG_WITH(allegro-prefix, + [ --with-allegro-prefix=PFX Prefix where liballegro is installed (optional)], + ALLEGRO_CONFIG_prefix="$withval", ALLEGRO_CONFIG_prefix="") |