# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id: 8d62d545934f2f45607dbb6734fcc9829a067f7d $ EAPI=6 inherit flag-o-matic eutils DESCRIPTION="Useful Apache tools - htdigest, htpasswd, ab, htdbm" HOMEPAGE="https://httpd.apache.org/" SRC_URI="mirror://apache/httpd/httpd-${PV}.tar.bz2" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" IUSE="ssl" RESTRICT="test" RDEPEND="=dev-libs/apr-1* =dev-libs/apr-util-1* dev-libs/expat dev-libs/libpcre kernel_linux? ( sys-apps/util-linux ) ssl? ( dev-libs/openssl:0= ) !/dev/null || die for i in *; do dosym /usr/sbin/${i} /usr/sbin/${i}2 done popd >/dev/null || die # Provide a symlink for ab-ssl if use ssl; then dosym /usr/sbin/ab /usr/sbin/ab-ssl dosym /usr/sbin/ab /usr/sbin/ab2-ssl fi # make htpasswd accessible for non-root users dosym /usr/sbin/htpasswd /usr/bin/htpasswd dosym /usr/sbin/htdigest /usr/bin/htdigest dodoc "${S}"/CHANGES }