diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-04-28 10:53:44 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-04-28 10:53:44 +0000 |
commit | b984d047b82cbbd7977687498df73c46d2ea3841 (patch) | |
tree | d41e5cbe35739e004677f95f5ce903c13337e358 /media-libs | |
parent | stabilize .28-r1 (diff) | |
download | gentoo-2-b984d047b82cbbd7977687498df73c46d2ea3841.tar.gz gentoo-2-b984d047b82cbbd7977687498df73c46d2ea3841.tar.bz2 gentoo-2-b984d047b82cbbd7977687498df73c46d2ea3841.zip |
Die compilation if xorg-x11 is built without xv support, fixes #76663. Marked stable on amd64.
(Portage version: 2.0.51.20-r5)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libquicktime/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/libquicktime/libquicktime-0.9.4.ebuild | 10 |
2 files changed, 14 insertions, 3 deletions
diff --git a/media-libs/libquicktime/ChangeLog b/media-libs/libquicktime/ChangeLog index 58973fb67e5f..e56a8feadc38 100644 --- a/media-libs/libquicktime/ChangeLog +++ b/media-libs/libquicktime/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/libquicktime # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v 1.31 2005/04/05 20:43:28 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v 1.32 2005/04/28 10:53:44 flameeyes Exp $ + + 28 Apr 2005; Diego Pettenò <flameeyes@gentoo.org> + libquicktime-0.9.4.ebuild: + Die compilation if xorg-x11 is built without xv support, fixes #76663. + Marked stable on amd64. 05 Apr 2005; Jeremy Huddleston <eradicator@gentoo.org> -libquicktime-0.9.2_pre1.ebuild, libquicktime-0.9.2.ebuild, diff --git a/media-libs/libquicktime/libquicktime-0.9.4.ebuild b/media-libs/libquicktime/libquicktime-0.9.4.ebuild index 6ef6b3332248..88e6c3f84c86 100644 --- a/media-libs/libquicktime/libquicktime-0.9.4.ebuild +++ b/media-libs/libquicktime/libquicktime-0.9.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/libquicktime-0.9.4.ebuild,v 1.2 2005/04/05 20:43:28 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/libquicktime-0.9.4.ebuild,v 1.3 2005/04/28 10:53:44 flameeyes Exp $ inherit libtool eutils @@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~ppc ~ppc64 ~sparc ~x86" IUSE="gtk jpeg mmx oggvorbis png dv ieee1394" @@ -27,6 +27,12 @@ DEPEND=">=sys-apps/sed-4.0.5 !virtual/quicktime" PROVIDE="virtual/quicktime" +pkg_setup() { + if has_version xorg-x11 && ! built_with_use xorg-x11 xv; then + die "You need xv support to compile ${PN}." + fi +} + src_unpack() { unpack ${A} |