summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2012-11-24 16:14:53 +0000
committerAlexis Ballier <aballier@gentoo.org>2012-11-24 16:14:53 +0000
commitadea02e0b730a69254194942a2ee31747257e5c7 (patch)
treec8512277587a90260aa20e6849c72c53281d4f11 /media-libs/stk
parentdo not ignore cxxflags, bug #428384 (diff)
downloadgentoo-2-adea02e0b730a69254194942a2ee31747257e5c7.tar.gz
gentoo-2-adea02e0b730a69254194942a2ee31747257e5c7.tar.bz2
gentoo-2-adea02e0b730a69254194942a2ee31747257e5c7.zip
remove old
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'media-libs/stk')
-rw-r--r--media-libs/stk/ChangeLog5
-rw-r--r--media-libs/stk/stk-4.4.4.ebuild63
2 files changed, 4 insertions, 64 deletions
diff --git a/media-libs/stk/ChangeLog b/media-libs/stk/ChangeLog
index 44fa5836c889..21eec5012ee6 100644
--- a/media-libs/stk/ChangeLog
+++ b/media-libs/stk/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/stk
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/stk/ChangeLog,v 1.14 2012/11/24 16:13:41 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/stk/ChangeLog,v 1.15 2012/11/24 16:14:53 aballier Exp $
+
+ 24 Nov 2012; Alexis Ballier <aballier@gentoo.org> -stk-4.4.4.ebuild:
+ remove old
*stk-4.4.4-r1 (24 Nov 2012)
diff --git a/media-libs/stk/stk-4.4.4.ebuild b/media-libs/stk/stk-4.4.4.ebuild
deleted file mode 100644
index eb7f5e7f55f8..000000000000
--- a/media-libs/stk/stk-4.4.4.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/stk/stk-4.4.4.ebuild,v 1.1 2012/09/21 12:24:03 aballier Exp $
-
-EAPI="2"
-inherit eutils autotools
-
-DESCRIPTION="Synthesis ToolKit in C++"
-HOMEPAGE="http://ccrma.stanford.edu/software/stk/"
-SRC_URI="http://ccrma.stanford.edu/software/stk/release/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="alsa debug doc jack oss"
-
-RDEPEND="alsa? ( media-libs/alsa-lib )
- jack? ( media-sound/jack-audio-connection-kit )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- dev-lang/perl"
-
-src_prepare() {
- EPATCH_SUFFIX="patch" epatch "${FILESDIR}/${P}"
- eautoreconf
-}
-
-src_configure() {
- #breaks with --disable-foo...uses as --enable-foo
- local myconf
- if use debug; then
- myconf="${myconf} --enable-debug"
- fi
- if use oss; then
- myconf="${myconf} --with-oss"
- fi
- if use alsa; then
- myconf="${myconf} --with-alsa"
- fi
- if use jack; then
- myconf="${myconf} --with-jack"
- fi
-
- econf ${myconf} \
- RAWWAVE_PATH=/usr/share/stk/rawwaves/
-}
-
-src_install() {
- dodoc README || die "Failed to install README"
- # install the lib
- dolib src/libstk.* || die "Failed to install libstk.*"
- # install headers
- insinto /usr/include/stk || die "Failed to create header directory."
- doins include/*.h include/*.msg include/*.tbl \
- || die "Failed to install msg, tbl and h files."
- # install rawwaves
- insinto /usr/share/stk/rawwaves || die "Failed to create rawwave directory."
- doins rawwaves/*.raw || die "Failed to install rawwave files."
- # install docs
- if use doc; then
- dohtml -r doc/html/* || die "Failed to install docs."
- fi
-}