diff options
author | 2007-08-19 16:06:32 +0000 | |
---|---|---|
committer | 2007-08-19 16:06:32 +0000 | |
commit | d768fde3dd16467a713eb3a46d566a7d813536c5 (patch) | |
tree | 0f0a1be2fcb8698a9566cdde0e1f7f440bf8fdee /media-sound/id3ed | |
parent | Version bump. Also, re-enabling the tests, they seem to be less brutal now :) (diff) | |
download | gentoo-2-d768fde3dd16467a713eb3a46d566a7d813536c5.tar.gz gentoo-2-d768fde3dd16467a713eb3a46d566a7d813536c5.tar.bz2 gentoo-2-d768fde3dd16467a713eb3a46d566a7d813536c5.zip |
Stop pre-stripping id3ed binary. Use correct CXX by using toolchain-funcs. Use DESTDIR for installing, as it's supported.
(Portage version: 2.1.3.6)
Diffstat (limited to 'media-sound/id3ed')
-rw-r--r-- | media-sound/id3ed/ChangeLog | 8 | ||||
-rw-r--r-- | media-sound/id3ed/id3ed-1.10.4.ebuild | 20 |
2 files changed, 19 insertions, 9 deletions
diff --git a/media-sound/id3ed/ChangeLog b/media-sound/id3ed/ChangeLog index 344c8af9f81f..9e250f610cb9 100644 --- a/media-sound/id3ed/ChangeLog +++ b/media-sound/id3ed/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/id3ed -# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/id3ed/ChangeLog,v 1.12 2006/08/13 15:00:16 yuval Exp $ +# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/id3ed/ChangeLog,v 1.13 2007/08/19 16:06:32 drac Exp $ + + 19 Aug 2007; Samuli Suominen <drac@gentoo.org> id3ed-1.10.4.ebuild: + Stop pre-stripping id3ed binary. Use correct CXX by using toolchain-funcs. + Use DESTDIR for installing, as it's supported. 13 Aug 2006; <yuval@gentoo.org> id3ed-1.10.4.ebuild: Updated HOMEPAGE and SRC_URI diff --git a/media-sound/id3ed/id3ed-1.10.4.ebuild b/media-sound/id3ed/id3ed-1.10.4.ebuild index 3976c82aa4a9..3fa9128e7234 100644 --- a/media-sound/id3ed/id3ed-1.10.4.ebuild +++ b/media-sound/id3ed/id3ed-1.10.4.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/id3ed/id3ed-1.10.4.ebuild,v 1.16 2006/08/13 15:00:16 yuval Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/id3ed/id3ed-1.10.4.ebuild,v 1.17 2007/08/19 16:06:32 drac Exp $ -IUSE="" +inherit toolchain-funcs DESCRIPTION="ID3 tag editor for mp3 files" HOMEPAGE="http://www.dakotacom.net/~donut/programs/id3ed.html" @@ -11,18 +11,24 @@ SRC_URI="http://www.dakotacom.net/~donut/programs/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc ppc64 sparc x86" +IUSE="" DEPEND="sys-libs/ncurses sys-libs/readline" +src_unpack() { + unpack ${A} + cd "${S}" + sed -i -e "s:-s::" Makefile.in +} + src_compile() { - econf || die - emake CFLAGS="${CFLAGS} -I./" || die + econf + emake CXX="$(tc-getCXX)" CFLAGS="${CFLAGS} -I./" || die "emake failed." } src_install() { dodir /usr/bin /usr/share/man/man1 - einstall || die - + emake DESTDIR="${D}" install || die "emake install failed." dodoc README ChangeLog } |