blob: aed934be8cfbfdda9d653081da0d3749e2e2b2da (
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
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/hydrogen/hydrogen-0.9.0.ebuild,v 1.10 2005/07/07 04:46:09 caleb Exp $
IUSE="alsa jack ladspa"
inherit eutils kde-functions
need-qt 3
DESCRIPTION="Linux Drum Machine"
HOMEPAGE="http://hydrogen.sourceforge.net/"
SRC_URI="mirror://sourceforge/hydrogen/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc sparc x86 ppc64"
DEPEND=">=media-libs/libsndfile-1.0.0
alsa? ( media-libs/alsa-lib )
>=media-libs/audiofile-0.2.3
>=media-libs/flac-1
jack? ( media-sound/jack-audio-connection-kit )
ladspa? ( media-libs/liblrdf )
=x11-libs/qt-3*"
src_compile() {
need-autoconf 2.5
econf $(use_enable jack jack-support) \
$(use_enable alsa alsa-seq) \
$(use_enable ladspa lrdf-support) \
|| die "Failed configuring hydrogen!"
emake || die "Failed making hydrogen!"
}
src_install() {
make DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog README TODO
}
|