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 | 796f585a7f5e6ce110fe4eaa0a1ce3b7810cbe95 (patch) | |
tree | b9aabb217f6b6764d5278833b6b8d7e6e6842d82 /media-sound/sndfile-tools/sndfile-tools-1.03.ebuild | |
parent | Bumping to 0.7.0 (diff) | |
download | historical-796f585a7f5e6ce110fe4eaa0a1ce3b7810cbe95.tar.gz historical-796f585a7f5e6ce110fe4eaa0a1ce3b7810cbe95.tar.bz2 historical-796f585a7f5e6ce110fe4eaa0a1ce3b7810cbe95.zip |
Initial import, ebuild by me
Package-Manager: portage-2.2_rc59/cvs/Linux x86_64
Diffstat (limited to 'media-sound/sndfile-tools/sndfile-tools-1.03.ebuild')
-rw-r--r-- | media-sound/sndfile-tools/sndfile-tools-1.03.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
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 +} |