forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dssi-1.1.1.ebuild
49 lines (40 loc) · 1.02 KB
/
dssi-1.1.1.ebuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
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
>=media-sound/jack-audio-connection-kit-0.99.14
>=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
}