summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin V. Arkhipov <voxus@gentoo.org>2005-04-16 11:46:30 +0000
committerKonstantin V. Arkhipov <voxus@gentoo.org>2005-04-16 11:46:30 +0000
commit9e52364a4c402e00170d87d377be6798d311f23b (patch)
tree06bdf13ebef48d578294cc5a995b0988fb76f96c /www-servers
parentadd patch back (diff)
downloadhistorical-9e52364a4c402e00170d87d377be6798d311f23b.tar.gz
historical-9e52364a4c402e00170d87d377be6798d311f23b.tar.bz2
historical-9e52364a4c402e00170d87d377be6798d311f23b.zip
- outdated ebuild
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'www-servers')
-rw-r--r--www-servers/nginx/Manifest2
-rw-r--r--www-servers/nginx/files/digest-nginx-0.1.271
-rw-r--r--www-servers/nginx/nginx-0.1.27.ebuild79
3 files changed, 0 insertions, 82 deletions
diff --git a/www-servers/nginx/Manifest b/www-servers/nginx/Manifest
index 5130bbceca59..c48eb593e32e 100644
--- a/www-servers/nginx/Manifest
+++ b/www-servers/nginx/Manifest
@@ -1,8 +1,6 @@
-MD5 72c8eed50cc7b53e68949e6a77535419 nginx-0.1.27.ebuild 1842
MD5 dbde4e3c6b7bc268ee2e8808a2514d07 nginx-0.1.28.ebuild 1842
MD5 146a2265d7ff09efd8e3343b82377dfe ChangeLog 2247
MD5 822f3c821527e6a34f23a6a92a884766 metadata.xml 220
-MD5 9e78e661bd017cbf183846cae3ae3781 files/digest-nginx-0.1.27 64
MD5 964b96268e483e663e4ea13d03320185 files/digest-nginx-0.1.28 64
MD5 8c7b8c93f0c4048d83df9cdc31d86e1b files/nginx 922
MD5 b3342c18a1880b574cbe4458560019c6 files/nginx.conf 1445
diff --git a/www-servers/nginx/files/digest-nginx-0.1.27 b/www-servers/nginx/files/digest-nginx-0.1.27
deleted file mode 100644
index d89ce32e9c80..000000000000
--- a/www-servers/nginx/files/digest-nginx-0.1.27
+++ /dev/null
@@ -1 +0,0 @@
-MD5 666ebc078355ef1172552df7f82bada8 nginx-0.1.27.tar.gz 295404
diff --git a/www-servers/nginx/nginx-0.1.27.ebuild b/www-servers/nginx/nginx-0.1.27.ebuild
deleted file mode 100644
index 34f3ba994c7e..000000000000
--- a/www-servers/nginx/nginx-0.1.27.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/nginx/nginx-0.1.27.ebuild,v 1.2 2005/04/11 08:14:07 voxus Exp $
-
-inherit eutils
-
-DESCRIPTION="Robust, small and high performance http and reverse proxy server"
-
-HOMEPAGE="http://sysoev.ru/nginx/"
-SRC_URI="http://sysoev.ru/nginx/${P}.tar.gz"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="ssl zlib threads"
-
-DEPEND="dev-lang/perl
- ssl? ( dev-libs/openssl )
- zlib? ( sys-libs/zlib )"
-
-src_compile() {
- local myconf
-
- use ssl && myconf="${myconf} --with-http_ssl_module"
-
- if use threads; then
- einfo
- ewarn "threads support is experimental at the moment"
- ewarn "do not use it on production systems - you've been warned"
- einfo
- myconf="${myconf} --with-threads"
- fi
-
- use zlib || myconf="${myconf} --without-http_gzip_module"
-
- cd ${S}
- ./configure \
- --prefix=/usr \
- --conf-path=/etc/${PN}/${PN}.conf \
- --http-log-path=/var/log/${PN}/access_log \
- --error-log-path=/var/log/${PN}/error_log \
- --pid-path=/var/run/${PN}.pid \
- --http-client-body-temp-path=/var/tmp/${PN}/client \
- --http-proxy-temp-path=/var/tmp/${PN}/proxy \
- --http-fastcgi-temp-path=/var/tmp/${PN}/fastcgi \
- --with-md5-asm \
- ${myconf}
-
- emake || "failed to compile"
-}
-
-src_install() {
- cd ${S} || die
-
- dodir /var/log/${PN}
- keepdir /var/log/${PN}
-
- dodir /var/tmp/${PN}
-
- dodir /var/tmp/${PN}/client
- keepdir /var/tmp/${PN}/client
-
- dodir /var/tmp/${PN}/proxy
- keepdir /var/tmp/${PN}/proxy
-
- dodir /var/tmp/${PN}/fastcgi
- keepdir /var/tmp/${PN}/fastcgi
-
- dodir /etc/${PN}
-
- dosbin objs/nginx
- doinitd ${FILESDIR}/nginx
-
- insinto /etc/${PN}
- rm conf/nginx.conf
- doins -r conf/*
- doins ${FILESDIR}/nginx.conf
-
- dodoc CHANGES{,.ru} LICENSE README
-}