diff options
author | 2017-04-06 12:10:16 +0200 | |
---|---|---|
committer | 2017-04-21 11:18:58 +0200 | |
commit | b54104d3b6b0598b819d6d3ef859e6a86b087799 (patch) | |
tree | 2e3e87ffcba9eeea1e2a1630aa7761d5de2f2649 /media-libs/dssi/dssi-1.1.1-r1.ebuild | |
parent | media-libs/imlib2: Bump to version 1.4.10 (diff) | |
download | gentoo-b54104d3b6b0598b819d6d3ef859e6a86b087799.tar.gz gentoo-b54104d3b6b0598b819d6d3ef859e6a86b087799.tar.bz2 gentoo-b54104d3b6b0598b819d6d3ef859e6a86b087799.zip |
media-libs/dssi: depend on virtual/jack
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4376
Diffstat (limited to 'media-libs/dssi/dssi-1.1.1-r1.ebuild')
-rw-r--r-- | media-libs/dssi/dssi-1.1.1-r1.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/media-libs/dssi/dssi-1.1.1-r1.ebuild b/media-libs/dssi/dssi-1.1.1-r1.ebuild new file mode 100644 index 000000000000..78011f84f74a --- /dev/null +++ b/media-libs/dssi/dssi-1.1.1-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=2 +inherit autotools + +DESCRIPTION="Plugin API for software instruments with user interfaces" +HOMEPAGE="http://dssi.sourceforge.net/" +SRC_URI="mirror://sourceforge/dssi/${P}.tar.gz" + +LICENSE="BSD LGPL-2.1" +SLOT="0" +KEYWORDS="amd64 ppc ppc64 x86" +IUSE="qt4" + +RDEPEND="media-libs/alsa-lib + >=media-libs/liblo-0.12 + virtual/jack + >=media-libs/ladspa-sdk-1.12-r2 + >=media-libs/libsndfile-1.0.11 + >=media-libs/libsamplerate-0.1.1-r1 + qt4? ( dev-qt/qtgui:4 )" +DEPEND="${RDEPEND} + sys-apps/sed + virtual/pkgconfig" + +src_prepare() { + sed -i \ + -e 's:libdir=.*:libdir=@libdir@:' \ + dssi.pc.in || die + + if ! use qt4; then + sed -i -e '/PKG_CHECK_MODULES(QT/s:QtGui:dIsAbLe&:' configure.ac || die + fi + + eautoreconf +} + +src_configure() { + econf \ + --disable-dependency-tracking +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc README doc/TODO doc/*.txt + find "${D}" -name '*.la' -delete +} |