blob: b8e55e853d599052e0d220af5467891255fe9093 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/tk707/tk707-0.8.ebuild,v 1.1 2005/02/04 03:49:43 jnc Exp $
inherit eutils
DESCRIPTION=" An \"7x7\" type midi drum sequencer for Linux"
HOMEPAGE="http://www-lmc.imag.fr/lmc-edp/Pierre.Saramito/tk707"
SRC_URI="http://www-lmc.imag.fr/lmc-edp/Pierre.Saramito/tk707/download/${P}.tar.gz
http://dev.gentoo.org/~jnc/files/${P}-updated_tcl2c.patch.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
#IUSE="timidity lame"
IUSE=""
DEPEND=">=media-libs/alsa-lib-0.9.0
>=dev-lang/tcl-8.4
>=dev-lang/tk-8.4"
# timidity? ( media-sound/timidity++ )
# lame? ( media-sound/lame )"
RDEPEND="${DEPEND}
>=sys-devel/automake-1.7
>=sys-devel/autoconf-2.5"
src_unpack() {
unpack ${A}
EPATCH_SOURCE=${S} epatch ${P}-*.patch
}
src_compile() {
export WANT_AUTOCONF=2.5
export WANT_AUTOMAKE=1.7
aclocal
automake
autoconf
econf || die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR=${D} install || die
einstall || die
}
|