summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Linden <karl.j.linden@gmail.com>2017-03-31 11:17:22 +0200
committerAlexis Ballier <aballier@gentoo.org>2017-04-01 14:26:46 +0200
commitcb43aa6dde012ba1c92d755067e0892e53cb61d9 (patch)
tree04009cd81fee92da36fe1b87ca126361dfdfb498 /media-sound/linuxsampler/linuxsampler-0.5.1.ebuild
parentdev-php/phpunit: add ~ppc64 (bug 574264). (diff)
downloadgentoo-cb43aa6dde012ba1c92d755067e0892e53cb61d9.tar.gz
gentoo-cb43aa6dde012ba1c92d755067e0892e53cb61d9.tar.bz2
gentoo-cb43aa6dde012ba1c92d755067e0892e53cb61d9.zip
media-sound/linuxsampler: remove old and depend on virtual/jack
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'media-sound/linuxsampler/linuxsampler-0.5.1.ebuild')
-rw-r--r--media-sound/linuxsampler/linuxsampler-0.5.1.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/media-sound/linuxsampler/linuxsampler-0.5.1.ebuild b/media-sound/linuxsampler/linuxsampler-0.5.1.ebuild
deleted file mode 100644
index 834a47f99df6..000000000000
--- a/media-sound/linuxsampler/linuxsampler-0.5.1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit autotools eutils
-
-DESCRIPTION="LinuxSampler is a software audio sampler engine with professional grade features"
-HOMEPAGE="http://www.linuxsampler.org/"
-SRC_URI="http://download.linuxsampler.org/packages/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc jack sqlite"
-
-RDEPEND="sqlite? ( >=dev-db/sqlite-3.3 )
- >=media-libs/libgig-3.2.1
- media-libs/alsa-lib
- jack? ( media-sound/jack-audio-connection-kit )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- doc? ( app-doc/doxygen )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- epatch "${FILESDIR}/${P}-pkgconfiginit.patch"
- epatch "${FILESDIR}/${P}-libtool22.patch"
- epatch "${FILESDIR}/${P}-gcc43.patch"
- AT_M4DIR="m4" eautoreconf
-}
-
-src_compile() {
- econf --enable-alsa-driver \
- $(use_enable jack jack-driver) \
- $(use_enable sqlite instruments-db)
- emake -j1 || die "emake failed."
-
- if use doc; then
- emake -j1 docs || die "emake docs failed."
- fi
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed."
- dodoc AUTHORS ChangeLog NEWS README
-
- if use doc; then
- dohtml -r doc/html/*
- fi
-}