diff options
author | Marinus Schraal <foser@gentoo.org> | 2003-04-21 22:36:02 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2003-04-21 22:36:02 +0000 |
commit | bffc3056035e0ab250f19a45073084b3845a1eae (patch) | |
tree | bcad3e77b14ae6699c28d36fabc98a6952f3022e | |
parent | Fixing type in doc info. Closes #15535. (diff) | |
download | gentoo-2-bffc3056035e0ab250f19a45073084b3845a1eae.tar.gz gentoo-2-bffc3056035e0ab250f19a45073084b3845a1eae.tar.bz2 gentoo-2-bffc3056035e0ab250f19a45073084b3845a1eae.zip |
bugfix
-rw-r--r-- | media-sound/sound-juicer/ChangeLog | 5 | ||||
-rw-r--r-- | media-sound/sound-juicer/sound-juicer-0.1.ebuild | 9 |
2 files changed, 12 insertions, 2 deletions
diff --git a/media-sound/sound-juicer/ChangeLog b/media-sound/sound-juicer/ChangeLog index 4ef373e26670..972bac25b822 100644 --- a/media-sound/sound-juicer/ChangeLog +++ b/media-sound/sound-juicer/ChangeLog @@ -1,8 +1,11 @@ # ChangeLog for media-sound/sound-juicer # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/sound-juicer/ChangeLog,v 1.1 2003/04/19 11:48:34 foser Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/sound-juicer/ChangeLog,v 1.2 2003/04/21 22:36:02 foser Exp $ *sound-juicer-0.1 (19 Apr 2003) + 21 Apr 2003; foser <foser@gentoo.org> sound-juicer-0.1.ebuild : + Fix possible compile time problem with certain plugins not existing (#19717) + 19 Apr 2003; foser <foser@gentoo.org> ChangeLog, sound-juicer-0.1.ebuild : Initial commit, added patch to be 'slightly more' paranoid diff --git a/media-sound/sound-juicer/sound-juicer-0.1.ebuild b/media-sound/sound-juicer/sound-juicer-0.1.ebuild index 665114a77011..768562c4820c 100644 --- a/media-sound/sound-juicer/sound-juicer-0.1.ebuild +++ b/media-sound/sound-juicer/sound-juicer-0.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/sound-juicer/sound-juicer-0.1.ebuild,v 1.1 2003/04/19 11:48:34 foser Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/sound-juicer/sound-juicer-0.1.ebuild,v 1.2 2003/04/21 22:36:02 foser Exp $ inherit gnome2 eutils @@ -31,6 +31,13 @@ src_unpack() { # i'm a paranoid android <foser@gentoo.org> epatch ${FILESDIR}/${P}-paranoia.patch + # do not break when not finding certain plugins + epatch ${FILESDIR}/${P}-warn_plugins_missing.patch + + cd ${S} + autoconf || die } DOCS="AUTHORS COPYING ChangeLog INSTALL NEWS README TODO" + +SCROLLKEEPER_UPDATE="0" |