diff options
author | Chris White <chriswhite@gentoo.org> | 2005-03-29 04:26:20 +0000 |
---|---|---|
committer | Chris White <chriswhite@gentoo.org> | 2005-03-29 04:26:20 +0000 |
commit | b7f2e7551d5ab672520652d8523ce6c3d99861ba (patch) | |
tree | 0082e7da3933ade73d50cf970c982b842703e6af /media-video/cpdvd | |
parent | Fixed the arch logic to -* [~x86,x86] instead of the long list of keywords si... (diff) | |
download | gentoo-2-b7f2e7551d5ab672520652d8523ce6c3d99861ba.tar.gz gentoo-2-b7f2e7551d5ab672520652d8523ce6c3d99861ba.tar.bz2 gentoo-2-b7f2e7551d5ab672520652d8523ce6c3d99861ba.zip |
Fix bug #86966. Add a built_with_use check for transcode and dvdread.
(Portage version: 2.0.51.19)
Diffstat (limited to 'media-video/cpdvd')
-rw-r--r-- | media-video/cpdvd/ChangeLog | 7 | ||||
-rw-r--r-- | media-video/cpdvd/cpdvd-1.10.ebuild | 10 |
2 files changed, 13 insertions, 4 deletions
diff --git a/media-video/cpdvd/ChangeLog b/media-video/cpdvd/ChangeLog index 12288bde33ee..b6d87c1c8107 100644 --- a/media-video/cpdvd/ChangeLog +++ b/media-video/cpdvd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-video/cpdvd -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/cpdvd/ChangeLog,v 1.5 2004/11/30 22:12:08 swegener Exp $ +# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/cpdvd/ChangeLog,v 1.6 2005/03/29 04:26:20 chriswhite Exp $ + + 29 Mar 2005; Chris White <chriswhite@gentoo.org> cpdvd-1.10.ebuild: + Fix bug #86966. Add a built_with_use check for transcode and dvdread. 30 Nov 2004; Sven Wegener <swegener@gentoo.org> cpdvd-1.10.ebuild: Fixed invalid atoms in *DEPEND. diff --git a/media-video/cpdvd/cpdvd-1.10.ebuild b/media-video/cpdvd/cpdvd-1.10.ebuild index 585226b6fe55..8da0ee734327 100644 --- a/media-video/cpdvd/cpdvd-1.10.ebuild +++ b/media-video/cpdvd/cpdvd-1.10.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 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.3 2004/11/30 22:12:08 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/cpdvd/cpdvd-1.10.ebuild,v 1.4 2005/03/29 04:26:20 chriswhite Exp $ + +inherit eutils IUSE="" @@ -20,6 +22,10 @@ RDEPEND=">=media-video/transcode-0.6.2 >=dev-lang/perl-5.8.0-r12 >=media-video/cpvts-1.2" +pkg_setup() { + built_with_use transcode dvdread || die "Transcode needs dvdread support builtin for this package to work." +} + src_compile () { einfo "Nothing to compile." } |