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.39.ebuild nginx-0.7.38.ebuild
Date: Wed, 04 Mar 2009 15:29:56
Message-Id: E1Let2f-0000aW-FO@stork.gentoo.org
1 voxus 09/03/04 15:29:53
2
3 Modified: ChangeLog
4 Added: nginx-0.7.39.ebuild
5 Removed: nginx-0.7.38.ebuild
6 Log:
7 * bump
8 (Portage version: 2.2_rc23/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.206 www-servers/nginx/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/nginx/ChangeLog?rev=1.206&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/nginx/ChangeLog?rev=1.206&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/nginx/ChangeLog?r1=1.205&r2=1.206
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-servers/nginx/ChangeLog,v
20 retrieving revision 1.205
21 retrieving revision 1.206
22 diff -u -r1.205 -r1.206
23 --- ChangeLog 26 Feb 2009 15:17:34 -0000 1.205
24 +++ ChangeLog 4 Mar 2009 15:29:49 -0000 1.206
25 @@ -1,6 +1,12 @@
26 # ChangeLog for www-servers/nginx
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-servers/nginx/ChangeLog,v 1.205 2009/02/26 15:17:34 voxus Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/www-servers/nginx/ChangeLog,v 1.206 2009/03/04 15:29:49 voxus Exp $
30 +
31 +*nginx-0.7.39 (04 Mar 2009)
32 +
33 + 04 Mar 2009; Konstantin V. Arkhipov <voxus@g.o>
34 + -nginx-0.7.38.ebuild, +nginx-0.7.39.ebuild:
35 + Version bump.
36
37 *nginx-0.7.38 (26 Feb 2009)
38
39
40
41
42 1.1 www-servers/nginx/nginx-0.7.39.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/nginx/nginx-0.7.39.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/nginx/nginx-0.7.39.ebuild?rev=1.1&content-type=text/plain
46
47 Index: nginx-0.7.39.ebuild
48 ===================================================================
49 # Copyright 1999-2009 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.39.ebuild,v 1.1 2009/03/04 15:29:49 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 random-index 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 use random-index && myconf="${myconf} --with-http_random_index_module"
106
107 ./configure \
108 --prefix=/usr \
109 --conf-path=/etc/${PN}/${PN}.conf \
110 --http-log-path=/var/log/${PN}/access_log \
111 --error-log-path=/var/log/${PN}/error_log \
112 --pid-path=/var/run/${PN}.pid \
113 --http-client-body-temp-path=/var/tmp/${PN}/client \
114 --http-proxy-temp-path=/var/tmp/${PN}/proxy \
115 --http-fastcgi-temp-path=/var/tmp/${PN}/fastcgi \
116 --with-md5-asm --with-md5=/usr/include \
117 --with-sha1-asm --with-sha1=/usr/include \
118 ${myconf} || die "configure failed"
119
120 emake || die "failed to compile"
121 }
122
123 src_install() {
124 keepdir /var/log/${PN} /var/tmp/${PN}/{client,proxy,fastcgi}
125
126 dosbin objs/nginx
127 cp "${FILESDIR}"/nginx-r1 "${T}"/nginx
128 doinitd "${T}"/nginx
129
130 cp "${FILESDIR}"/nginx.conf-r4 conf/nginx.conf
131
132 dodir "${ROOT}"/etc/${PN}
133 insinto "${ROOT}"/etc/${PN}
134 doins conf/*
135
136 dodoc CHANGES{,.ru} README
137
138 use perl && {
139 cd "${S}"/objs/src/http/modules/perl/
140 einstall DESTDIR="${D}"|| die "failed to install perl stuff"
141 }
142 }
143
144 pkg_postinst() {
145 use ssl && {
146 if [ ! -f "${ROOT}"/etc/ssl/${PN}/${PN}.key ]; then
147 dodir "${ROOT}"/etc/ssl/${PN}
148 insinto "${ROOT}"etc/ssl/${PN}/
149 insopts -m0644 -o nginx -g nginx
150 install_cert /etc/ssl/nginx/nginx
151 fi
152 }
153 }