diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /media-libs/libxtract | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'media-libs/libxtract')
-rw-r--r-- | media-libs/libxtract/Manifest | 1 | ||||
-rw-r--r-- | media-libs/libxtract/libxtract-0.6.6.ebuild | 33 | ||||
-rw-r--r-- | media-libs/libxtract/metadata.xml | 8 |
3 files changed, 42 insertions, 0 deletions
diff --git a/media-libs/libxtract/Manifest b/media-libs/libxtract/Manifest new file mode 100644 index 000000000000..16d8ca2fcb55 --- /dev/null +++ b/media-libs/libxtract/Manifest @@ -0,0 +1 @@ +DIST libxtract-0.6.6.tar.gz 479376 SHA256 458ecb2dd7f883cf160b740ed01829c5d3311db8dad680bdcdbdbb0cf850e393 SHA512 67dc1ac227ffaf3b78b21d14598e6510016a985558b7242ae28d1be7aa4502e841f186eefa71958c4d989ec4ac395dd5659e611c4284969090a9948a5f99a0d5 WHIRLPOOL 105f23b97779ed209185c85773f4fbd153538f5279a5dfba7a23511ba5041fa43ae3b260761338e486c3c44e79f2fae17fd9a31d397e8fcc2fe88db9af25f203 diff --git a/media-libs/libxtract/libxtract-0.6.6.ebuild b/media-libs/libxtract/libxtract-0.6.6.ebuild new file mode 100644 index 000000000000..429ffb0703ec --- /dev/null +++ b/media-libs/libxtract/libxtract-0.6.6.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +DESCRIPTION="A simple, portable, lightweight library of audio feature extraction functions" +HOMEPAGE="http://github.com/jamiebullock/LibXtract" +SRC_URI="http://github.com/downloads/jamiebullock/LibXtract/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~ppc ppc64 x86" +IUSE="doc fftw static-libs" + +RDEPEND="fftw? ( sci-libs/fftw:3.0 )" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen )" + +src_configure() { + econf \ + $(use_enable fftw fft) \ + $(use_enable static-libs static) + # Prevent doc from being generated automagically + use doc || touch doc/doxygen-build.stamp +} + +src_install() { + emake DESTDIR="${D}" install + find "${ED}" -name "*.la" -delete + dodoc README.md TODO AUTHORS + use doc && dohtml doc/html/* +} diff --git a/media-libs/libxtract/metadata.xml b/media-libs/libxtract/metadata.xml new file mode 100644 index 000000000000..53685ee65c8f --- /dev/null +++ b/media-libs/libxtract/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>proaudio</herd> + <upstream> + <remote-id type="github">downloads/jamiebullock</remote-id> + </upstream> +</pkgmetadata> |