diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2004-10-06 21:27:10 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2004-10-06 21:27:10 +0000 |
commit | a135d3bbe7429e838edd847184ec167c3c4a5c84 (patch) | |
tree | 184886f42a0defa309b2748c41bdd1039a6babe5 /media-video/cpdvd/cpdvd-1.10.ebuild | |
parent | Add .config parsing functions (diff) | |
download | gentoo-2-a135d3bbe7429e838edd847184ec167c3c4a5c84.tar.gz gentoo-2-a135d3bbe7429e838edd847184ec167c3c4a5c84.tar.bz2 gentoo-2-a135d3bbe7429e838edd847184ec167c3c4a5c84.zip |
Added to ~amd64. Fixed LICENSE.
Diffstat (limited to 'media-video/cpdvd/cpdvd-1.10.ebuild')
-rw-r--r-- | media-video/cpdvd/cpdvd-1.10.ebuild | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/media-video/cpdvd/cpdvd-1.10.ebuild b/media-video/cpdvd/cpdvd-1.10.ebuild index 5fa18b866242..10b3ef8dcf98 100644 --- a/media-video/cpdvd/cpdvd-1.10.ebuild +++ b/media-video/cpdvd/cpdvd-1.10.ebuild @@ -1,29 +1,29 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/cpdvd/cpdvd-1.10.ebuild,v 1.1 2004/10/06 20:31:27 trapni Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/cpdvd/cpdvd-1.10.ebuild,v 1.2 2004/10/06 21:23:29 eradicator Exp $ + +IUSE="" + +S="${WORKDIR}" DESCRIPTION="transfer a DVD title to your harddisk with ease on Linux" -SRC_URI="http://www.lallafa.de/bp/files/${P}.gz" HOMEPAGE="http://www.lallafa.de/bp/cpdvd.html" -KEYWORDS="~x86" -LICENSE="GPL-1" +SRC_URI="http://www.lallafa.de/bp/files/${P}.gz" + +LICENSE="GPL-2" SLOT="0" -IUSE="" +KEYWORDS="~amd64 ~x86" -DEPEND=" - >=media-video/transcode-0.6.2 - >=perl-5.8.0-r12 - >=cpvts-1.2 -" +DEPEND="" -MY_S=${WORKDIR} +RDEPEND=">=media-video/transcode-0.6.2 + >=perl-5.8.0-r12 + >=cpvts-1.2" src_compile () { - #there are probably other places to rename the file... - cd ${MY_S} || die - mv ${P} ${PN} || die + einfo "Nothing to compile." } src_install () { - dobin ${MY_S}/${PN} || die + newbin ${P} ${PN} || die } |