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.6.15.ebuild nginx-0.6.13.ebuild
Date: Sat, 27 Oct 2007 19:48:46
Message-Id: E1IlreD-0000vj-9s@stork.gentoo.org
1 voxus 07/10/27 19:48:41
2
3 Modified: ChangeLog
4 Added: nginx-0.6.15.ebuild
5 Removed: nginx-0.6.13.ebuild
6 Log:
7 * bump
8 (Portage version: 2.1.3.15)
9
10 Revision Changes Path
11 1.163 www-servers/nginx/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/nginx/ChangeLog?rev=1.163&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/nginx/ChangeLog?rev=1.163&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/nginx/ChangeLog?r1=1.162&r2=1.163
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-servers/nginx/ChangeLog,v
20 retrieving revision 1.162
21 retrieving revision 1.163
22 diff -u -r1.162 -r1.163
23 --- ChangeLog 1 Oct 2007 10:41:42 -0000 1.162
24 +++ ChangeLog 27 Oct 2007 19:48:40 -0000 1.163
25 @@ -1,6 +1,12 @@
26 # ChangeLog for www-servers/nginx
27 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-servers/nginx/ChangeLog,v 1.162 2007/10/01 10:41:42 voxus Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/www-servers/nginx/ChangeLog,v 1.163 2007/10/27 19:48:40 voxus Exp $
30 +
31 +*nginx-0.6.15 (27 Oct 2007)
32 +
33 + 27 Oct 2007; Konstantin V. Arkhipov <voxus@g.o>
34 + -nginx-0.6.13.ebuild, +nginx-0.6.15.ebuild:
35 + Version bump.
36
37 *nginx-0.5.32 (01 Oct 2007)
38
39
40
41
42 1.1 www-servers/nginx/nginx-0.6.15.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/nginx/nginx-0.6.15.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/nginx/nginx-0.6.15.ebuild?rev=1.1&content-type=text/plain
46
47 Index: nginx-0.6.15.ebuild
48 ===================================================================
49 # Copyright 1999-2007 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.6.15.ebuild,v 1.1 2007/10/27 19:48:40 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://sysoev.ru/nginx/"
58 SRC_URI="http://sysoev.ru/nginx/${P}.tar.gz"
59 LICENSE="BSD"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86"
62 IUSE="debug fastcgi flv imap pcre perl ssl status 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 fastcgi || myconf="${myconf} --without-http_fastcgi_module"
91 use fastcgi && myconf="${myconf} --with-http_realip_module"
92 use flv && myconf="${myconf} --with-http_flv_module"
93 use zlib || myconf="${myconf} --without-http_gzip_module"
94 use pcre || {
95 myconf="${myconf} --without-pcre --without-http_rewrite_module"
96 }
97 use debug && myconf="${myconf} --with-debug"
98 use ssl && myconf="${myconf} --with-http_ssl_module"
99 use imap && myconf="${myconf} --with-imap" # pop3/imap4 proxy support
100 use perl && myconf="${myconf} --with-http_perl_module"
101 use status && myconf="${myconf} --with-http_stub_status_module"
102 use webdav && myconf="${myconf} --with-http_dav_module"
103
104 ./configure \
105 --prefix=/usr \
106 --conf-path=/etc/${PN}/${PN}.conf \
107 --http-log-path=/var/log/${PN}/access_log \
108 --error-log-path=/var/log/${PN}/error_log \
109 --pid-path=/var/run/${PN}.pid \
110 --http-client-body-temp-path=/var/tmp/${PN}/client \
111 --http-proxy-temp-path=/var/tmp/${PN}/proxy \
112 --http-fastcgi-temp-path=/var/tmp/${PN}/fastcgi \
113 --with-md5-asm --with-md5=/usr/include \
114 ${myconf} || die "configure failed"
115
116 emake || die "failed to compile"
117 }
118
119 src_install() {
120 keepdir /var/log/${PN} /var/tmp/${PN}/{client,proxy,fastcgi}
121
122 dosbin objs/nginx
123 cp ${FILESDIR}/nginx-r1 ${T}/nginx
124 doinitd ${T}/nginx
125
126 cp ${FILESDIR}/nginx.conf-r4 conf/nginx.conf
127
128 use ssl && {
129 if [ ! -f /etc/ssl/${PN}/${PN}.key ]; then
130 dodir /etc/ssl/${PN}
131 insinto /etc/ssl/${PN}
132 docert ${PN}
133 fi
134
135 sed -e 's:# ::' -i conf/nginx.conf
136 }
137
138 dodir /etc/${PN}
139 insinto /etc/${PN}
140 doins conf/*
141
142 dodoc CHANGES{,.ru} LICENSE README
143
144 use perl && {
145 cd ${S}/objs/src/http/modules/perl/
146 make DESTDIR=${D} install || die "failed to install perl stuff"
147 }
148 }
149
150
151
152 --
153 gentoo-commits@g.o mailing list