blob: decd7fe1fa4075b70648202c2f5cb921e70c97c0 (
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
40
41
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/trommler/trommler-3.7.ebuild,v 1.9 2008/01/07 16:09:43 drac Exp $
inherit eutils toolchain-funcs
MY_PN=${PN/t/T}
DESCRIPTION="GTK+ based drum machine."
HOMEPAGE="http://muth.org/Robert/Trommler"
SRC_URI="http://muth.org/Robert/${MY_PN}/${P/-/.}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ppc ~sparc x86"
IUSE="doc sox"
RDEPEND=">=x11-libs/gtk+-2
sox? ( media-sound/sox )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
S=${WORKDIR}/${MY_PN}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/trommler-be.patch
}
src_compile() {
emake export.h || die "emake export.h failed."
emake CFLAGS="${CFLAGS} $(pkg-config --cflags gtk+-2.0)" \
CC="$(tc-getCC)" || die "emake failed."
}
src_install() {
exeinto /usr/libexec
doexe ${PN}
newbin "${FILESDIR}"/${PN}.wrapper ${PN}
dobin wav2smp playsample
use sox && dobin smp2wav
insinto /usr/share/${PN}/Drums
doins Drums/*.smp
insinto /usr/share/${PN}/Songs
doins Songs/*.sng
dodoc CHANGES README
use doc && dohtml index.html style.css
make_desktop_entry ${PN} Trommler
}
|