blob: ffdec49dfcbefb12d738ecdc41eb9d90cbfadc33 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/smurf/smurf-0.52.6.ebuild,v 1.6 2004/07/19 22:34:01 eradicator Exp $
DESCRIPTION="The Smurf Sound Font Editor"
HOMEPAGE="http://smurf.sourceforge.net/"
SRC_URI="mirror://sourceforge/smurf/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~amd64 ~sparc"
IUSE="nls debug alsa oss png"
DEPEND="=x11-libs/gtk+-1.2*
>=media-libs/audiofile-0.2.3-r1
nls? ( >=sys-devel/gettext-0.11.5-r1 )
alsa? ( media-libs/alsa-lib )
png? ( >=media-libs/libpng-1.2.5-r4 )"
#RDEPEND=""
src_compile() {
local myconf="--with-audiofile"
use nls || myconf="${myconf} --disable-nls"
use debug || myconf="${myconf} --disable-debug"
# --disable-debug seems not to work, but never mind
use alsa || myconf="${myconf} --disable-alsa-support"
use oss || myconf="${myconf} --disable-oss-support"
use png || myconf="${myconf} --disable-splash"
econf ${myconf} || die
emake || die
}
src_install() {
einstall || die
dodoc ABOUT-NLS AUTHORS COPYING ChangeLog HACKING INSTALL NEWS README
}
|