summaryrefslogtreecommitdiff
blob: 3930dd72c76255fe609ce981bc1f18cf4b3fe806 (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
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: Daniel Robbins <drobbins@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/media-sound/timidity++/timidity++-2.11.1-r1.ebuild,v 1.1 2002/01/15 01:27:50 gbevin Exp $

PN=TiMidity++-${PV}
S=${WORKDIR}/${PN}
DESCRIPTION="A handy MIDI to WAV converter with OSS and ALSA output support"
SRC_URI="http://www.goice.co.jp/member/mo/timidity/dist/${PN}.tar.bz2"
HOMEPAGE="http://www.goice.co.jp/member/mo/timidity/"

DEPEND=">=sys-libs/ncurses-5.0
	X? ( >=x11-base/xfree-4.0 )
	motif? ( >=x11-libs/openmotif-2.1 )
	tcltk? ( >=dev-lang/tk-8.1 )
	nas? ( >=media-libs/nas-1.4 )
	alsa? ( >=media-libs/alsa-lib-0.5.10 )
	esd? ( >=media-sound/esound-0.2.22 )
	gtk? ( >=x11-libs/gtk+-1.2.10-r4 )
	slang? ( >=sys-libs/slang-1.4 )
	vorbis? ( >=media-libs/libvorbis-1.0_beta4 )"

src_compile() {
	local myconf
	local audios
	local interfaces
	
	interfaces="dynamic,ncurses,emacs,vt100"
	audios="oss"
	
	if [ "`use X`" ]
	then
		myconf="${myconf} --with-x"
		interfaces="${interfaces},xskin,xaw"
	else
		myconf="${myconf} --without-x"
	fi
	[ "`use slang`" ] && interfaces="${interfaces},slang"
	[ "`use gtk`" ] && interfaces="${interfaces},gtk"
	[ "`use motif`" ] && interfaces="${interfaces},motif"
	if [ "`use alsa`" ]
	then
		audios="${audios},alsa"
		interfaces="${interfaces},alsaseq"
		myconf="${myconf} --with-default-output=alsa"
	fi
	[ "`use esd`" ] && audios="${audios},esd"
	[ "`use vorbis`" ] && audios="${audios},vorbis"
	[ "`use nas`" ] && audios="${audios},nas"
		
	./configure --prefix=/usr --host=${CHOST} --mandir=/usr/share/man\
	--with-elf \
	--enable-audio=${audios} \
	--enable-interface=${interfaces} \
	--enable-server --enable-network \
	--enable-spectrogram --enable-wrd \
	${myconf} || die
	emake || die
}

src_install () {
	make DESTDIR=${D} install || die
	dodoc AUTHORS COPYING ChangeLog* INSTALL*
	dodoc NEWS README*
}