diff options
author | 2004-02-21 21:13:57 +0000 | |
---|---|---|
committer | 2004-02-21 21:13:57 +0000 | |
commit | f97d5c22ab78ad677eb6f93b9e8a496bb0ab8fcb (patch) | |
tree | 35cf83b4b41789361aac8f754bdebb0e278554df /net-www/tux | |
parent | Initial import. This closes bug #33244 (Manifest recommit) (diff) | |
download | gentoo-2-f97d5c22ab78ad677eb6f93b9e8a496bb0ab8fcb.tar.gz gentoo-2-f97d5c22ab78ad677eb6f93b9e8a496bb0ab8fcb.tar.bz2 gentoo-2-f97d5c22ab78ad677eb6f93b9e8a496bb0ab8fcb.zip |
ver bump
Diffstat (limited to 'net-www/tux')
-rw-r--r-- | net-www/tux/ChangeLog | 7 | ||||
-rw-r--r-- | net-www/tux/files/digest-tux-3.2.16 | 1 | ||||
-rw-r--r-- | net-www/tux/tux-3.2.16.ebuild | 34 |
3 files changed, 41 insertions, 1 deletions
diff --git a/net-www/tux/ChangeLog b/net-www/tux/ChangeLog index 04ab1c7090e5..1b76cd317ad3 100644 --- a/net-www/tux/ChangeLog +++ b/net-www/tux/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-www/tux # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/tux/ChangeLog,v 1.2 2003/11/18 20:14:21 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/tux/ChangeLog,v 1.3 2004/02/21 21:13:57 vapier Exp $ + +*tux-3.2.16 (21 Feb 2004) + + 21 Feb 2004; Mike Frysinger <vapier@gentoo.org> : + Version bump. *tux-3.2.14 (18 Nov 2003) diff --git a/net-www/tux/files/digest-tux-3.2.16 b/net-www/tux/files/digest-tux-3.2.16 new file mode 100644 index 000000000000..e9b2d30fb1a0 --- /dev/null +++ b/net-www/tux/files/digest-tux-3.2.16 @@ -0,0 +1 @@ +MD5 5046ac02f5ce29fefee7bac9842a99e0 tux-3.2.16.tar.gz 62226 diff --git a/net-www/tux/tux-3.2.16.ebuild b/net-www/tux/tux-3.2.16.ebuild new file mode 100644 index 000000000000..376304da3cb7 --- /dev/null +++ b/net-www/tux/tux-3.2.16.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/tux/tux-3.2.16.ebuild,v 1.1 2004/02/21 21:13:57 vapier Exp $ + +DESCRIPTION="kernel level httpd" +HOMEPAGE="http://people.redhat.com/mingo/TUX-patches/" +SRC_URI="http://people.redhat.com/mingo/TUX-patches/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +DEPEND="dev-libs/glib + dev-libs/popt" + +src_unpack() { + unpack ${A} + sed -i "s:-g -fomit-frame-pointer -O2:${CFLAGS}:" ${S}/Makefile +} + +src_compile() { + emake || die +} + +src_install() { + make install TOPDIR=${D} || die + rm -rf ${D}/etc/{rc.d,sysconfig} ${D}/var/tux + exeinto /etc/init.d ; newexe ${FILESDIR}/tux.init.d tux + insinto /etc/conf.d ; newins ${FILESDIR}/tux.conf.d tux + + dodoc NEWS SUCCESS tux.README docs/*.txt + docinto samples + dodoc samples/* demo*.c +} |