summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2003-11-18 20:14:21 +0000
committerMike Frysinger <vapier@gentoo.org>2003-11-18 20:14:21 +0000
commit1974cc19035f6bfaf797b350b20189993252ac04 (patch)
tree6ff7c1faece22a094233e71e770ef33cf9fd99e5 /net-www/tux
parentnew package, see bug #33762 (diff)
downloadgentoo-2-1974cc19035f6bfaf797b350b20189993252ac04.tar.gz
gentoo-2-1974cc19035f6bfaf797b350b20189993252ac04.tar.bz2
gentoo-2-1974cc19035f6bfaf797b350b20189993252ac04.zip
ver bump
Diffstat (limited to 'net-www/tux')
-rw-r--r--net-www/tux/ChangeLog7
-rw-r--r--net-www/tux/files/digest-tux-3.2.141
-rw-r--r--net-www/tux/files/tux.conf.d4
-rw-r--r--net-www/tux/tux-3.2.14.ebuild34
4 files changed, 43 insertions, 3 deletions
diff --git a/net-www/tux/ChangeLog b/net-www/tux/ChangeLog
index 26c91d1c0082..04ab1c7090e5 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.1 2003/06/16 19:54:02 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-www/tux/ChangeLog,v 1.2 2003/11/18 20:14:21 vapier Exp $
+
+*tux-3.2.14 (18 Nov 2003)
+
+ 18 Nov 2003; Mike Frysinger <vapier@gentoo.org> :
+ Version bump.
*tux-2.2.7 (17 Jun 2003)
diff --git a/net-www/tux/files/digest-tux-3.2.14 b/net-www/tux/files/digest-tux-3.2.14
new file mode 100644
index 000000000000..907f4e58441c
--- /dev/null
+++ b/net-www/tux/files/digest-tux-3.2.14
@@ -0,0 +1 @@
+MD5 fca99389074ab83740fd5844fef376d6 tux-3.2.14.tar.gz 62154
diff --git a/net-www/tux/files/tux.conf.d b/net-www/tux/files/tux.conf.d
index fa64923ecaa9..ddeabef2f030 100644
--- a/net-www/tux/files/tux.conf.d
+++ b/net-www/tux/files/tux.conf.d
@@ -1,6 +1,6 @@
# Config file for /etc/init.d/tux
# modified from original to be Gentoo like
-# $Header: /var/cvsroot/gentoo-x86/net-www/tux/files/tux.conf.d,v 1.1 2003/06/16 19:54:02 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-www/tux/files/tux.conf.d,v 1.2 2003/11/18 20:14:21 vapier Exp $
# TUX_THREADS sets the number of kernel threads (and associated daemon
# threads) that will be used. $TUX_THREADS defaults to 1.
@@ -8,7 +8,7 @@
# DOCROOT is the document root; it works the same way as other web
# servers such as apache. This must have only 1 trailing /.
-TUX_DOCROOT=/home/httpd/htdocs/
+TUX_DOCROOT=/var/www/localhost/htdocs/
# LOGFILE is the file where tux logs information for each
# request. Note that tux writes log files in a binary format and to
diff --git a/net-www/tux/tux-3.2.14.ebuild b/net-www/tux/tux-3.2.14.ebuild
new file mode 100644
index 000000000000..40d536920cf9
--- /dev/null
+++ b/net-www/tux/tux-3.2.14.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.14.ebuild,v 1.1 2003/11/18 20:14:21 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
+}