diff options
author | Torben Hohn <torbenh@gentoo.org> | 2004-01-22 09:46:36 +0000 |
---|---|---|
committer | Torben Hohn <torbenh@gentoo.org> | 2004-01-22 09:46:36 +0000 |
commit | 11769f73a03ef0cbd51aeffa06d2cf9b5b5f5eb6 (patch) | |
tree | 4b001a466ed7cb31bc75cd11f719cea334b32b93 /media-sound/ams/ams-1.7.2.ebuild | |
parent | Version bump fixing alsa-1.0 bugs. (diff) | |
download | gentoo-2-11769f73a03ef0cbd51aeffa06d2cf9b5b5f5eb6.tar.gz gentoo-2-11769f73a03ef0cbd51aeffa06d2cf9b5b5f5eb6.tar.bz2 gentoo-2-11769f73a03ef0cbd51aeffa06d2cf9b5b5f5eb6.zip |
Version bump fixing alsa-1.0 bugs.
Diffstat (limited to 'media-sound/ams/ams-1.7.2.ebuild')
-rw-r--r-- | media-sound/ams/ams-1.7.2.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/media-sound/ams/ams-1.7.2.ebuild b/media-sound/ams/ams-1.7.2.ebuild new file mode 100644 index 000000000000..ba68316764cc --- /dev/null +++ b/media-sound/ams/ams-1.7.2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/ams/ams-1.7.2.ebuild,v 1.1 2004/01/22 09:46:21 torbenh Exp $ + +DESCRIPTION="Alsa Modular Software Synthesizer" +HOMEPAGE="http://alsamodular.sourceforge.net" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND=" >=media-libs/alsa-lib-0.9 + virtual/jack + >=x11-libs/qt-3.0.0 + media-libs/ladspa-sdk" + + +SRC_URI="http://alsamodular.sourceforge.net/${P}.tar.bz2" +S=${WORKDIR}/${P} + +src_unpack() { + unpack ${A} || die + cd ${S} + + sed -i "s%QT_BASE_DIR=/usr/lib/qt3%QT_BASE_DIR=/usr/qt/3%" Makefile +} + +src_compile() { + make || die "Make failed." +} + +src_install() { + + dobin ams + + dodoc README INSTALL THANKS LICENSE + + docinto examples + dodoc *.ams +} |