diff options
author | Alexander Vershilov <qnikst@gentoo.org> | 2012-11-01 06:55:40 +0000 |
---|---|---|
committer | Alexander Vershilov <qnikst@gentoo.org> | 2012-11-01 06:55:40 +0000 |
commit | 44ccc86130a1f75b1a6be3ba4fc74756d3af660e (patch) | |
tree | 36433ad43d5a60ee3ca006d7de9694099ec14c1f /app-admin/apache-tools | |
parent | Purging useless wsgiref #439672 (diff) | |
download | gentoo-2-44ccc86130a1f75b1a6be3ba4fc74756d3af660e.tar.gz gentoo-2-44ccc86130a1f75b1a6be3ba4fc74756d3af660e.tar.bz2 gentoo-2-44ccc86130a1f75b1a6be3ba4fc74756d3af660e.zip |
fix symlinks (#410733), thanks to Michael Weiser
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'app-admin/apache-tools')
-rw-r--r-- | app-admin/apache-tools/ChangeLog | 8 | ||||
-rw-r--r-- | app-admin/apache-tools/apache-tools-2.4.3-r1.ebuild (renamed from app-admin/apache-tools/apache-tools-2.4.3.ebuild) | 10 |
2 files changed, 10 insertions, 8 deletions
diff --git a/app-admin/apache-tools/ChangeLog b/app-admin/apache-tools/ChangeLog index f17d2c60bfb7..6be844bfebb2 100644 --- a/app-admin/apache-tools/ChangeLog +++ b/app-admin/apache-tools/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-admin/apache-tools # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/apache-tools/ChangeLog,v 1.126 2012/10/20 16:32:41 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/apache-tools/ChangeLog,v 1.127 2012/11/01 06:55:40 qnikst Exp $ + +*apache-tools-2.4.3-r1 (31 Oct 2012) + + 31 Oct 2012; Alexander Vershilov <qnikst@gentoo.org> + +apache-tools-2.4.3-r1.ebuild, -apache-tools-2.4.3.ebuild: + fix symlinks (#410733), thanks to Michael Weiser 20 Oct 2012; Raúl Porcel <armin76@gentoo.org> apache-tools-2.2.23.ebuild: alpha/ia64/s390/sh/sparc stable wrt #432284 diff --git a/app-admin/apache-tools/apache-tools-2.4.3.ebuild b/app-admin/apache-tools/apache-tools-2.4.3-r1.ebuild index f554d5f73581..afd0bf3f9ae8 100644 --- a/app-admin/apache-tools/apache-tools-2.4.3.ebuild +++ b/app-admin/apache-tools/apache-tools-2.4.3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 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.3.ebuild,v 1.1 2012/10/12 06:05:18 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/apache-tools/apache-tools-2.4.3-r1.ebuild,v 1.1 2012/11/01 06:55:40 qnikst Exp $ EAPI="3" inherit flag-o-matic eutils @@ -68,13 +68,9 @@ src_install () { # 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 + dosym /usr/bin/ab /usr/bin/ab-ssl + dosym /usr/bin/ab /usr/bin/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 } |