blob: 204f87b6b3ab07fe5dd064f6c7b762eefe65b10a (
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
51
52
53
54
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/trommler/trommler-3.8.ebuild,v 1.8 2012/05/05 08:54:36 mgorny Exp $
EAPI=2
inherit eutils toolchain-funcs
DESCRIPTION="GTK+ based drum machine."
HOMEPAGE="http://muth.org/Robert/Trommler"
SRC_URI="http://muth.org/Robert/${PN/t/T}/${P/-/.}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ppc ~sparc x86"
IUSE="+sox"
RDEPEND="x11-libs/gtk+:2
sox? ( media-sound/sox )"
DEPEND="${RDEPEND}
x11-misc/makedepend
virtual/pkgconfig"
S=${WORKDIR}/${PN/t/T}
src_prepare() {
sed -i \
-e 's:$(CC):$(CC) $(LDFLAGS):' \
Makefile || die
}
src_compile() {
tc-export CC
emake export.h || die
emake CFLAGS="${CFLAGS} -Wall $(pkg-config --cflags gtk+-2.0)" || die
}
src_install() {
exeinto /usr/libexec
doexe ${PN} || die
newbin "${FILESDIR}"/${PN}.wrapper ${PN} || die
dobin wav2smp playsample || die
use sox && { dobin smp2wav || die; }
insinto /usr/share/${PN}/Drums
doins Drums/*.smp || die
insinto /usr/share/${PN}/Songs
doins Songs/*.sng || die
dodoc CHANGES README
dohtml index.html style.css
make_desktop_entry ${PN} Trommler
}
|