diff options
Diffstat (limited to 'media-video/lives/lives-1.6.1.ebuild')
-rw-r--r-- | media-video/lives/lives-1.6.1.ebuild | 79 |
1 files changed, 0 insertions, 79 deletions
diff --git a/media-video/lives/lives-1.6.1.ebuild b/media-video/lives/lives-1.6.1.ebuild deleted file mode 100644 index 5ff690c..0000000 --- a/media-video/lives/lives-1.6.1.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI="4" - -inherit eutils autotools - -MY_P="LiVES-${PV}" -DESCRIPTION="LiVES is a Video Editing System" -HOMEPAGE="http://lives.sf.net" -SRC_URI="http://www.xs4all.nl/~salsaman/lives/current/${MY_P}.tar.bz2" - # sf.net only has rpms for this version - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~x86 ~ppc ~amd64" -IUSE="doc libvisual matroska nls ogg theora" #static-libs - -RDEPEND=">=media-video/mplayer-0.90-r2[encode,jpeg,png] - >=media-gfx/imagemagick-5.5.6[jpeg,png] - >=dev-lang/perl-5.8.0-r12 - >=x11-libs/gtk+-2.4:2 - virtual/jpeg - x11-libs/gdk-pixbuf - media-sound/sox - >=dev-lang/python-2.3.4 - media-libs/libsdl - media-video/mjpegtools - media-sound/jack-audio-connection-kit - virtual/ffmpeg - virtual/cdrtools - sys-libs/libavc1394 - libvisual? ( media-libs/libvisual ) - matroska? ( media-video/mkvtoolnix - media-libs/libmatroska ) - ogg? ( media-sound/ogmtools ) - theora? ( media-libs/libtheora )" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen )" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-1.4.2-config_doxygen.patch - epatch "${FILESDIR}"/${PN}-1.6.0-fix-typo-callbacks.c.patch - - # Don't try to detect installed copies wrt #295293 - sed -i -e '/^PKG_CHECK_MODULES(WEED/s:true:false:' configure.in || die - sed -i -e '/test/s:sendOSC:dIsAbLeAuToMaGiC:' \ - libOSC/sendOSC/Makefile.am || die - - # Use python 2.x as per reference in plugins - sed -i \ - -e '/#!.*env/s:python:python2:' \ - lives-plugins/plugins/encoders/multi_encoder* \ - lives-plugins/marcos-encoders/lives_*_encoder* || die - - AT_M4DIR="mk/autoconf" eautoreconf -} - -src_configure() { - #$(use_enable static-libs static) \ - econf \ - -disable-static \ - $(use_enable libvisual) \ - $(use_enable nls) \ - $(use_enable doc doxygen) -} - -src_install() { - emake -j1 DESTDIR="${D}" install - - rm -f "${ED}"usr/bin/lives #384727 - dosym lives-exe /usr/bin/lives - - dodoc AUTHORS BUGS ChangeLog FEATURES GETTING.STARTED NEWS README - - find "${ED}"usr -name '*.la' -exec rm -f {} + - rm -f "${ED}"usr/lib*/libweed-*.a -} |