diff options
author | Thomas Anderson <gentoofan23@gentoo.org> | 2009-05-08 18:55:50 +0000 |
---|---|---|
committer | Thomas Anderson <gentoofan23@gentoo.org> | 2009-05-08 18:55:50 +0000 |
commit | 17b419d39a5f51a3f9add4daa0dee1c6ec7aa0e7 (patch) | |
tree | 7f850a35ed7bb10cc759cb89ae7a2c751eb62245 /media-sound/imp3sh | |
parent | Various QA fixes (diff) | |
download | gentoo-2-17b419d39a5f51a3f9add4daa0dee1c6ec7aa0e7.tar.gz gentoo-2-17b419d39a5f51a3f9add4daa0dee1c6ec7aa0e7.tar.bz2 gentoo-2-17b419d39a5f51a3f9add4daa0dee1c6ec7aa0e7.zip |
QA fixes: quote $S and no need for die after econf
(Portage version: 2.1.6.11/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/imp3sh')
-rw-r--r-- | media-sound/imp3sh/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/imp3sh/imp3sh-0.2.4.ebuild | 9 |
2 files changed, 10 insertions, 6 deletions
diff --git a/media-sound/imp3sh/ChangeLog b/media-sound/imp3sh/ChangeLog index d9137b6b26c7..da719e0c8b85 100644 --- a/media-sound/imp3sh/ChangeLog +++ b/media-sound/imp3sh/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/imp3sh -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/imp3sh/ChangeLog,v 1.12 2007/05/12 18:31:24 beandog Exp $ +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/imp3sh/ChangeLog,v 1.13 2009/05/08 18:55:50 gentoofan23 Exp $ + + 08 May 2009; Thomas Anderson <gentoofan23@gentoo.org> imp3sh-0.2.4.ebuild: + QA fixes: quote $S and no need for die after econf *imp3sh-0.2.4 (12 May 2007) diff --git a/media-sound/imp3sh/imp3sh-0.2.4.ebuild b/media-sound/imp3sh/imp3sh-0.2.4.ebuild index 673032a7aec8..ddba094c1e27 100644 --- a/media-sound/imp3sh/imp3sh-0.2.4.ebuild +++ b/media-sound/imp3sh/imp3sh-0.2.4.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/imp3sh/imp3sh-0.2.4.ebuild,v 1.1 2007/05/12 18:31:24 beandog Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/imp3sh/imp3sh-0.2.4.ebuild,v 1.2 2009/05/08 18:55:50 gentoofan23 Exp $ inherit gnuconfig toolchain-funcs @@ -11,6 +11,7 @@ SRC_URI="http://www.geocities.com/kman_can/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="-* ~x86" +IUSE="" DEPEND="sys-libs/ncurses media-libs/libvorbis @@ -19,13 +20,13 @@ DEPEND="sys-libs/ncurses src_unpack() { unpack ${A} + cd "${S}" - cd ${S} gnuconfig_update } src_compile() { - econf || die + econf emake CCLD=$(tc-getCXX) || die } |