diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-12-02 21:39:19 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-12-02 21:39:19 +0000 |
commit | 8ba6495c0140e51494e9c4787e8616ef67297ab1 (patch) | |
tree | c1bffbe2dfbc0b6503d5dff5fb3c46e20b9b292a | |
parent | stable on alpha wrt bug #113289 (diff) | |
download | gentoo-2-8ba6495c0140e51494e9c4787e8616ef67297ab1.tar.gz gentoo-2-8ba6495c0140e51494e9c4787e8616ef67297ab1.tar.bz2 gentoo-2-8ba6495c0140e51494e9c4787e8616ef67297ab1.zip |
Dependency on GTK was erroneously on 1.2 version (see bug #114294), cleanup econf call.
(Portage version: 2.0.53)
-rw-r--r-- | media-libs/libquicktime/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/libquicktime/libquicktime-0.9.7-r1.ebuild | 14 |
2 files changed, 15 insertions, 6 deletions
diff --git a/media-libs/libquicktime/ChangeLog b/media-libs/libquicktime/ChangeLog index 24964971808a..f9b93c114199 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.45 2005/11/19 18:58:47 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v 1.46 2005/12/02 21:39:19 flameeyes Exp $ + + 02 Dec 2005; Diego Pettenò <flameeyes@gentoo.org> + libquicktime-0.9.7-r1.ebuild: + Dependency on GTK was erroneously on 1.2 version (see bug #114294), cleanup + econf call. 19 Nov 2005; Markus Rothe <corsair@gentoo.org> libquicktime-0.9.6-r1.ebuild, libquicktime-0.9.7-r1.ebuild: diff --git a/media-libs/libquicktime/libquicktime-0.9.7-r1.ebuild b/media-libs/libquicktime/libquicktime-0.9.7-r1.ebuild index 98158cd9cf56..a3e22c1aeaca 100644 --- a/media-libs/libquicktime/libquicktime-0.9.7-r1.ebuild +++ b/media-libs/libquicktime/libquicktime-0.9.7-r1.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.7-r1.ebuild,v 1.4 2005/11/19 18:58:47 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/libquicktime-0.9.7-r1.ebuild,v 1.5 2005/12/02 21:39:19 flameeyes Exp $ inherit libtool eutils autotools @@ -16,7 +16,7 @@ IUSE="gtk jpeg mmx vorbis png dv ieee1394 X" DEPEND=">=sys-apps/sed-4.0.5 dv? ( media-libs/libdv ) - gtk? ( =x11-libs/gtk+-1.2* ) + gtk? ( >=x11-libs/gtk+-2.4.0 ) png? ( media-libs/libpng ) jpeg? ( media-libs/jpeg ) vorbis? ( media-libs/libvorbis ) @@ -49,10 +49,10 @@ src_compile() { econf --enable-shared \ --enable-static \ $(use_enable mmx) \ - $(use_enable gtk) \ $(use_enable ieee1394 firewire) \ $(use_with dv libdv) \ - $(use_with X x) + $(use_with X x) \ + --without-cpuflags emake || die "make failed" } @@ -60,5 +60,9 @@ src_compile() { src_install() { make DESTDIR=${D} install || die "make install failed" - dosym /usr/include/lqt /usr/include/quicktime + # Compatibility with software that uses quicktime prefix, but + # don't do that when building for Darwin/MacOS + [[ ${CHOST} != *-darwin* ]] && \ + dosym /usr/include/lqt /usr/include/quicktime } + |