blob: 5a088bab8c22602e90c11240101990f3c59bbad7 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/soundtracker/soundtracker-0.6.7.ebuild,v 1.10 2004/12/19 06:46:38 eradicator Exp $
IUSE="nls esd gnome oss alsa jack"
inherit eutils flag-o-matic
S=${WORKDIR}/${P/_/-}
DESCRIPTION="SoundTracker is a music tracking tool for UNIX/X11 (MOD tracker)"
SRC_URI="http://www.soundtracker.org/dl/v0.6/${P/_/-}.tar.gz"
HOMEPAGE="http://www.soundtracker.org"
DEPEND="sys-libs/zlib
=x11-libs/gtk+-1.2*
>=media-libs/audiofile-0.2.1
dev-util/pkgconfig
media-libs/libsndfile
alsa? ( media-libs/alsa-lib )
esd? ( media-sound/esound )
gnome? ( >=gnome-base/gnome-libs-1.4.1.7 )
nls? ( sys-devel/gettext )
jack? ( media-sound/jack-audio-connection-kit )"
RDEPEND="${DEPEND}
app-arch/bzip2
app-arch/gzip
app-arch/unzip"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 ~ppc sparc x86"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-alsa1.patch
}
src_compile() {
replace-flags "-O3" "-O2"
local myconf
use oss || myconf="--disable-oss"
use esd || myconf="${myconf} --disable-esd"
use nls || myconf="${myconf} --disable-nls"
use alsa || myconf="${myconf} --disable-alsa"
use gnome || myconf="${myconf} --disable-gnome"
use x86 || myconf="${myconf} --disable-asm"
econf ${myconf} || die "configure failed"
emake || die "make failed"
}
src_install () {
einstall || die "make install failed"
#borks make DESTDIR=${D} install || die "make install failed"
# strip suid from binary
chmod -s ${D}/usr/bin/soundtracker
# documentation
dodoc AUTHORS COPYING ChangeLog FAQ INSTALL NEWS README TODO
dodoc doc/*.txt
dohtml -r doc
}
|