diff options
author | Zac Medico <zmedico@gentoo.org> | 2011-08-03 20:34:00 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2011-08-03 20:34:00 +0000 |
commit | 04b897f52c74143123c4528572f2870e1e0b76e0 (patch) | |
tree | 7f78c578a9b15a6b01e75b9803838881efe3a464 /www-servers/thttpd | |
parent | Version bump. Adapted autotools patch to work for all versions (diff) | |
download | gentoo-2-04b897f52c74143123c4528572f2870e1e0b76e0.tar.gz gentoo-2-04b897f52c74143123c4528572f2870e1e0b76e0.tar.bz2 gentoo-2-04b897f52c74143123c4528572f2870e1e0b76e0.zip |
Fix for prefix.
(Portage version: 2.2.0_alpha50/cvs/Linux i686)
Diffstat (limited to 'www-servers/thttpd')
-rw-r--r-- | www-servers/thttpd/ChangeLog | 7 | ||||
-rw-r--r-- | www-servers/thttpd/thttpd-2.25b-r8.ebuild | 14 |
2 files changed, 12 insertions, 9 deletions
diff --git a/www-servers/thttpd/ChangeLog b/www-servers/thttpd/ChangeLog index c0ddb7c59437..3564b54cabb6 100644 --- a/www-servers/thttpd/ChangeLog +++ b/www-servers/thttpd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-servers/thttpd -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.31 2010/10/28 22:25:24 bangert Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.32 2011/08/03 20:34:00 zmedico Exp $ + + 03 Aug 2011; Zac Medico <zmedico@gentoo.org> thttpd-2.25b-r8.ebuild: + Fix for prefix. *thttpd-2.25b-r8 (28 Oct 2010) diff --git a/www-servers/thttpd/thttpd-2.25b-r8.ebuild b/www-servers/thttpd/thttpd-2.25b-r8.ebuild index 8ab53ac5e870..0e6be6a0a2ce 100644 --- a/www-servers/thttpd/thttpd-2.25b-r8.ebuild +++ b/www-servers/thttpd/thttpd-2.25b-r8.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.25b-r8.ebuild,v 1.1 2010/10/28 22:25:24 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.25b-r8.ebuild,v 1.2 2011/08/03 20:34:00 zmedico Exp $ EAPI="3" @@ -50,14 +50,14 @@ src_compile() { src_install () { dodir /usr/share/man/man1 - make prefix="${D}"/usr \ - MANDIR="${D}"/usr/share/man \ + make prefix="${ED}"/usr \ + MANDIR="${ED}"/usr/share/man \ WEBGROUP=${THTTPD_GROUP} \ - WEBDIR="${D}"/var/www/localhost \ + WEBDIR="${ED}"/var/www/localhost \ "$@" install || die "make install failed" - mv "${D}"/usr/sbin/{,th_}htpasswd - mv "${D}"/usr/share/man/man1/{,th_}htpasswd.1 + mv "${ED}"/usr/sbin/{,th_}htpasswd + mv "${ED}"/usr/share/man/man1/{,th_}htpasswd.1 newinitd "${FILESDIR}"/${MY_P}/thttpd.init thttpd newconfd "${FILESDIR}"/${MY_P}/thttpd.confd thttpd |