summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-05-06 10:01:54 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-05-06 10:01:54 +0000
commitee3b61beb1f485bfe7d2ccdf97987a96df5eb229 (patch)
tree57cd10a8dcc1a42e7ab3a93dcde926fada0951f3 /media-libs/libxtract/libxtract-0.4.7.ebuild
parentRemove old. (diff)
downloadhistorical-ee3b61beb1f485bfe7d2ccdf97987a96df5eb229.tar.gz
historical-ee3b61beb1f485bfe7d2ccdf97987a96df5eb229.tar.bz2
historical-ee3b61beb1f485bfe7d2ccdf97987a96df5eb229.zip
Remove old.
Package-Manager: portage-2.2.18/cvs/Linux x86_64
Diffstat (limited to 'media-libs/libxtract/libxtract-0.4.7.ebuild')
-rw-r--r--media-libs/libxtract/libxtract-0.4.7.ebuild31
1 files changed, 0 insertions, 31 deletions
diff --git a/media-libs/libxtract/libxtract-0.4.7.ebuild b/media-libs/libxtract/libxtract-0.4.7.ebuild
deleted file mode 100644
index de8c215c9f4c..000000000000
--- a/media-libs/libxtract/libxtract-0.4.7.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libxtract/libxtract-0.4.7.ebuild,v 1.7 2013/04/04 08:28:52 aballier Exp $
-
-DESCRIPTION="A simple, portable, lightweight library of audio feature extraction functions"
-HOMEPAGE="http://github.com/jamiebullock/LibXtract"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ppc64 x86"
-IUSE="debug doc fftw"
-
-RDEPEND="fftw? ( =sci-libs/fftw-3* )"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )"
-
-src_compile() {
- local myconf=""
- use debug && myconf="${myconf} --enable-debug"
- econf $(use_enable fftw fft) ${myconf} || die "configure failed"
- # Prevent doc from being generated automagically
- use doc || touch doc/doxygen-build.stamp
- emake || die "make failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "install failed"
- dodoc README TODO AUTHORS
- use doc && dohtml doc/html/*
-}