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-sound/sndfile-tools | |
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-sound/sndfile-tools')
-rw-r--r-- | media-sound/sndfile-tools/Manifest | 1 | ||||
-rw-r--r-- | media-sound/sndfile-tools/metadata.xml | 15 | ||||
-rw-r--r-- | media-sound/sndfile-tools/sndfile-tools-1.03.ebuild | 30 |
3 files changed, 46 insertions, 0 deletions
diff --git a/media-sound/sndfile-tools/Manifest b/media-sound/sndfile-tools/Manifest new file mode 100644 index 000000000000..af855c109128 --- /dev/null +++ b/media-sound/sndfile-tools/Manifest @@ -0,0 +1 @@ +DIST sndfile-tools-1.03.tar.gz 474494 RMD160 70eee621519e203bddbdff63da545c6f6ed78167 SHA1 df7135f5291c1188f0a8c07c82c2d4ec0520a6e3 SHA256 f75df926a397d4dfa88748d51a3d3a9de1b5de85461bbeeb77edd8ef5b5fb14b diff --git a/media-sound/sndfile-tools/metadata.xml b/media-sound/sndfile-tools/metadata.xml new file mode 100644 index 000000000000..a2af0b606f0e --- /dev/null +++ b/media-sound/sndfile-tools/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>sound</herd> + <longdescription lang="en"> + Sndfile-tools is a small collection of programs that use libsndfile and + other libraries to do useful things. The collection currently includes + the following programs: + + * sndfile-generate-chirp + * sndfile-jackplay + * sndfile-spectrogram + * sndfile-mix-to-mono + </longdescription> +</pkgmetadata> diff --git a/media-sound/sndfile-tools/sndfile-tools-1.03.ebuild b/media-sound/sndfile-tools/sndfile-tools-1.03.ebuild new file mode 100644 index 000000000000..f136d7fec96a --- /dev/null +++ b/media-sound/sndfile-tools/sndfile-tools-1.03.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="2" + +DESCRIPTION="A small collection of programs that use libsndfile" +HOMEPAGE="http://www.mega-nerd.com/libsndfile/tools/" +SRC_URI="http://www.mega-nerd.com/libsndfile/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND=">=media-libs/libsndfile-1.0.19 + >=x11-libs/cairo-1.4.0 + sci-libs/fftw:3.0 + media-sound/jack-audio-connection-kit" +DEPEND="virtual/pkgconfig + ${RDEPEND}" + +src_configure() { + econf --disable-gcc-werror +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS NEWS README +} |