diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-02-27 06:54:34 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-02-27 06:54:34 +0000 |
commit | 14288bd7e95be52e0eb9baf289fbd668f9e353eb (patch) | |
tree | e5b059c3a6f6697fa39aa9a1f7f8d07462a0017e /app-admin/apache-tools | |
parent | sci-libs/blas-reference: Add new version which only sets pc file with eselect (diff) | |
download | gentoo-2-14288bd7e95be52e0eb9baf289fbd668f9e353eb.tar.gz gentoo-2-14288bd7e95be52e0eb9baf289fbd668f9e353eb.tar.bz2 gentoo-2-14288bd7e95be52e0eb9baf289fbd668f9e353eb.zip |
Bump
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'app-admin/apache-tools')
-rw-r--r-- | app-admin/apache-tools/ChangeLog | 7 | ||||
-rw-r--r-- | app-admin/apache-tools/apache-tools-2.4.4.ebuild | 78 |
2 files changed, 84 insertions, 1 deletions
diff --git a/app-admin/apache-tools/ChangeLog b/app-admin/apache-tools/ChangeLog index 80c70f2ca958..956bfe92aebd 100644 --- a/app-admin/apache-tools/ChangeLog +++ b/app-admin/apache-tools/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-admin/apache-tools # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/apache-tools/ChangeLog,v 1.130 2013/02/16 12:17:50 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/apache-tools/ChangeLog,v 1.131 2013/02/27 06:54:34 patrick Exp $ + +*apache-tools-2.4.4 (27 Feb 2013) + + 27 Feb 2013; Patrick Lauer <patrick@gentoo.org> +apache-tools-2.4.4.ebuild: + Bump 16 Feb 2013; Pacho Ramos <pacho@gentoo.org> metadata.xml: Cleanup due bug #96436 diff --git a/app-admin/apache-tools/apache-tools-2.4.4.ebuild b/app-admin/apache-tools/apache-tools-2.4.4.ebuild new file mode 100644 index 000000000000..aed03524eb6b --- /dev/null +++ b/app-admin/apache-tools/apache-tools-2.4.4.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/apache-tools/apache-tools-2.4.4.ebuild,v 1.1 2013/02/27 06:54:34 patrick Exp $ + +EAPI="3" +inherit flag-o-matic eutils + +DESCRIPTION="Useful Apache tools - htdigest, htpasswd, ab, htdbm" +HOMEPAGE="http://httpd.apache.org/" +SRC_URI="mirror://apache/httpd/httpd-${PV}.tar.bz2" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris" +IUSE="ssl" +RESTRICT="test" + +RDEPEND="=dev-libs/apr-1* + =dev-libs/apr-util-1* + dev-libs/libpcre + ssl? ( dev-libs/openssl )" + +DEPEND="${RDEPEND} + sys-devel/libtool" + +S="${WORKDIR}/httpd-${PV}" + +src_configure() { + local myconf="" + + # Instead of filtering --as-needed (bug #128505), append --no-as-needed + append-ldflags $(no-as-needed) + + use ssl && myconf+=" --with-ssl=${EPREFIX}/usr --enable-ssl" + + # econf overwrites the stuff from config.layout, so we have to put them into + # our myconf line too + econf \ + --sbindir="${EPREFIX}"/usr/sbin \ + --with-perl="${EPREFIX}"/usr/bin/perl \ + --with-expat="${EPREFIX}"/usr \ + --with-z="${EPREFIX}"/usr \ + --with-apr="${EPREFIX}"/usr \ + --with-apr-util="${EPREFIX}"/usr \ + --with-pcre="${EPREFIX}"/usr \ + ${myconf} +} + +src_compile() { + cd support || die + emake +} + +src_install () { + cd support || die + + make DESTDIR="${D}" install + + # install manpages + doman "${S}"/docs/man/{dbmmanage,htdigest,htpasswd,htdbm,ab,logresolve}.1 \ + "${S}"/docs/man/{htcacheclean,rotatelogs}.8 + + # Providing compatiblity symlinks for #177697 (which we'll stop to install + # at some point). + pushd "${ED}"/usr/sbin/ >/dev/null + for i in *; do + dosym /usr/sbin/${i} /usr/sbin/${i}2 + done + popd "${ED}"/usr/sbin/ >/dev/null + + # Provide a symlink for ab-ssl + if use ssl; then + dosym /usr/bin/ab /usr/bin/ab-ssl + dosym /usr/bin/ab /usr/bin/ab2-ssl + fi + + dodoc "${S}"/CHANGES +} |