diff options
author | Eric Shattow <jnc@gentoo.org> | 2005-02-04 03:49:43 +0000 |
---|---|---|
committer | Eric Shattow <jnc@gentoo.org> | 2005-02-04 03:49:43 +0000 |
commit | 4e88d201348b00185b62dee85d1e8ad77be86845 (patch) | |
tree | 1eaee112d60915ac2ca7eb52a36348aebee1a7d8 /media-sound/tk707 | |
parent | 051 release (diff) | |
download | gentoo-2-4e88d201348b00185b62dee85d1e8ad77be86845.tar.gz gentoo-2-4e88d201348b00185b62dee85d1e8ad77be86845.tar.bz2 gentoo-2-4e88d201348b00185b62dee85d1e8ad77be86845.zip |
Initial import. Patched to use newer tcl2c.c, fixes build problems
(Portage version: 2.0.51-r15)
Diffstat (limited to 'media-sound/tk707')
-rw-r--r-- | media-sound/tk707/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/tk707/Manifest | 2 | ||||
-rw-r--r-- | media-sound/tk707/files/digest-tk707-0.8 | 2 | ||||
-rw-r--r-- | media-sound/tk707/tk707-0.8.ebuild | 50 |
4 files changed, 63 insertions, 0 deletions
diff --git a/media-sound/tk707/ChangeLog b/media-sound/tk707/ChangeLog new file mode 100644 index 000000000000..bb5f5f3ba53d --- /dev/null +++ b/media-sound/tk707/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for media-sound/tk707 +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/tk707/ChangeLog,v 1.1 2005/02/04 03:49:43 jnc Exp $ + +*tk707-0.8 (03 Feb 2005) + + 03 Feb 2005; Eric Shattow <jnc@gentoo.org> +tk707-0.8.ebuild: + Initial import. Patched to use newer tcl2c.c, fixes build problems. + diff --git a/media-sound/tk707/Manifest b/media-sound/tk707/Manifest new file mode 100644 index 000000000000..a3099f485c81 --- /dev/null +++ b/media-sound/tk707/Manifest @@ -0,0 +1,2 @@ +MD5 484dac43e500394ad3f68abab366f32f tk707-0.8.ebuild 1014 +MD5 42dacaa900c60ec26b05238847efeb97 files/digest-tk707-0.8 136 diff --git a/media-sound/tk707/files/digest-tk707-0.8 b/media-sound/tk707/files/digest-tk707-0.8 new file mode 100644 index 000000000000..f89f61a582a7 --- /dev/null +++ b/media-sound/tk707/files/digest-tk707-0.8 @@ -0,0 +1,2 @@ +MD5 7471494195c053f048862c292320d06c tk707-0.8.tar.gz 404862 +MD5 3ff5c65864ee38b7343d8c350efcab4c tk707-0.8-updated_tcl2c.patch.gz 7368 diff --git a/media-sound/tk707/tk707-0.8.ebuild b/media-sound/tk707/tk707-0.8.ebuild new file mode 100644 index 000000000000..b8e55e853d59 --- /dev/null +++ b/media-sound/tk707/tk707-0.8.ebuild @@ -0,0 +1,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 +} |