diff options
author | 2008-02-01 20:56:30 +0000 | |
---|---|---|
committer | 2008-02-01 20:56:30 +0000 | |
commit | d1ea32fa721029071d0150b8664ad751bd128bce (patch) | |
tree | f00052e98aeb7854b288de4d22ad3093a615e837 /media-sound/trommler/trommler-3.8.ebuild | |
parent | old (diff) | |
download | historical-d1ea32fa721029071d0150b8664ad751bd128bce.tar.gz historical-d1ea32fa721029071d0150b8664ad751bd128bce.tar.bz2 historical-d1ea32fa721029071d0150b8664ad751bd128bce.zip |
Version bump.
Package-Manager: portage-2.1.4.1
Diffstat (limited to 'media-sound/trommler/trommler-3.8.ebuild')
-rw-r--r-- | media-sound/trommler/trommler-3.8.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/media-sound/trommler/trommler-3.8.ebuild b/media-sound/trommler/trommler-3.8.ebuild new file mode 100644 index 000000000000..55ad5d5e2914 --- /dev/null +++ b/media-sound/trommler/trommler-3.8.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/trommler/trommler-3.8.ebuild,v 1.1 2008/02/01 20:56:30 drac Exp $ + +EAPI=1 + +inherit toolchain-funcs + +DESCRIPTION="GTK+ based drum machine." +HOMEPAGE="http://muth.org/Robert/Trommler" +SRC_URI="http://muth.org/Robert/${PN/t/T}/${P/-/.}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" +IUSE="+sox" + +RDEPEND=">=x11-libs/gtk+-2 + sox? ( media-sound/sox )" +DEPEND="${RDEPEND} + x11-misc/makedepend + dev-util/pkgconfig" + +S=${WORKDIR}/${PN/t/T} + +src_compile() { + emake export.h || die "emake export.h failed." + emake CFLAGS="${CFLAGS} $(pkg-config --cflags gtk+-2.0)" \ + CC="$(tc-getCC)" || die "emake failed." +} + +src_install() { + exeinto /usr/libexec + doexe ${PN} + newbin "${FILESDIR}"/${PN}.wrapper ${PN} + dobin wav2smp playsample + use sox && dobin smp2wav + insinto /usr/share/${PN}/Drums + doins Drums/*.smp + insinto /usr/share/${PN}/Songs + doins Songs/*.sng + dodoc CHANGES README + dohtml index.html style.css + make_desktop_entry ${PN} Trommler +} |