diff options
author | Michele Noberasco <s4t4n@gentoo.org> | 2007-04-19 09:33:11 +0000 |
---|---|---|
committer | Michele Noberasco <s4t4n@gentoo.org> | 2007-04-19 09:33:11 +0000 |
commit | 418923681fb5e63d6924a29bbfd67a291c47e452 (patch) | |
tree | a17184f4ecab61976235363bc3507b04f94da210 /www-servers/bozohttpd/bozohttpd-20040823.ebuild | |
parent | version bump. Improved initscript thanks to inspiration by Natanael Copa in b... (diff) | |
download | gentoo-2-418923681fb5e63d6924a29bbfd67a291c47e452.tar.gz gentoo-2-418923681fb5e63d6924a29bbfd67a291c47e452.tar.bz2 gentoo-2-418923681fb5e63d6924a29bbfd67a291c47e452.zip |
Version bump + modifications not to depend on hardcoded /bin/install; see bug #171035
(Portage version: 2.1.2.2)
Diffstat (limited to 'www-servers/bozohttpd/bozohttpd-20040823.ebuild')
-rw-r--r-- | www-servers/bozohttpd/bozohttpd-20040823.ebuild | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/www-servers/bozohttpd/bozohttpd-20040823.ebuild b/www-servers/bozohttpd/bozohttpd-20040823.ebuild index 36e0fdbf3246..3f241bd1e831 100644 --- a/www-servers/bozohttpd/bozohttpd-20040823.ebuild +++ b/www-servers/bozohttpd/bozohttpd-20040823.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/bozohttpd/bozohttpd-20040823.ebuild,v 1.2 2005/09/16 07:06:28 s4t4n Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/bozohttpd/bozohttpd-20040823.ebuild,v 1.3 2007/04/19 09:33:11 s4t4n Exp $ inherit eutils @@ -16,11 +16,10 @@ DEPEND=">=dev-libs/openssl-0.9.7d-r1" src_unpack() { unpack ${A} - - # We substitute the Makefile because the original works only with BSD make cd ${S} - rm -f Makefile - cp ${FILESDIR}/${PN}.Makefile Makefile + + # Rename Makefile + mv Makefile.boot Makefile # Apparently, support for '-a' cmd line arg was removed, but left in # 'bozohpptd -h' explanations @@ -29,9 +28,8 @@ src_unpack() src_install () { - dodir usr/bin - dodir usr/share/man - PREFIX="${D}/usr" einstall || die + dobin bozohttpd + doman bozohttpd.8 insinto /etc/conf.d; newins ${FILESDIR}/${PN}.conffile bozohttpd exeinto /etc/init.d; newexe ${FILESDIR}/${PN}.initscript bozohttpd |