www-misc/htdig: [QA] Multiple fixes
authorDavid Seifert <soap@gentoo.org>
Sun, 20 Oct 2019 12:18:53 +0000 (14:18 +0200)
committerDavid Seifert <soap@gentoo.org>
Sun, 20 Oct 2019 12:21:02 +0000 (14:21 +0200)
* HTML_DOCS too nested
* .la files not removed
* Missing sub-slot operators
* Metadata var order

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert <soap@gentoo.org>
www-misc/htdig/htdig-3.2.0_beta6-r5.ebuild

index 2a56281d4462d939ffaea323e042f01c96ae22fd..97a63976bca2df428399f9d8921acccac92e5c2b 100644 (file)
@@ -5,8 +5,7 @@ EAPI=7
 
 inherit autotools
 
-MY_PV=${PV/_beta/b}
-S=${WORKDIR}/${PN}-${MY_PV}
+MY_PV="${PV/_beta/b}"
 
 DESCRIPTION="HTTP/HTML indexing and searching system"
 HOMEPAGE="http://www.htdig.org"
@@ -18,12 +17,15 @@ KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-lin
 IUSE="libressl ssl"
 
 DEPEND="
-       >=sys-libs/zlib-1.1.3
+       sys-libs/zlib
        app-arch/unzip
        ssl? (
-               !libressl? ( dev-libs/openssl:0 )
-               libressl? ( dev-libs/libressl )
+               !libressl? ( dev-libs/openssl:0= )
+               libressl? ( dev-libs/libressl:0= )
        )"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${PN}-${MY_PV}"
 
 PATCHES=(
        "${FILESDIR}"/${P}-gcc4.patch
@@ -33,8 +35,7 @@ PATCHES=(
        "${FILESDIR}"/${P}-musl.patch
        "${FILESDIR}"/${P}-drop-bogus-assignment.patch #638720
 )
-
-HTML_DOCS=( htdoc )
+HTML_DOCS=( htdoc/. )
 
 src_prepare() {
        default
@@ -62,6 +63,10 @@ src_install () {
                "${ED}"/etc/${PN}/${PN}.conf \
                "${ED}"/usr/bin/rundig \
                || die "sed failed (removing \${D} from installed files)"
+
        # symlink htsearch so it can be easily found. see bug #62087
        dosym ../../var/www/localhost/cgi-bin/htsearch /usr/bin/htsearch
+
+       # no static archives
+       find "${D}" -name '*.la' -delete || die
 }