diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2020-03-01 15:53:27 +0100 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2020-03-01 15:53:27 +0100 |
commit | 2147725636c9a1709f91e1fe01699d0b61738194 (patch) | |
tree | e1fb5a73d2cc5deb6097a7382c7ba76a4e3d71d7 /media-sound | |
parent | sci-mathematics/gmp-ecm: fix USE=custom-tune. (diff) | |
download | gentoo-2147725636c9a1709f91e1fe01699d0b61738194.tar.gz gentoo-2147725636c9a1709f91e1fe01699d0b61738194.tar.bz2 gentoo-2147725636c9a1709f91e1fe01699d0b61738194.zip |
media-sound/guitarix: removed obsolete 0.38.1-r1
Package-Manager: Portage-2.3.90, Repoman-2.3.20
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/guitarix/Manifest | 1 | ||||
-rw-r--r-- | media-sound/guitarix/guitarix-0.38.1-r1.ebuild | 76 |
2 files changed, 0 insertions, 77 deletions
diff --git a/media-sound/guitarix/Manifest b/media-sound/guitarix/Manifest index 8f09d50afc40..734522f2aef6 100644 --- a/media-sound/guitarix/Manifest +++ b/media-sound/guitarix/Manifest @@ -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 index 86dcaacde860..000000000000 --- a/media-sound/guitarix/guitarix-0.38.1-r1.ebuild +++ /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[@]}" -} |