polynomial-c 14/04/16 14:11:03 Modified: ChangeLog Added: apache-tools-2.2.27.ebuild Removed: apache-tools-2.4.7-r1.ebuild Log: Version bump. Removed old (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
Revision Changes Path 1.179 app-admin/apache-tools/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/apache-tools/ChangeLog?rev=1.179&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/apache-tools/ChangeLog?rev=1.179&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/apache-tools/ChangeLog?r1=1.178&r2=1.179 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-admin/apache-tools/ChangeLog,v retrieving revision 1.178 retrieving revision 1.179 diff -u -r1.178 -r1.179 --- ChangeLog 18 Mar 2014 18:48:45 -0000 1.178 +++ ChangeLog 16 Apr 2014 14:11:03 -0000 1.179 @@ -1,6 +1,12 @@ # ChangeLog for app-admin/apache-tools # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/apache-tools/ChangeLog,v 1.178 2014/03/18 18:48:45 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/apache-tools/ChangeLog,v 1.179 2014/04/16 14:11:03 polynomial-c Exp $ + +*apache-tools-2.2.27 (16 Apr 2014) + + 16 Apr 2014; Lars Wendler <[email protected]> + +apache-tools-2.2.27.ebuild, -apache-tools-2.4.7-r1.ebuild: + Version bump. Removed old. *apache-tools-2.4.9 (18 Mar 2014) 1.1 app-admin/apache-tools/apache-tools-2.2.27.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/apache-tools/apache-tools-2.2.27.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/apache-tools/apache-tools-2.2.27.ebuild?rev=1.1&content-type=text/plain Index: apache-tools-2.2.27.ebuild =================================================================== # Copyright 1999-2014 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.2.27.ebuild,v 1.1 2014/04/16 14:11:03 polynomial-c Exp $ EAPI="4" 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 ~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/libpcre ssl? ( dev-libs/openssl ) !<www-servers/apache-2.2.4" DEPEND="${RDEPEND} sys-devel/libtool" S="${WORKDIR}/httpd-${PV}" src_prepare() { # Apply these patches: # (1) apache-tools-2.2.20-Makefile.patch: # - fix up the `make install' for support/ # - remove envvars from `make install' epatch "${FILESDIR}"/${PN}-2.2.20-Makefile.patch } src_configure() { local myconf="" # Brain dead check. tc-is-cross-compiler && export ap_cv_void_ptr_lt_long="no" # Instead of filtering --as-needed (bug #128505), append --no-as-needed append-ldflags $(no-as-needed) use ssl && myconf+=" --with-ssl=/usr --enable-ssl" # econf overwrites the stuff from config.layout, so we have to put them into # our myconf line too econf \ --sbindir=/usr/sbin \ --with-z=/usr \ --with-apr=/usr \ --with-apr-util=/usr \ --with-pcre=/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}.1 \ "${S}"/docs/man/{htcacheclean,rotatelogs,ab,logresolve}.8 # Providing compatiblity symlinks for #177697 (which we'll stop to install # at some point). pushd "${D}"/usr/sbin/ >/dev/null for i in *; do dosym /usr/sbin/${i} /usr/sbin/${i}2 done popd "${D}"/usr/sbin/ >/dev/null # 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 }
