forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST suil-0.10.0.tar.bz2 159059 SHA256 9895c531f80c7e89a2b4b47de589d73b70bf48db0b0cfe56e5d54237ea4b8848 SHA512 721b73d987c1712e82493386e5d71957002c8a713595fce4372f1a5eb306c64a559db1ca794cec96295f72e22a9c0e9193f9a68b7f5846f2db45ce16b253fbea WHIRLPOOL 47662ddcd46aac1276fb8d8848c6ff3c5c5885345f2edcb299997e8547f251ad06cdaff85e4ed46163fea1b6a5ef59d4dee85ac3b72ab3b4ed23ea440eed6957 | ||
DIST suil-0.8.2.tar.bz2 141929 SHA256 787608c1e5b1f5051137dbf77c671266088583515af152b77b45e9c3a36f6ae8 SHA512 63141aa61a6501b735f38f597763b7190158db7b5bc06afd8989bddd70372d78de937820fa6751192aefaf415c417387426c1c1bdb666cf231f74a2c4c9f7e91 WHIRLPOOL e4aad86de286c29954aa53402cf7bd5c7d6c91c710b53738679ae361eadfa62c69481cdc94e6a4116a838d49f73bae11a7e849c116d95b5a0f57d9a57fdd5470 | ||
DIST suil-0.8.4.tar.bz2 156375 SHA256 6ef2247eaeaf3b5d7fc7a2728bcbca797d40586111c954bbc9d80805211d51ce SHA512 45e59f9c16143094e9a4f27a9fdf5dc293bbab03473f39d8d2266ec7d93826b2790a77220ea665ae405a3a299ef25158c19076482f4b79e843eb97455e37c688 WHIRLPOOL 9298c13a4aa5e9b0919792921a098ac313a32a7aaebdad617cb0cc6167ff36c2d7f85980636dd39521be602c80becdb60ecd2d99a15b961960ea85c43914dbba |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) | ||
PYTHON_REQ_USE='threads(+)' | ||
|
||
inherit flag-o-matic python-any-r1 waf-utils | ||
|
||
DESCRIPTION="Lightweight C library for loading and wrapping LV2 plugin UIs" | ||
HOMEPAGE="http://drobilla.net/software/suil/" | ||
SRC_URI="http://download.drobilla.net/${P}.tar.bz2" | ||
|
||
LICENSE="ISC" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="doc gtk qt5" | ||
|
||
RDEPEND=">=media-libs/lv2-1.12.0 | ||
gtk? ( x11-libs/gtk+:2 ) | ||
qt5? ( | ||
dev-qt/qtcore:5 | ||
dev-qt/qtgui:5 | ||
)" | ||
DEPEND="${RDEPEND} | ||
${PYTHON_DEPS} | ||
doc? ( app-doc/doxygen ) | ||
virtual/pkgconfig" | ||
|
||
DOCS=( AUTHORS NEWS README ) | ||
|
||
src_prepare() { | ||
default | ||
sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die | ||
} | ||
|
||
src_configure() { | ||
waf-utils_src_configure \ | ||
--mandir="${EPREFIX}/usr/share/man" \ | ||
--docdir="${EPREFIX}/usr/share/doc/${PF}" \ | ||
--no-qt4 \ | ||
$(usex gtk '' --no-gtk) \ | ||
$(usex qt5 '' --no-qt5) \ | ||
$(usex doc --docs '') | ||
} |