diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2008-11-30 10:01:39 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2008-11-30 10:01:39 +0000 |
commit | 46867f0082e287db897210e0d8508f83c4c30969 (patch) | |
tree | d40283ab39dd43780529031ab32b367c4d7d0422 /media-sound/takcd | |
parent | version bump: mostly bug fixes (diff) | |
download | gentoo-2-46867f0082e287db897210e0d8508f83c4c30969.tar.gz gentoo-2-46867f0082e287db897210e0d8508f83c4c30969.tar.bz2 gentoo-2-46867f0082e287db897210e0d8508f83c4c30969.zip |
Remove redudant src_compile. Use DESTDIR. Don't install README.SunOS.
(Portage version: 2.1.6_rc2/cvs/Linux 2.6.27.7 i686)
Diffstat (limited to 'media-sound/takcd')
-rw-r--r-- | media-sound/takcd/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/takcd/takcd-0.10.ebuild | 20 |
2 files changed, 11 insertions, 16 deletions
diff --git a/media-sound/takcd/ChangeLog b/media-sound/takcd/ChangeLog index e328625594eb..301d4eeab24b 100644 --- a/media-sound/takcd/ChangeLog +++ b/media-sound/takcd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/takcd -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/takcd/ChangeLog,v 1.13 2007/12/25 17:40:15 phreak Exp $ +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/takcd/ChangeLog,v 1.14 2008/11/30 10:01:39 ssuominen Exp $ + + 30 Nov 2008; <ssuominen@gentoo.org> takcd-0.10.ebuild: + Remove redudant src_compile. Use DESTDIR. Don't install README.SunOS. 25 Dec 2007; Christian Heim <phreak@gentoo.org> metadata.xml: Removing seemant from metadata.xml as per #202469. diff --git a/media-sound/takcd/takcd-0.10.ebuild b/media-sound/takcd/takcd-0.10.ebuild index dd95a20b366a..382563886ddf 100644 --- a/media-sound/takcd/takcd-0.10.ebuild +++ b/media-sound/takcd/takcd-0.10.ebuild @@ -1,36 +1,28 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/takcd/takcd-0.10.ebuild,v 1.12 2007/01/23 00:27:06 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/takcd/takcd-0.10.ebuild,v 1.13 2008/11/30 10:01:39 ssuominen Exp $ WANT_AUTOMAKE="1.4" WANT_AUTOCONF="2.5" inherit autotools -IUSE="" - DESCRIPTION="Command line CD player" HOMEPAGE="http://bard.sytes.net/takcd/" SRC_URI="http://bard.sytes.net/takcd/${P}.tar.gz" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="alpha amd64 ~hppa ia64 ~mips ~ppc sparc x86" +IUSE="" src_unpack() { unpack ${A} cd "${S}" - eautoreconf } -src_compile() { - econf || die - emake || die -} - src_install() { - einstall || die - - dodoc AUTHORS ChangeLog NEWS README* TODO + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS ChangeLog NEWS README README.takmulti TODO } |