diff options
author | Konstantin V. Arkhipov <voxus@gentoo.org> | 2005-05-27 07:33:58 +0000 |
---|---|---|
committer | Konstantin V. Arkhipov <voxus@gentoo.org> | 2005-05-27 07:33:58 +0000 |
commit | 2e56710002eb46c55dfcff6a142d4c5baf9a6aa8 (patch) | |
tree | a096bd788aa0ee125aa7d7809b134735e1b78b68 /www-servers/nginx | |
parent | Marked ppc stable. (diff) | |
download | historical-2e56710002eb46c55dfcff6a142d4c5baf9a6aa8.tar.gz historical-2e56710002eb46c55dfcff6a142d4c5baf9a6aa8.tar.bz2 historical-2e56710002eb46c55dfcff6a142d4c5baf9a6aa8.zip |
bump
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'www-servers/nginx')
-rw-r--r-- | www-servers/nginx/ChangeLog | 9 | ||||
-rw-r--r-- | www-servers/nginx/Manifest | 4 | ||||
-rw-r--r-- | www-servers/nginx/files/digest-nginx-0.1.34 | 1 | ||||
-rw-r--r-- | www-servers/nginx/nginx-0.1.34.ebuild | 81 |
4 files changed, 92 insertions, 3 deletions
diff --git a/www-servers/nginx/ChangeLog b/www-servers/nginx/ChangeLog index 3642653de871..4a1ef1d5f3a8 100644 --- a/www-servers/nginx/ChangeLog +++ b/www-servers/nginx/ChangeLog @@ -1,8 +1,13 @@ # ChangeLog for www-servers/nginx # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/nginx/ChangeLog,v 1.26 2005/05/26 16:00:17 voxus Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/nginx/ChangeLog,v 1.27 2005/05/27 07:33:58 voxus Exp $ -*nginx-0.1.33 (26 May 2005) +*nginx-0.1.34 (27 May 2005) + + 27 May 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.34.ebuild: + Version bump, should go stable within next week. + +*nginx-0.1.33-r1 (26 May 2005) 26 May 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.33-r1.ebuild, +files/nginx-0.1.33-large_ssi_includes.patch, diff --git a/www-servers/nginx/Manifest b/www-servers/nginx/Manifest index 2b00a1440943..8ef2395afbb1 100644 --- a/www-servers/nginx/Manifest +++ b/www-servers/nginx/Manifest @@ -1,7 +1,9 @@ MD5 14414925f8c45ff6c60b73e24052b87f nginx-0.1.33-r1.ebuild 2147 MD5 0b612ee125685634d4e80df6e302d442 nginx-0.1.28-r2.ebuild 2082 -MD5 5560283883d60c07526337cafecff99b ChangeLog 4778 +MD5 3211f0c2f030686ccd81a0ce26e985ed nginx-0.1.34.ebuild 2075 +MD5 9c4548378ef1a20683dfb3e1c3c5929d ChangeLog 4938 MD5 822f3c821527e6a34f23a6a92a884766 metadata.xml 220 +MD5 b4e5149fed4a89f9561a32a8245dd1a7 files/digest-nginx-0.1.34 64 MD5 8c7b8c93f0c4048d83df9cdc31d86e1b files/nginx 922 MD5 97d5db2450a9a9c85ff02614b9352b9b files/nginx-0.1.33-large_ssi_includes.patch 949 MD5 964b96268e483e663e4ea13d03320185 files/digest-nginx-0.1.28-r2 64 diff --git a/www-servers/nginx/files/digest-nginx-0.1.34 b/www-servers/nginx/files/digest-nginx-0.1.34 new file mode 100644 index 000000000000..829c5a390955 --- /dev/null +++ b/www-servers/nginx/files/digest-nginx-0.1.34 @@ -0,0 +1 @@ +MD5 f885d1a236c89c04f901ddd81ed073f3 nginx-0.1.34.tar.gz 295118 diff --git a/www-servers/nginx/nginx-0.1.34.ebuild b/www-servers/nginx/nginx-0.1.34.ebuild new file mode 100644 index 000000000000..89e9f5d1ac8f --- /dev/null +++ b/www-servers/nginx/nginx-0.1.34.ebuild @@ -0,0 +1,81 @@ +# 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.34.ebuild,v 1.1 2005/05/27 07:33:58 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="debug fastcgi pcre threads ssl zlib" + +DEPEND="dev-lang/perl + pcre? ( >=dev-libs/libpcre-4.2 ) + ssl? ( dev-libs/openssl ) + zlib? ( sys-libs/zlib )" + +src_compile() { + local myconf + + 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 fastcgi || myconf="${myconf} --without-http_fastcgi_module" + use zlib || myconf="${myconf} --without-http_gzip_module" + use pcre || myconf="${myconf} --without-pcre" + use debug && myconf="${myconf} --with-debug" + use ssl && myconf="${myconf} --with-http_ssl_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} || die "configure failed" + + 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 +} |