blob: a229129e94575e271cd2c47c316a5858e3f34e49 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/soundtracker/soundtracker-0.6.8.ebuild,v 1.7 2008/05/15 21:02:22 drac Exp $
inherit eutils
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"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~ppc sparc x86"
IUSE="esd jack nls oss sdl"
RDEPEND="=x11-libs/gtk+-1.2*
>=media-libs/audiofile-0.2.1
media-libs/libsndfile
esd? ( media-sound/esound )
jack? ( media-sound/jack-audio-connection-kit )
sdl? ( >=media-libs/libsdl-1.2 )
nls? ( virtual/libintl )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
dev-util/pkgconfig"
S=${WORKDIR}/${P/_/-}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-0.6.7-execstack.patch
}
src_compile() {
local myconf
use oss || myconf="--disable-oss"
use esd || myconf="${myconf} --disable-esd"
use nls || myconf="${myconf} --disable-nls"
myconf="${myconf} --disable-gnome"
use x86 && myconf="${myconf} --enable-asm"
use jack || myconf="${myconf} --disable-jack"
use sdl || myconf="${myconf} --disable-sdl"
# no support for recent alsa wrt 196636
econf --disable-alsa ${myconf} || die "econf failed."
emake || die "emake failed."
}
src_install () {
einstall || die "einstall failed."
fperms -s /usr/bin/${PN}
dodoc AUTHORS ChangeLog* FAQ NEWS README TODO doc/*.txt
dohtml -r doc
doicon ${PN}_splash.png
make_desktop_entry ${PN} SoundTracker ${PN}_splash
}
|