media-sound/guitarix: removed obsolete 0.38.1-r1
authorMiroslav Šulc <fordfrog@gentoo.org>
Sun, 1 Mar 2020 14:53:27 +0000 (15:53 +0100)
committerMiroslav Šulc <fordfrog@gentoo.org>
Sun, 1 Mar 2020 14:53:27 +0000 (15:53 +0100)
Package-Manager: Portage-2.3.90, Repoman-2.3.20
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
media-sound/guitarix/Manifest
media-sound/guitarix/guitarix-0.38.1-r1.ebuild [deleted file]

index 8f09d50afc405c65b6944a6e58e1d710879f1a16..734522f2aef6326b75aab0804bc0cfad12ecf921 100644 (file)
@@ -1,2 +1 @@
-DIST guitarix2-0.38.1.tar.xz 80768608 BLAKE2B fd745955d8b44da72c669e69c36294d4a2131f2b5868e7e254a0b33768852ba9fcf9302f2a7ebd962c8a6dc02a543f70574466c51341a371c9fb988989123e50 SHA512 54d08b4ed20b9df4c69d0c86e4d668c53fffde8919f5570f376cee903926bd01945169d177d0d45976569ea55b28f8dca7884ac6dfe2f063df6583467559c5b7
 DIST guitarix2-0.39.0.tar.xz 80769472 BLAKE2B a699545b7e4a9992ed11a17ee9f82170c1891a95a0543c3b847ff2a02ab4e6597c28cbb4708f85022b1e94f0184b6dc712c271729bdda07373101ea9e8a1323f SHA512 5eb799498385ab9aa865e3f5a7e79d77f7f62c9bd7ad6875ec32bdec85829ed5b84bed3b0eab786ce74088fe2e1d53080f70afcb25ab1ef8d8f78a676b4947df
diff --git a/media-sound/guitarix/guitarix-0.38.1-r1.ebuild b/media-sound/guitarix/guitarix-0.38.1-r1.ebuild
deleted file mode 100644 (file)
index 86dcaac..0000000
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE='threads(+)'
-
-inherit python-any-r1 waf-utils xdg
-
-MY_P="${PN}2-${PV}"
-
-DESCRIPTION="Virtual guitar amplifier for Linux"
-HOMEPAGE="http://guitarix.org/"
-SRC_URI="mirror://sourceforge/guitarix/guitarix/${MY_P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64"
-IUSE="bluetooth debug lv2 nls +standalone zeroconf"
-REQUIRED_USE="|| ( lv2 standalone )"
-
-COMMON_DEPEND="dev-cpp/eigen:3
-       dev-cpp/glibmm:2
-       dev-cpp/gtkmm:2.4
-       dev-libs/glib:2
-       >=media-libs/libsndfile-1.0.17
-       >=media-libs/zita-convolver-3:=
-       media-libs/zita-resampler
-       >=net-misc/curl-7.26.0
-       >=sci-libs/fftw-3.1.2:3.0=
-       x11-libs/gtk+:2
-       lv2? ( media-libs/lv2 )
-       standalone? (
-               dev-libs/boost:=
-               media-libs/liblrdf
-               media-libs/lilv
-               virtual/jack
-               bluetooth? ( net-wireless/bluez )
-               zeroconf? ( net-dns/avahi )
-       )
-"
-# clearlooks gtk engine and roboto fonts are required for correct ui rendering
-RDEPEND="${COMMON_DEPEND}
-       x11-themes/gtk-engines
-       standalone? (
-               media-fonts/roboto
-       )
-"
-DEPEND="${COMMON_DEPEND}
-       ${PYTHON_DEPS}
-       virtual/pkgconfig
-       nls? ( dev-util/intltool )
-"
-
-DOCS=( changelog README )
-
-src_configure() {
-       local myconf=(
-               --cxxflags-debug=""
-               --cxxflags-release="-DNDEBUG"
-               --ldflags="${LDFLAGS}"
-               --enable-lfs
-               --lib-dev
-               --no-desktop-update
-               --no-faust
-               --no-ldconfig
-               --shared-lib
-               $(use_enable nls)
-               $(usex bluetooth "" "--no-bluez")
-               $(usex debug "--debug" "")
-               $(usex lv2 "--lv2dir=${EPREFIX}/usr/$(get_libdir)/lv2" "--no-lv2 --no-lv2-gui")
-               $(usex standalone "" "--no-standalone")
-               $(usex zeroconf "" "--no-avahi")
-       )
-       waf-utils_src_configure "${myconf[@]}"
-}