diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-10-15 22:33:32 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2012-10-15 22:33:32 +0000 |
commit | 0fa2a651fa7f9376efccd280678491b3a83c9dd0 (patch) | |
tree | 995c15dd252045083543241b3a20d47d006ff953 /media-sound/jalv/jalv-1.2.0.ebuild | |
parent | version bump (diff) | |
download | gentoo-2-0fa2a651fa7f9376efccd280678491b3a83c9dd0.tar.gz gentoo-2-0fa2a651fa7f9376efccd280678491b3a83c9dd0.tar.bz2 gentoo-2-0fa2a651fa7f9376efccd280678491b3a83c9dd0.zip |
verion bump
(Portage version: 2.2.0_alpha138/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'media-sound/jalv/jalv-1.2.0.ebuild')
-rw-r--r-- | media-sound/jalv/jalv-1.2.0.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/media-sound/jalv/jalv-1.2.0.ebuild b/media-sound/jalv/jalv-1.2.0.ebuild new file mode 100644 index 000000000000..9c8b35d895ea --- /dev/null +++ b/media-sound/jalv/jalv-1.2.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/jalv/jalv-1.2.0.ebuild,v 1.1 2012/10/15 22:33:32 aballier Exp $ + +EAPI=4 + +inherit waf-utils + +DESCRIPTION="Simple but fully featured LV2 host for Jack" +HOMEPAGE="http://drobilla.net/software/jalv/" +SRC_URI="http://download.drobilla.net/${P}.tar.bz2" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64" +IUSE="gtk gtk2 gtkmm qt4" + +RDEPEND=">=media-libs/lv2-1.0.15 + >=media-libs/lilv-0.14.0 + >=dev-libs/serd-0.5.0 + >=media-libs/suil-0.6.0 + >=media-libs/sratom-0.2.0 + >=media-sound/jack-audio-connection-kit-0.120.0 + gtk? ( >=x11-libs/gtk+-3.0.0:3 ) + gtk2? ( >=x11-libs/gtk+-2.18.0:2 ) + gtkmm? ( >=dev-cpp/gtkmm-2.20.0:2.4 ) + qt4? ( x11-libs/qt-gui:4 )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +DOCS=( "AUTHORS" "NEWS" "README" ) + +src_configure() { + # otherwise automagic + use gtk || sed -i -e 's/gtk+-3.0/DiSaBlEd/' wscript + use gtk2 || sed -i -e 's/gtk+-2.0/DiSaBlEd/' wscript + use gtkmm || sed -i -e 's/gtkmm-2.4/DiSaBlEd/' wscript + use qt4 || sed -i -e 's/QtGui/DiSaBlEd/' wscript + waf-utils_src_configure \ + "--docdir=/usr/share/doc/${PF}" +} |