media-sound/ecasound: Drop old
authorPacho Ramos <pacho@gentoo.org>
Sun, 15 Jan 2017 10:45:46 +0000 (11:45 +0100)
committerPacho Ramos <pacho@gentoo.org>
Sun, 15 Jan 2017 11:19:05 +0000 (12:19 +0100)
Package-Manager: Portage-2.3.3, Repoman-2.3.1

media-sound/ecasound/Manifest
media-sound/ecasound/ecasound-2.9.0.ebuild [deleted file]

index 9e943ecbf84bef577fbe6576585d3078198c406d..e8460ee5d7c22814f42ed8c6c3d6bc377bb3fb69 100644 (file)
@@ -1,3 +1,2 @@
 DIST ecasound-2.6.0.tar.gz 966629 SHA256 925d12a422883c356565c542110d070f61c3693e01eaa1b00eb25082e4779f88 SHA512 48b3c65e301a775499765c55b09bddacfde24bfd7a5be6c03389c7bda882abe98b061aaa39ec12a797e3a5a2808f446751155b36c263f0f12da2db1495515c5e WHIRLPOOL 3e39c977e2561d1be207c5788e29633094ba8542254f1f770d892c58cb64b7a35ff4300fbfb3b83842ccc1649b6a3941927bd3cc7c96ecc5282b167cdab79619
-DIST ecasound-2.9.0.tar.gz 1055913 SHA256 e2b0b8f8cce6074d660e460b3a02fc0132a51e1e982b78b3a68fa14e79fcc6c6 SHA512 d8ba4274413616b37084f716ca9c91434280cc600e5e2c231a755cbe27b05df0095b8178d280c2e576d91d04ff27aad4793ecec70c1bbb8b2ae73a030c8cbb13 WHIRLPOOL 7f9ce963a8e971b8d6a169cd07d82349f4050853b2f7b9f3a35c3c99754be1da14555ff9c61213c0f44b869a9f514a68860336e83d055e15b34268b2dc92d868
 DIST ecasound-2.9.1.tar.gz 1057333 SHA256 39fce8becd84d80620fa3de31fb5223b2b7d4648d36c9c337d3739c2fad0dcf3 SHA512 b91fd68cb4809fdf62b25323fbf52c9bb7de6663287d5aa2576cc4fb28e322850b7020df2718ed6087f5d9f5f96692a476287378ea65853d01834523e8eb7033 WHIRLPOOL ef4eccd6a2ac1b508246ce7660614e52bc9033814011cff588382f1a76ac9fc124aecd6dbd3fb4ffeb337a8eb7ef1e87c438e2c994faddd70d9a2fc49561a80d
diff --git a/media-sound/ecasound/ecasound-2.9.0.ebuild b/media-sound/ecasound/ecasound-2.9.0.ebuild
deleted file mode 100644 (file)
index 6135d63..0000000
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-PYTHON_DEPEND="python? 2"
-
-inherit eutils python autotools
-
-DESCRIPTION="a package for multitrack audio processing"
-HOMEPAGE="http://ecasound.seul.org/ecasound"
-SRC_URI="http://ecasound.seul.org/download/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="1"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="alsa audiofile debug doc jack libsamplerate lv2 mikmod ncurses oil osc oss
-python ruby sndfile static-libs test"
-REQUIRED_USE="test? ( lv2 )"
-
-RDEPEND="sys-libs/readline
-       alsa? ( media-libs/alsa-lib )
-       audiofile? ( media-libs/audiofile )
-       jack? ( media-sound/jack-audio-connection-kit )
-       libsamplerate? ( media-libs/libsamplerate )
-       lv2? ( >=media-libs/lilv-0.5.0 )
-       media-libs/ladspa-sdk
-       mikmod? ( media-libs/libmikmod:0 )
-       ncurses? ( sys-libs/ncurses )
-       oil? ( dev-libs/liboil )
-       osc? ( media-libs/liblo )
-       ruby? ( dev-lang/ruby )
-       sndfile? ( media-libs/libsndfile )"
-DEPEND="${RDEPEND}
-       virtual/pkgconfig"
-
-pkg_setup() {
-       if use python ; then
-               python_set_active_version 2
-               python_pkg_setup
-       fi
-}
-
-src_prepare() {
-       epatch "${FILESDIR}"/${PN}-2.8.1-ldflags.patch
-
-       if use python ; then
-               sed -i -e "s:\$(ecasoundc_libs):\0 $(python_get_library -l):" \
-                       pyecasound/Makefile.am || die "sed failed"
-       fi
-
-       eautoreconf
-}
-
-src_configure() {
-       local pyconf
-
-       if use python ; then
-               pyconf="--with-python-includes=${EPREFIX}$(python_get_includedir)
-                       --with-python-modules=${EPREFIX}$(python_get_libdir)"
-       fi
-
-       econf \
-               --disable-arts \
-               --enable-shared \
-               --enable-sys-readline \
-               --with-largefile \
-               $(use_enable alsa) \
-               $(use_enable audiofile) \
-               $(use_enable debug) \
-               $(use_enable jack) \
-               $(use_enable libsamplerate) \
-               $(use_enable lv2 liblilv) \
-               $(use_enable ncurses) \
-               $(use_enable oil liboil) \
-               $(use_enable osc liblo) \
-               $(use_enable oss) \
-               $(use_enable python pyecasound) \
-               $(use_enable ruby rubyecasound) \
-               $(use_enable sndfile) \
-               $(use_enable static-libs static) \
-               ${pyconf}
-}
-
-src_install() {
-       default
-
-       if use doc ; then
-               dohtml Documentation/*.html
-               dodoc Documentation/programmers_guide/ecasound_programmers_guide.txt
-       fi
-
-       prune_libtool_files
-}
-
-pkg_postinst() {
-       use python && python_mod_optimize ecacontrol.py eci.py pyeca.py
-}
-
-pkg_postrm() {
-       use python && python_mod_cleanup ecacontrol.py eci.py pyeca.py
-}