Gentoo Archives: gentoo-commits

From: "Konstantin Arkhipov (voxus)" <voxus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-servers/nginx: ChangeLog nginx-0.7.8.ebuild nginx-0.7.7.ebuild
Date: Tue, 05 Aug 2008 16:08:46
Message-Id: E1KQP5X-00067Z-DW@stork.gentoo.org
1 voxus 08/08/05 16:08:43
2
3 Modified: ChangeLog
4 Added: nginx-0.7.8.ebuild
5 Removed: nginx-0.7.7.ebuild
6 Log:
7 * bump
8 (Portage version: 2.2_rc6/cvs/Linux 2.6.25.12-mactel x86_64)
9
10 Revision Changes Path
11 1.186 www-servers/nginx/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/nginx/ChangeLog?rev=1.186&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/nginx/ChangeLog?rev=1.186&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/nginx/ChangeLog?r1=1.185&r2=1.186
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-servers/nginx/ChangeLog,v
20 retrieving revision 1.185
21 retrieving revision 1.186
22 diff -u -r1.185 -r1.186
23 --- ChangeLog 3 Aug 2008 16:35:49 -0000 1.185
24 +++ ChangeLog 5 Aug 2008 16:08:42 -0000 1.186
25 @@ -1,6 +1,12 @@
26 # ChangeLog for www-servers/nginx
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-servers/nginx/ChangeLog,v 1.185 2008/08/03 16:35:49 voxus Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/www-servers/nginx/ChangeLog,v 1.186 2008/08/05 16:08:42 voxus Exp $
30 +
31 +*nginx-0.7.8 (05 Aug 2008)
32 +
33 + 05 Aug 2008; Konstantin V. Arkhipov <voxus@g.o>
34 + -nginx-0.7.7.ebuild, +nginx-0.7.8.ebuild:
35 + Version bump.
36
37 *nginx-0.7.7 (03 Aug 2008)
38
39
40
41
42 1.1 www-servers/nginx/nginx-0.7.8.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/nginx/nginx-0.7.8.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/nginx/nginx-0.7.8.ebuild?rev=1.1&content-type=text/plain
46
47 Index: nginx-0.7.8.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/www-servers/nginx/nginx-0.7.8.ebuild,v 1.1 2008/08/05 16:08:42 voxus Exp $
52
53 inherit eutils ssl-cert
54
55 DESCRIPTION="Robust, small and high performance http and reverse proxy server"
56
57 HOMEPAGE="http://nginx.net/"
58 SRC_URI="http://sysoev.ru/nginx/${P}.tar.gz"
59 LICENSE="BSD"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86"
62 IUSE="addition debug fastcgi flv imap pcre perl ssl status sub webdav zlib"
63
64 DEPEND="dev-lang/perl
65 pcre? ( >=dev-libs/libpcre-4.2 )
66 ssl? ( dev-libs/openssl )
67 zlib? ( sys-libs/zlib )
68 perl? ( >=dev-lang/perl-5.8 )"
69
70 pkg_setup() {
71 ebegin "Creating nginx user and group"
72 enewgroup nginx
73 enewuser nginx -1 -1 /dev/null nginx
74 eend ${?}
75 }
76
77 src_compile() {
78 local myconf
79
80 # threads support is broken atm.
81 #
82 # if use threads; then
83 # einfo
84 # ewarn "threads support is experimental at the moment"
85 # ewarn "do not use it on production systems - you've been warned"
86 # einfo
87 # myconf="${myconf} --with-threads"
88 # fi
89
90 use addition && myconf="${myconf} --with-http_addition_module"
91 use fastcgi || myconf="${myconf} --without-http_fastcgi_module"
92 use fastcgi && myconf="${myconf} --with-http_realip_module"
93 use flv && myconf="${myconf} --with-http_flv_module"
94 use zlib || myconf="${myconf} --without-http_gzip_module"
95 use pcre || {
96 myconf="${myconf} --without-pcre --without-http_rewrite_module"
97 }
98 use debug && myconf="${myconf} --with-debug"
99 use ssl && myconf="${myconf} --with-http_ssl_module"
100 use imap && myconf="${myconf} --with-imap" # pop3/imap4 proxy support
101 use perl && myconf="${myconf} --with-http_perl_module"
102 use status && myconf="${myconf} --with-http_stub_status_module"
103 use webdav && myconf="${myconf} --with-http_dav_module"
104 use sub && myconf="${myconf} --with-http_sub_module"
105
106 ./configure \
107 --prefix=/usr \
108 --conf-path=/etc/${PN}/${PN}.conf \
109 --http-log-path=/var/log/${PN}/access_log \
110 --error-log-path=/var/log/${PN}/error_log \
111 --pid-path=/var/run/${PN}.pid \
112 --http-client-body-temp-path=/var/tmp/${PN}/client \
113 --http-proxy-temp-path=/var/tmp/${PN}/proxy \
114 --http-fastcgi-temp-path=/var/tmp/${PN}/fastcgi \
115 --with-md5-asm --with-md5=/usr/include \
116 --with-sha1-asm --with-sha1=/usr/include \
117 ${myconf} || die "configure failed"
118
119 emake || die "failed to compile"
120 }
121
122 src_install() {
123 keepdir /var/log/${PN} /var/tmp/${PN}/{client,proxy,fastcgi}
124
125 dosbin objs/nginx
126 cp "${FILESDIR}"/nginx-r1 "${T}"/nginx
127 doinitd "${T}"/nginx
128
129 cp "${FILESDIR}"/nginx.conf-r4 conf/nginx.conf
130
131 dodir "${ROOT}"/etc/${PN}
132 insinto "${ROOT}"/etc/${PN}
133 doins conf/*
134
135 dodoc CHANGES{,.ru} README
136
137 use perl && {
138 cd "${S}"/objs/src/http/modules/perl/
139 einstall DESTDIR="${D}"|| die "failed to install perl stuff"
140 }
141 }
142
143 pkg_postinst() {
144 use ssl && {
145 if [ ! -f "${ROOT}"/etc/ssl/${PN}/${PN}.key ]; then
146 dodir "${ROOT}"/etc/ssl/${PN}
147 insinto "${ROOT}"etc/ssl/${PN}/
148 insopts -m0644 -o nginx -g nginx
149 install_cert /etc/ssl/nginx/nginx
150 fi
151 }
152 }