diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-01-26 00:44:46 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-01-26 00:44:46 +0000 |
commit | 5b2aeecb424b8e685a76f3222868502945c1f82b (patch) | |
tree | 42b285ecccf1f4d0aa83c485cf70c571f341bd2e /media-sound/glame | |
parent | be more verbose (diff) | |
download | gentoo-2-5b2aeecb424b8e685a76f3222868502945c1f82b.tar.gz gentoo-2-5b2aeecb424b8e685a76f3222868502945c1f82b.tar.bz2 gentoo-2-5b2aeecb424b8e685a76f3222868502945c1f82b.zip |
dont use old WANT_AUTOCONF #35111
Diffstat (limited to 'media-sound/glame')
-rw-r--r-- | media-sound/glame/glame-0.6.4.ebuild | 4 | ||||
-rw-r--r-- | media-sound/glame/glame-1.0.1.ebuild | 4 | ||||
-rw-r--r-- | media-sound/glame/glame-1.0.2.ebuild | 22 |
3 files changed, 13 insertions, 17 deletions
diff --git a/media-sound/glame/glame-0.6.4.ebuild b/media-sound/glame/glame-0.6.4.ebuild index 438c57e913da..a82a6bdbd532 100644 --- a/media-sound/glame/glame-0.6.4.ebuild +++ b/media-sound/glame/glame-0.6.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/glame/glame-0.6.4.ebuild,v 1.5 2004/01/21 18:42:53 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/glame/glame-0.6.4.ebuild,v 1.6 2004/01/26 00:42:06 vapier Exp $ IUSE="nls gnome" @@ -33,7 +33,7 @@ src_unpack() { fi # fix makefile problem - export WANT_AUTOCONF_2_5=1 + export WANT_AUTOCONF=2.5 cd ${S}/libltdl autoconf -f } diff --git a/media-sound/glame/glame-1.0.1.ebuild b/media-sound/glame/glame-1.0.1.ebuild index f39fef3e4c2b..2b33bcad3050 100644 --- a/media-sound/glame/glame-1.0.1.ebuild +++ b/media-sound/glame/glame-1.0.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/glame/glame-1.0.1.ebuild,v 1.4 2004/01/21 18:42:53 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/glame/glame-1.0.1.ebuild,v 1.5 2004/01/26 00:42:06 vapier Exp $ IUSE="nls gnome" @@ -35,7 +35,7 @@ src_unpack() { fi # fix makefile problem - export WANT_AUTOCONF_2_5=1 + export WANT_AUTOCONF=2.5 cd ${S}/libltdl autoconf -f } diff --git a/media-sound/glame/glame-1.0.2.ebuild b/media-sound/glame/glame-1.0.2.ebuild index 8d960409df0e..410a52a351fe 100644 --- a/media-sound/glame/glame-1.0.2.ebuild +++ b/media-sound/glame/glame-1.0.2.ebuild @@ -1,17 +1,15 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/glame/glame-1.0.2.ebuild,v 1.1 2004/01/21 18:42:53 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/glame/glame-1.0.2.ebuild,v 1.2 2004/01/26 00:42:06 vapier Exp $ -IUSE="nls gnome oggvorbis debug alsa" - -S=${WORKDIR}/${P} -DESCRIPTION="Glame is an audio file editing utility" -SRC_URI="mirror://sourceforge/glame/${P}.tar.gz" +DESCRIPTION="an audio file editing utility" HOMEPAGE="http://glame.sourceforge.net/" +SRC_URI="mirror://sourceforge/glame/${P}.tar.gz" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="~x86 ~sparc" +IUSE="nls gnome oggvorbis debug alsa" DEPEND=">=dev-util/guile-1.4-r3 >=dev-libs/libxml-1.8.0 @@ -24,7 +22,6 @@ DEPEND=">=dev-util/guile-1.4-r3 oggvorbis? ( >=media-libs/libvorbis-1.0 ) gnome? ( <gnome-base/libglade-2 gnome-base/gnome-libs ) alsa? ( media-libs/alsa-lib )" - RDEPEND="nls? ( >=sys-devel/gettext-0.11.3 )" src_unpack() { @@ -39,7 +36,7 @@ src_unpack() { fi # fix makefile problem - export WANT_AUTOCONF_2_5=1 + export WANT_AUTOCONF=2.5 cd ${S}/libltdl autoconf -f @@ -50,7 +47,7 @@ src_unpack() { src_compile() { local myconf="--enable-ladspa" - if [ "`use gnome`" ] + if [ `use gnome` ] then # Use a valid icon for the GNOME menu entry cp src/gui/glame.desktop src/gui/glame.desktop.old @@ -78,14 +75,13 @@ src_compile() { src_install () { einstall || die "Installation failed" - if [ "`use gnome`" ] + if [ `use gnome` ] then dodir /usr/share/pixmaps dosym ../glame/pixmaps/glame-logo.jpg \ /usr/share/pixmaps/glame-logo.jpg fi - dodoc ABOUT-NLS AUTHORS BUGS COPYING CREDITS ChangeLog MAINTAINERS \ + dodoc ABOUT-NLS AUTHORS BUGS CREDITS ChangeLog MAINTAINERS \ NEWS README TODO } - |