diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2004-12-28 08:18:03 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2004-12-28 08:18:03 +0000 |
commit | 6774a8b2adb6934bbcf9dbac57f220644ad396f1 (patch) | |
tree | 8cab705a426a5909153cf5c7bcbdaa10754f8aea /media-gfx/pixie/pixie-1.3.13.ebuild | |
parent | Added pam as a default use flag to fix issues with the 2004.3 stages. (diff) | |
download | gentoo-2-6774a8b2adb6934bbcf9dbac57f220644ad396f1.tar.gz gentoo-2-6774a8b2adb6934bbcf9dbac57f220644ad396f1.tar.bz2 gentoo-2-6774a8b2adb6934bbcf9dbac57f220644ad396f1.zip |
Version bump and fixing libtool related problems... Closes bug #75186.
Diffstat (limited to 'media-gfx/pixie/pixie-1.3.13.ebuild')
-rw-r--r-- | media-gfx/pixie/pixie-1.3.13.ebuild | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/media-gfx/pixie/pixie-1.3.13.ebuild b/media-gfx/pixie/pixie-1.3.13.ebuild index 4cf96f018223..8f873f5ced34 100644 --- a/media-gfx/pixie/pixie-1.3.13.ebuild +++ b/media-gfx/pixie/pixie-1.3.13.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/pixie/pixie-1.3.13.ebuild,v 1.2 2004/09/01 08:41:47 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pixie/pixie-1.3.13.ebuild,v 1.3 2004/12/28 08:18:02 eradicator Exp $ inherit eutils @@ -24,6 +24,7 @@ RDEPEND="media-libs/jpeg X? ( virtual/x11 )" DEPEND="${RDEPEND} + sys-devel/libtool >=sys-devel/automake-1.8" src_unpack() { @@ -36,11 +37,12 @@ src_unpack() { # Gentoo-specific stuff epatch ${FILESDIR}/${PN}-1.3.11-gentoo.patch - # redirecting aclocal to /dev/null because there are alot of warnings - # output for deprecated stuff in 1.8.5 - WANT_AUTOMAKE=1.8 aclocal >& /dev/null - WANT_AUTOMAKE=1.8 automake - WANT_AUTOCONF=2.5 autoconf + export WANT_AUTOMAKE=1.8 + export WANT_AUTOCONF=2.5 + aclocal + libtoolize --force --copy + automake -a -f -c + autoconf } src_compile() { |