blob: 238d62b88c228ca43299314fa48da9817279614b (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libzzub/libzzub-0.2.3.ebuild,v 1.2 2007/04/02 22:28:06 hanno Exp $
DESCRIPTION="Media library for Aldrin."
HOMEPAGE="http://trac.zeitherrschaft.org/zzub/"
SRC_URI="mirror://sourceforge/aldrin/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RDEPEND="media-sound/jack-audio-connection-kit
media-libs/flac
media-libs/libsndfile
media-libs/alsa-lib"
DEPEND="${RDEPEND}
>=dev-util/scons-0.96.94"
src_compile() {
scons PREFIX=/usr configure || die
scons PREFIX=/usr || die
}
src_install() {
scons DESTDIR="${D}" install || die "emake install failed"
}
|