diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-04-04 09:10:37 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-04-04 09:10:37 +0000 |
commit | ec34776cc5dc15589bf59a52579e52c82172dfd9 (patch) | |
tree | 84b39760b635a079b3418852edfda0b631ce2421 /media-libs | |
parent | version bump (diff) | |
download | gentoo-2-ec34776cc5dc15589bf59a52579e52c82172dfd9.tar.gz gentoo-2-ec34776cc5dc15589bf59a52579e52c82172dfd9.tar.bz2 gentoo-2-ec34776cc5dc15589bf59a52579e52c82172dfd9.zip |
remove old
(Portage version: 2.2.0_alpha171/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libquicktime/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/libquicktime/libquicktime-1.2.3-r1.ebuild | 104 |
2 files changed, 5 insertions, 105 deletions
diff --git a/media-libs/libquicktime/ChangeLog b/media-libs/libquicktime/ChangeLog index b5879bdc6865..47e9532bc29d 100644 --- a/media-libs/libquicktime/ChangeLog +++ b/media-libs/libquicktime/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/libquicktime # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v 1.191 2013/02/02 22:49:46 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v 1.192 2013/04/04 09:10:37 aballier Exp $ + + 04 Apr 2013; Alexis Ballier <aballier@gentoo.org> + -libquicktime-1.2.3-r1.ebuild: + remove old 02 Feb 2013; Agostino Sarubbo <ago@gentoo.org> libquicktime-1.2.4.ebuild: Add ~arm, wrt bug #449220 diff --git a/media-libs/libquicktime/libquicktime-1.2.3-r1.ebuild b/media-libs/libquicktime/libquicktime-1.2.3-r1.ebuild deleted file mode 100644 index 397ee0685d04..000000000000 --- a/media-libs/libquicktime/libquicktime-1.2.3-r1.ebuild +++ /dev/null @@ -1,104 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/libquicktime-1.2.3-r1.ebuild,v 1.5 2012/05/05 08:02:34 jdhore Exp $ - -EAPI=4 - -inherit libtool eutils - -MY_P=${P/_pre/pre} - -DESCRIPTION="A library based on quicktime4linux with extensions" -HOMEPAGE="http://libquicktime.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" -IUSE="mmx X opengl dv gtk alsa aac encode png jpeg vorbis lame x264 ffmpeg doc schroedinger" - -RDEPEND="dv? ( media-libs/libdv ) - gtk? ( >=x11-libs/gtk+-2.4.0:2 ) - aac? ( - media-libs/faad2 - encode? ( media-libs/faac ) - ) - alsa? ( >=media-libs/alsa-lib-1.0.16 ) - png? ( media-libs/libpng ) - jpeg? ( virtual/jpeg ) - vorbis? ( media-libs/libvorbis media-libs/libogg ) - lame? ( media-sound/lame ) - ffmpeg? ( virtual/ffmpeg ) - x264? ( media-libs/x264 ) - schroedinger? ( >=media-libs/schroedinger-1.0.5 ) - X? ( x11-libs/libXaw - x11-libs/libXv - x11-libs/libXext - x11-libs/libX11 - opengl? ( media-libs/mesa ) - ) - virtual/libintl" -DEPEND="${RDEPEND} - X? ( - x11-proto/videoproto - x11-proto/xextproto - ) - doc? ( app-doc/doxygen ) - virtual/pkgconfig - sys-devel/gettext" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - # Needed for sane .so versionning on g/fbsd - elibtoolize -} - -src_configure() { - local MY_OPTS="" - if use !encode || use !aac; then - MY_OPTS="--without-faac" - fi - - econf --enable-shared \ - --enable-static \ - --enable-gpl \ - $(use_with doc doxygen) \ - $(use_enable mmx asm) \ - $(use_with X x) \ - $(use_with gtk) \ - $(use_with dv libdv) \ - $(use_with alsa) \ - $(use_with aac faad2) \ - $(use_with png libpng) \ - $(use_with jpeg libjpeg) \ - $(use vorbis || echo "--without-vorbis") \ - $(use_with lame) \ - $(use_with x264) \ - $(use_with ffmpeg) \ - $(use_with opengl) \ - $(use_with schroedinger) \ - ${MY_OPTS} \ - --without-cpuflags -} - -src_install() { - default - dodoc README TODO ChangeLog - # 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 -} - -pkg_preinst() { - if [[ -d /usr/include/quicktime && ! -L /usr/include/quicktime ]]; then - elog "For compatibility with other quicktime libraries, ${PN} was" - elog "going to create a /usr/include/quicktime symlink, but for some" - elog "reason that is a directory on your system." - - elog "Please check that is empty, and remove it, or submit a bug" - elog "telling us which package owns the directory." - die "/usr/include/quicktime is a directory." - fi -} |