dev-libs/libfstrcmp: eautoreconf and add DOC use flag
authorCraig Andrews <candrews@gentoo.org>
Wed, 25 Jul 2018 20:11:27 +0000 (16:11 -0400)
committerCraig Andrews <candrews@gentoo.org>
Wed, 25 Jul 2018 20:12:05 +0000 (16:12 -0400)
Closes: https://bugs.gentoo.org/662128
Package-Manager: Portage-2.3.43, Repoman-2.3.10

dev-libs/libfstrcmp/libfstrcmp-0.7.ebuild

index c156bb325b5aa399465ce2f764d65d6210d267c9..f4d6bb2c005fdb1baf16b4f6dd0da2af81126330 100644 (file)
@@ -3,13 +3,35 @@
 
 EAPI=7
 
+inherit autotools
+
 DESCRIPTION="Make fuzzy comparisons of strings and byte arrays"
 HOMEPAGE="http://fstrcmp.sourceforge.net/"
 
 LICENSE="GPL-3+"
-IUSE="test"
+IUSE="doc test"
 SLOT="0"
 
 SRC_URI="http://fstrcmp.sourceforge.net/fstrcmp-0.7.D001.tar.gz -> ${P}.tar.gz"
 S="${WORKDIR}/fstrcmp-0.7.D001"
 KEYWORDS="~amd64 ~x86"
+
+DEPEND="
+       doc? ( app-text/ghostscript-gpl )
+"
+
+src_prepare() {
+       default
+       eautoreconf
+}
+
+src_compile() {
+       emake all-bin
+       use doc && emake all-doc
+}
+
+src_install() {
+       emake DESTDIR="${D}" install-bin install-include install-libdir install-man
+       use doc && emake DESTDIR="${D}" install-doc
+       einstalldocs
+}