summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2013-03-14 17:52:53 +0800
committerPatrick Lauer <patrick@gentoo.org>2013-03-14 17:52:53 +0800
commit86b5a6d93a6d034a02f2078de2068797a30d9fbd (patch)
tree6c9ec67ea6ac7aa809e507cee0038c17a3f0b971 /dev-lang/faust/faust-0.9.9.4.ebuild
parent[dev-java/eva] Bump (diff)
downloadsunrise-86b5a6d93a6d034a02f2078de2068797a30d9fbd.tar.gz
sunrise-86b5a6d93a6d034a02f2078de2068797a30d9fbd.tar.bz2
sunrise-86b5a6d93a6d034a02f2078de2068797a30d9fbd.zip
[dev-lang/faust] Bump
Diffstat (limited to 'dev-lang/faust/faust-0.9.9.4.ebuild')
-rw-r--r--dev-lang/faust/faust-0.9.9.4.ebuild41
1 files changed, 0 insertions, 41 deletions
diff --git a/dev-lang/faust/faust-0.9.9.4.ebuild b/dev-lang/faust/faust-0.9.9.4.ebuild
deleted file mode 100644
index 6441fbe84..000000000
--- a/dev-lang/faust/faust-0.9.9.4.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="2"
-
-inherit eutils
-
-DESCRIPTION="Functional programming language for realtime audio plugins and applications development"
-HOMEPAGE="http://faust.grame.fr/"
-SRC_URI="mirror://sourceforge/faudiostream/${P}b.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE="doc examples"
-
-src_prepare() {
- epatch "${FILESDIR}/${P}_Makefile.patch"
-}
-
-src_install() {
- emake DESTDIR="${D}" PREFIX="/usr" install || die "emake install failed"
- dodoc README || die "Installing README failed"
-
- if use doc; then
- dodoc documentation/faust{-quick-reference,-soft-computing,_tutorial}.pdf \
- || die "Installing docs failed"
- fi
-
- if use examples; then
- docinto examples
- dodoc examples/* || die "Installing examples failed"
- fi
-}
-
-pkg_postinst() {
- elog "Please note that faust is only concerned with creating C++ source "
- elog "code. To actually compile this source code, you must have available "
- elog "libraries for one or more of ALSA, jack, OSS, ladspa or PD"
-}