diff options
author | David Seifert <soap@gentoo.org> | 2016-12-12 22:10:03 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2016-12-12 22:10:30 +0100 |
commit | d73bc4cf60fd900badd3f23582d54c5913b5dccf (patch) | |
tree | e60df7f23abca71c8ad633f48b338419ee9da723 /media-video | |
parent | media-video/motiontrack: Fix building with GCC 5 (diff) | |
download | gentoo-d73bc4cf60fd900badd3f23582d54c5913b5dccf.tar.gz gentoo-d73bc4cf60fd900badd3f23582d54c5913b5dccf.tar.bz2 gentoo-d73bc4cf60fd900badd3f23582d54c5913b5dccf.zip |
media-video/motiontrack: Remove old
Package-Manager: portage-2.3.3
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/motiontrack/motiontrack-0.1.3.ebuild | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/media-video/motiontrack/motiontrack-0.1.3.ebuild b/media-video/motiontrack/motiontrack-0.1.3.ebuild deleted file mode 100644 index f4e8f9863af2..000000000000 --- a/media-video/motiontrack/motiontrack-0.1.3.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -DESCRIPTION="A set of tools that detect motion between two images" -SRC_URI="http://gemia.de/motion/${P}.tar.gz" -HOMEPAGE="http://motiontrack.sourceforge.net" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~x86 ~ppc ~ppc64 ~sparc ~mips ~alpha ~hppa ~amd64" - -IUSE="gd imagemagick debug multiprocess" - -DEPEND="debug? ( - gd? ( - imagemagick? ( >=media-gfx/imagemagick-5.5.7 ) - !imagemagick? ( media-libs/gd ) - ) - !gd? ( >=media-gfx/imagemagick-5.5.7 ) - ) - !debug? ( - imagemagick? ( - gd? ( media-libs/gd ) - !gd? ( >=media-gfx/imagemagick-5.5.7 ) - ) - !imagemagick? ( media-libs/gd ) - )" - -src_compile() { - - local myconf - - if use gd; then - if use imagemagick; then - elog "motiontrack can only use one of libgd or imagemagick, not both." - elog "default is libgd when debug is unset, imagemagick otherwise." - elog "please unset one of these use flags if you have other intentions." - fi - fi - if use debug; then - #default to imagemagick for providing better features - #for debugging - myconf="--enable-debug" - if use gd; then - if use imagemagick; then - myconf="${myconf} --enable-magick --disable-gd"; - else - myconf="${myconf} --disable-magick --enable-gd"; - fi - else - myconf="${myconf} --enable-magick --disable-gd"; - fi - else - #default to libgd for being faster - myconf="--disable-debug" - if use imagemagick; then - if use gd; then - myconf="${myconf} --disable-magick --enable-gd"; - else - myconf="${myconf} --enable-magick --disable-gd"; - fi - else - myconf="${myconf} --disable-magick --enable-gd"; - fi - fi - - econf $myconf \ - $(use_enable multiprocess cluster) \ - || die "configure failed" - emake || die "make failed" - -} - -src_install() { - make DESTDIR="${D}" install || die "install failed" - dodoc README src/TheCode.txt -} |