diff options
author | Stefan Strogin <steils@gentoo.org> | 2019-05-07 06:30:03 +0300 |
---|---|---|
committer | Stefan Strogin <steils@gentoo.org> | 2019-05-17 03:45:15 +0300 |
commit | ac647435c176f1be5ca242aca6ea7acce417a506 (patch) | |
tree | 8ee2932b8d6b50ac9a4c8500f668055006de67fd /dev-libs/bglibs | |
parent | media-video/v4l2loopback: Version bump (diff) | |
download | gentoo-ac647435c176f1be5ca242aca6ea7acce417a506.tar.gz gentoo-ac647435c176f1be5ca242aca6ea7acce417a506.tar.bz2 gentoo-ac647435c176f1be5ca242aca6ea7acce417a506.zip |
dev-libs/bglibs: add libtool to BDEPEND; minor fixes
Drop redundant ${S} in src_prepare; fix LICENSE.
Bug: https://bugs.gentoo.org/380649
Closes: https://github.com/gentoo/gentoo/pull/11924
Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Stefan Strogin <steils@gentoo.org>
Diffstat (limited to 'dev-libs/bglibs')
-rw-r--r-- | dev-libs/bglibs/bglibs-2.04.ebuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/dev-libs/bglibs/bglibs-2.04.ebuild b/dev-libs/bglibs/bglibs-2.04.ebuild index 7af2222a4d7f..b8d116835c3d 100644 --- a/dev-libs/bglibs/bglibs-2.04.ebuild +++ b/dev-libs/bglibs/bglibs-2.04.ebuild @@ -9,14 +9,15 @@ DESCRIPTION="Bruce Guenter's Libraries Collection" HOMEPAGE="https://untroubled.org/bglibs/" SRC_URI="https://untroubled.org/bglibs/archive/${P}.tar.gz" -LICENSE="LGPL-2.1" +LICENSE="LGPL-2.1+" SLOT="0/2" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86" IUSE="doc" RDEPEND="" DEPEND="" -BDEPEND="doc? ( +BDEPEND="sys-devel/libtool + doc? ( app-doc/doxygen dev-tex/xcolor dev-texlive/texlive-latex @@ -28,8 +29,8 @@ BDEPEND="doc? ( src_prepare() { default # disable tests as we want them manually - sed -i '/^all:/s|selftests||' "${S}"/Makefile || die - sed -i '/selftests/d' "${S}"/TARGETS || die + sed -i '/^all:/s|selftests||' Makefile || die + sed -i '/selftests/d' TARGETS || die } src_configure() { |