blob: 72812623ad79d10bfd27672acac717cc16f25a83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2012 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.2 2012/05/05 08:49:30 mgorny 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="virtual/pkgconfig
${RDEPEND}"
src_configure() {
econf --disable-gcc-werror
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS NEWS README
}
|