diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-12-14 12:53:52 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-12-14 12:53:52 +0000 |
commit | 33e4b50006a7eb3090ddd33b42d809ac856169d0 (patch) | |
tree | b10dab39eedb572d2a7bb18ca78ac41a817aafcb /media-sound/sndfile-tools | |
parent | Bumping to 0.7.0 (diff) | |
download | gentoo-2-33e4b50006a7eb3090ddd33b42d809ac856169d0.tar.gz gentoo-2-33e4b50006a7eb3090ddd33b42d809ac856169d0.tar.bz2 gentoo-2-33e4b50006a7eb3090ddd33b42d809ac856169d0.zip |
Initial import, ebuild by me
(Portage version: 2.2_rc59/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/sndfile-tools')
-rw-r--r-- | media-sound/sndfile-tools/ChangeLog | 10 | ||||
-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, 55 insertions, 0 deletions
diff --git a/media-sound/sndfile-tools/ChangeLog b/media-sound/sndfile-tools/ChangeLog new file mode 100644 index 000000000000..a8eec62962ae --- /dev/null +++ b/media-sound/sndfile-tools/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for media-sound/sndfile-tools +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/sndfile-tools/ChangeLog,v 1.1 2009/12/14 12:53:52 aballier Exp $ + +*sndfile-tools-1.03 (14 Dec 2009) + + 14 Dec 2009; Alexis Ballier <aballier@gentoo.org> + +sndfile-tools-1.03.ebuild, +metadata.xml: + Initial import, ebuild by me + 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..ec1d75bf2503 --- /dev/null +++ b/media-sound/sndfile-tools/sndfile-tools-1.03.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/sndfile-tools/sndfile-tools-1.03.ebuild,v 1.1 2009/12/14 12:53:52 aballier Exp $ + +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="dev-util/pkgconfig + ${RDEPEND}" + +src_configure() { + econf --disable-gcc-werror +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS NEWS README +} |