Sun Jul 11 12:18:55 2010 UTC ()
Update cherokee to 1.0.5.
Based on PR#43557 by Wen Heping.

Bump to 1.x release.


(obache)
diff -r1.14 -r1.15 pkgsrc/www/cherokee/Makefile
diff -r1.2 -r1.3 pkgsrc/www/cherokee/PLIST
diff -r1.3 -r1.4 pkgsrc/www/cherokee/distinfo
diff -r0 -r1.1 pkgsrc/www/cherokee/options.mk
diff -r1.2 -r1.3 pkgsrc/www/cherokee/files/cherokee.sh
diff -r1.1.1.1 -r0 pkgsrc/www/cherokee/patches/patch-aa
diff -r1.1 -r0 pkgsrc/www/cherokee/patches/patch-ab
diff -r1.1 -r0 pkgsrc/www/cherokee/patches/patch-ac
diff -r1.1 -r0 pkgsrc/www/cherokee/patches/patch-ad

cvs diff -r1.14 -r1.15 pkgsrc/www/cherokee/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/www/cherokee/Attic/Makefile 2010/06/28 10:49:51 1.14
+++ pkgsrc/www/cherokee/Attic/Makefile 2010/07/11 12:18:55 1.15
@@ -1,85 +1,49 @@ @@ -1,85 +1,49 @@
1# $NetBSD: Makefile,v 1.14 2010/06/28 10:49:51 joerg Exp $ 1# $NetBSD: Makefile,v 1.15 2010/07/11 12:18:55 obache Exp $
2# 2#
3 3
4DISTNAME= cherokee-0.5.3 4DISTNAME= cherokee-1.0.5
5PKGREVISION= 5 
6CATEGORIES= www 5CATEGORIES= www
7MASTER_SITES= http://www.cherokee-project.com/download/0.5/0.5.3/ 6MASTER_SITES= http://www.cherokee-project.com/download/1.0/${PKGVERSION_NOREV}/
8 7
9MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://www.cherokee-project.com/ 9HOMEPAGE= http://www.cherokee-project.com/
11COMMENT= Flexible and fast web server 10COMMENT= Flexible and fast web server
 11LICENSE= gnu-gpl-v2
12 12
13PKG_DESTDIR_SUPPORT= user-destdir 13PKG_DESTDIR_SUPPORT= user-destdir
14 14
15GNU_CONFIGURE= yes 15GNU_CONFIGURE= yes
16USE_LIBTOOL= yes 16USE_LIBTOOL= yes
17USE_TOOLS+= bison flex 17USE_TOOLS+= gmake msgfmt
18 18
19CONFIGURE_ARGS+= --localstatedir=${VARBASE:Q} 19CONFIGURE_ARGS+= --localstatedir=${VARBASE}
20CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q} 20CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
21CONFIGURE_ARGS+= --with-wwwroot=${PREFIX}/share/cherokee 21CONFIGURE_ARGS+= --with-wwwroot=${PREFIX}/share/cherokee
22 22
23PKGCONFIG_OVERRIDE= cherokee.pc.in 23PKGCONFIG_OVERRIDE= cherokee.pc.in
24 24
25INSTALL_MAKE_FLAGS+= sysconfdir=${EGDIR:Q} 25INSTALL_MAKE_FLAGS+= sysconfdir=${EGDIR}
26OWN_DIRS= ${PKG_SYSCONFDIR}/cherokee 26OWN_DIRS= ${PKG_SYSCONFDIR}/cherokee
27OWN_DIRS+= ${PKG_SYSCONFDIR}/cherokee/mods-enabled 
28OWN_DIRS+= ${PKG_SYSCONFDIR}/cherokee/sites-enabled 
29OWN_DIRS+= ${VARBASE}/log 27OWN_DIRS+= ${VARBASE}/log
30OWN_DIRS+= ${VARBASE}/run 28OWN_DIRS+= ${VARBASE}/run
31EGDIR= ${PREFIX}/share/examples/cherokee 29EGDIR= ${PREFIX}/share/examples/cherokee
32MESSAGE_SUBST+= EGDIR=${EGDIR:Q} 30MESSAGE_SUBST+= EGDIR=${EGDIR}
33CONF_FILES= 31CONF_FILES+= ${EGDIR}/cherokee/cherokee.conf \
34.for f in advanced.conf \ 32 ${PKG_SYSCONFDIR}/cherokee/cherokee.conf
35 cherokee.conf \ 
36 icons.conf \ 
37 mime.compression.types \ 
38 mime.types 
39CONF_FILES+= ${EGDIR}/cherokee/${f} ${PKG_SYSCONFDIR}/cherokee/${f} 
40.endfor 
41CONF_FILES+= ${EGDIR}/cherokee/sites-available/default \ 
42 ${PKG_SYSCONFDIR}/cherokee/sites-enabled/default 
43 33
44RCD_SCRIPTS= cherokee 34RCD_SCRIPTS= cherokee
45 35
46SUBST_CLASSES+= varbase 
47SUBST_STAGE.varbase= pre-configure 
48SUBST_MESSAGE.varbase= Fixing references to local state directory. 
49SUBST_SED.varbase= -e 's|/var/|${VARBASE}/|g' 
50SUBST_FILES.varbase= cherokee.conf.sample.pre 
51SUBST_FILES.varbase+= http-cherokee.xml 
52SUBST_FILES.varbase+= cherokee-logrotate.1 
53SUBST_FILES.varbase+= sites-default.sample.pre 
54 
55PKG_OPTIONS_VAR= PKG_OPTIONS.cherokee 
56PKG_OPTIONS_OPTIONAL_GROUPS= ssl 
57PKG_OPTIONS_GROUP.ssl= gnutls openssl 
58PKG_SUGGESTED_OPTIONS+= inet6 gnutls 
59PKG_SUPPORTED_OPTIONS+= inet6 
60.include "../../mk/bsd.options.mk" 
61 
62.if !empty(PKG_OPTIONS:Minet6) 
63CONFIGURE_ARGS+= --enable-ipv6 
64.else 
65CONFIGURE_ARGS+= --disable-ipv6 
66.endif 
67 
68.if !empty(PKG_OPTIONS:Mgnutls) 
69CONFIGURE_ARGS+= --enable-tls=gnutls 
70.include "../../security/gnutls/buildlink3.mk" 
71.include "../../security/gnutls/libgnutls-config.mk" 
72CONF_FILES+= ${EGDIR}/cherokee/mods-available/ssl \ 
73 ${PKG_SYSCONFDIR}/cherokee/mods-enabled/ssl 
74.elif !empty(PKG_OPTIONS:Mopenssl) 
75CONFIGURE_ARGS+= --enable-tls=openssl 
76.include "../../security/openssl/buildlink3.mk" 
77CONF_FILES+= ${EGDIR}/cherokee/mods-available/ssl \ 
78 ${PKG_SYSCONFDIR}/cherokee/mods-enabled/ssl 
79.else 
80CONFIGURE_ARGS+= --disable-tls 
81.endif 
82 
83INSTALLATION_DIRS+= ${EGDIR}/pam.d 36INSTALLATION_DIRS+= ${EGDIR}/pam.d
84 37
 38.include "options.mk"
 39
 40# Need to installation
 41#TEST_TARGET= test
 42
 43BUILD_DEFS+= VARBASE
 44
 45REPLACE_PYTHON= admin/server.py admin/upgrade_config.py
 46
 47.include "../../devel/pcre/buildlink3.mk"
 48.include "../../lang/python/application.mk"
85.include "../../mk/bsd.pkg.mk" 49.include "../../mk/bsd.pkg.mk"

cvs diff -r1.2 -r1.3 pkgsrc/www/cherokee/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/www/cherokee/Attic/PLIST 2009/06/14 22:00:19 1.2
+++ pkgsrc/www/cherokee/Attic/PLIST 2010/07/11 12:18:55 1.3
@@ -1,155 +1,966 @@ @@ -1,155 +1,966 @@
1@comment $NetBSD: PLIST,v 1.2 2009/06/14 22:00:19 joerg Exp $ 1@comment $NetBSD: PLIST,v 1.3 2010/07/11 12:18:55 obache Exp $
2bin/cget 2bin/cget
3bin/cherokee-config 3bin/cherokee-config
4bin/cherokee-panic 4bin/cherokee-panic
5bin/cherokee_logrotate 5bin/cherokee-tweak
6include/cherokee/admin_client.h 6include/cherokee/admin_client.h
 7include/cherokee/avl.h
 8include/cherokee/avl_r.h
7include/cherokee/buffer.h 9include/cherokee/buffer.h
 10include/cherokee/cache.h
8include/cherokee/cherokee-config.h 11include/cherokee/cherokee-config.h
9include/cherokee/cherokee.h 12include/cherokee/cherokee.h
10include/cherokee/common.h 13include/cherokee/common.h
 14include/cherokee/config_entry.h
 15include/cherokee/config_node.h
11include/cherokee/connection.h 16include/cherokee/connection.h
12include/cherokee/connection_info.h 17include/cherokee/connection_info.h
 18include/cherokee/cryptor.h
13include/cherokee/downloader.h 19include/cherokee/downloader.h
14include/cherokee/encoder.h 20include/cherokee/encoder.h
15include/cherokee/fdpoll.h 21include/cherokee/fdpoll.h
16include/cherokee/handler.h 22include/cherokee/handler.h
17include/cherokee/header.h 23include/cherokee/header.h
18include/cherokee/http.h 24include/cherokee/http.h
 25include/cherokee/init.h
 26include/cherokee/iocache.h
19include/cherokee/list.h 27include/cherokee/list.h
20include/cherokee/list_merge_sort.h 
21include/cherokee/logger.h 28include/cherokee/logger.h
22include/cherokee/macros.h 29include/cherokee/macros.h
23include/cherokee/mime.h 30include/cherokee/mime.h
24include/cherokee/mime_entry.h 31include/cherokee/mime_entry.h
25include/cherokee/module.h 32include/cherokee/module.h
26include/cherokee/module_loader.h 
27include/cherokee/nonce.h 33include/cherokee/nonce.h
 34include/cherokee/nullable.h
 35include/cherokee/plugin.h
 36include/cherokee/plugin_loader.h
 37include/cherokee/post.h
28include/cherokee/resolv_cache.h 38include/cherokee/resolv_cache.h
 39include/cherokee/rule.h
29include/cherokee/server.h 40include/cherokee/server.h
30include/cherokee/table.h 41include/cherokee/template.h
31include/cherokee/typed_table.h 42include/cherokee/trace.h
32include/cherokee/url.h 43include/cherokee/url.h
33include/cherokee/util.h 44include/cherokee/util.h
 45include/cherokee/validator.h
 46include/cherokee/version.h
34lib/cherokee/libplugin_admin.la 47lib/cherokee/libplugin_admin.la
 48lib/cherokee/libplugin_and.la
 49lib/cherokee/libplugin_authlist.la
 50lib/cherokee/libplugin_bind.la
35lib/cherokee/libplugin_cgi.la 51lib/cherokee/libplugin_cgi.la
36lib/cherokee/libplugin_combined.la 52lib/cherokee/libplugin_combined.la
37lib/cherokee/libplugin_common.la 53lib/cherokee/libplugin_common.la
 54lib/cherokee/libplugin_custom.la
 55lib/cherokee/libplugin_custom_error.la
 56${PLIST.mysql}lib/cherokee/libplugin_dbslayer.la
 57lib/cherokee/libplugin_deflate.la
 58lib/cherokee/libplugin_directory.la
38lib/cherokee/libplugin_dirlist.la 59lib/cherokee/libplugin_dirlist.la
 60lib/cherokee/libplugin_empty_gif.la
 61lib/cherokee/libplugin_error_nn.la
39lib/cherokee/libplugin_error_redir.la 62lib/cherokee/libplugin_error_redir.la
40lib/cherokee/libplugin_fastcgi.la 63lib/cherokee/libplugin_evhost.la
 64lib/cherokee/libplugin_exists.la
 65lib/cherokee/libplugin_extensions.la
41lib/cherokee/libplugin_fcgi.la 66lib/cherokee/libplugin_fcgi.la
42lib/cherokee/libplugin_file.la 67lib/cherokee/libplugin_file.la
 68lib/cherokee/libplugin_from.la
 69lib/cherokee/libplugin_fullpath.la
43lib/cherokee/libplugin_gzip.la 70lib/cherokee/libplugin_gzip.la
 71${PLIST.geoip}lib/cherokee/libplugin_geoip.la
 72lib/cherokee/libplugin_header.la
44lib/cherokee/libplugin_htdigest.la 73lib/cherokee/libplugin_htdigest.la
 74lib/cherokee/libplugin_htpasswd.la
 75lib/cherokee/libplugin_ip_hash.la
 76${PLIST.ldap}lib/cherokee/libplugin_ldap.la
 77${PLIST.ssl}lib/cherokee/libplugin_libssl.la
 78lib/cherokee/libplugin_method.la
 79${PLIST.mysql}lib/cherokee/libplugin_mysql.la
45lib/cherokee/libplugin_ncsa.la 80lib/cherokee/libplugin_ncsa.la
46lib/cherokee/libplugin_nn.la 81lib/cherokee/libplugin_not.la
47lib/cherokee/libplugin_phpcgi.la 82lib/cherokee/libplugin_or.la
 83${PLIST.pam}lib/cherokee/libplugin_pam.la
48lib/cherokee/libplugin_plain.la 84lib/cherokee/libplugin_plain.la
49lib/cherokee/libplugin_read_config.la 85lib/cherokee/libplugin_post_report.la
 86lib/cherokee/libplugin_post_track.la
 87lib/cherokee/libplugin_proxy.la
50lib/cherokee/libplugin_redir.la 88lib/cherokee/libplugin_redir.la
 89lib/cherokee/libplugin_rehost.la
 90lib/cherokee/libplugin_render_rrd.la
 91lib/cherokee/libplugin_request.la
 92lib/cherokee/libplugin_round_robin.la
 93lib/cherokee/libplugin_rrd.la
51lib/cherokee/libplugin_scgi.la 94lib/cherokee/libplugin_scgi.la
 95lib/cherokee/libplugin_secdownload.la
52lib/cherokee/libplugin_server_info.la 96lib/cherokee/libplugin_server_info.la
53lib/cherokee/libplugin_w3c.la 97lib/cherokee/libplugin_ssi.la
 98lib/cherokee/libplugin_streaming.la
 99lib/cherokee/libplugin_target_ip.la
 100lib/cherokee/libplugin_tls.la
 101lib/cherokee/libplugin_url_arg.la
 102lib/cherokee/libplugin_uwsgi.la
 103lib/cherokee/libplugin_wildcard.la
54lib/libcherokee-base.la 104lib/libcherokee-base.la
55lib/libcherokee-client.la 105lib/libcherokee-client.la
56lib/libcherokee-config.la 106lib/libcherokee-config.la
57lib/libcherokee-server.la 107lib/libcherokee-server.la
58lib/pkgconfig/cherokee.pc 108lib/pkgconfig/cherokee.pc
59man/man1/cget.1 109man/man1/cget.1
 110man/man1/cherokee-admin.1
60man/man1/cherokee-config.1 111man/man1/cherokee-config.1
 112man/man1/cherokee-tweak.1
 113man/man1/cherokee-worker.1
61man/man1/cherokee.1 114man/man1/cherokee.1
62man/man1/cherokee_logrotate.1 
63sbin/cherokee 115sbin/cherokee
 116sbin/cherokee-admin
 117sbin/cherokee-worker
64share/aclocal/cherokee.m4 118share/aclocal/cherokee.m4
 119share/cherokee/admin/Auth.py
 120share/cherokee/admin/Backup.py
 121share/cherokee/admin/Balancer.py
 122share/cherokee/admin/CTK/CTK/Box.py
 123share/cherokee/admin/CTK/CTK/Button.py
 124share/cherokee/admin/CTK/CTK/Checkbox.py
 125share/cherokee/admin/CTK/CTK/Combobox.py
 126share/cherokee/admin/CTK/CTK/Config.py
 127share/cherokee/admin/CTK/CTK/Container.py
 128share/cherokee/admin/CTK/CTK/DatePicker.py
 129share/cherokee/admin/CTK/CTK/Dialog.py
 130share/cherokee/admin/CTK/CTK/Downloader.py
 131share/cherokee/admin/CTK/CTK/Druid.py
 132share/cherokee/admin/CTK/CTK/HTTP.py
 133share/cherokee/admin/CTK/CTK/Help.py
 134share/cherokee/admin/CTK/CTK/HiddenField.py
 135share/cherokee/admin/CTK/CTK/Image.py
 136share/cherokee/admin/CTK/CTK/Indenter.py
 137share/cherokee/admin/CTK/CTK/JS.py
 138share/cherokee/admin/CTK/CTK/Link.py
 139share/cherokee/admin/CTK/CTK/List.py
 140share/cherokee/admin/CTK/CTK/Notice.py
 141share/cherokee/admin/CTK/CTK/Page.py
 142share/cherokee/admin/CTK/CTK/PageCleaner.py
 143share/cherokee/admin/CTK/CTK/Plugin.py
 144share/cherokee/admin/CTK/CTK/Post.py
 145share/cherokee/admin/CTK/CTK/ProgressBar.py
 146share/cherokee/admin/CTK/CTK/PropsTable.py
 147share/cherokee/admin/CTK/CTK/Proxy.py
 148share/cherokee/admin/CTK/CTK/Radio.py
 149share/cherokee/admin/CTK/CTK/RawHTML.py
 150share/cherokee/admin/CTK/CTK/Refreshable.py
 151share/cherokee/admin/CTK/CTK/Server.py
 152share/cherokee/admin/CTK/CTK/SortableList.py
 153share/cherokee/admin/CTK/CTK/Submitter.py
 154share/cherokee/admin/CTK/CTK/Tab.py
 155share/cherokee/admin/CTK/CTK/Table.py
 156share/cherokee/admin/CTK/CTK/Template.py
 157share/cherokee/admin/CTK/CTK/TextArea.py
 158share/cherokee/admin/CTK/CTK/TextField.py
 159share/cherokee/admin/CTK/CTK/ToggleButton.py
 160share/cherokee/admin/CTK/CTK/Uploader.py
 161share/cherokee/admin/CTK/CTK/Widget.py
 162share/cherokee/admin/CTK/CTK/XMLRPCProxy.py
 163share/cherokee/admin/CTK/CTK/__init__.py
 164share/cherokee/admin/CTK/CTK/consts.py
 165share/cherokee/admin/CTK/CTK/iPhoneToggle.py
 166share/cherokee/admin/CTK/CTK/json_embedded.py
 167share/cherokee/admin/CTK/CTK/pyscgi.py
 168share/cherokee/admin/CTK/CTK/util.py
 169share/cherokee/admin/CTK/static/css/CTK.css
 170share/cherokee/admin/CTK/static/css/datepicker.css
 171share/cherokee/admin/CTK/static/css/jquery-ui-1.7.2.custom.css
 172share/cherokee/admin/CTK/static/css/jquery.ibutton.css
 173share/cherokee/admin/CTK/static/images/arrow_ns.png
 174share/cherokee/admin/CTK/static/images/bg-body.png
 175share/cherokee/admin/CTK/static/images/bg-button-a-big.png
 176share/cherokee/admin/CTK/static/images/bg-button-a-light.png
 177share/cherokee/admin/CTK/static/images/bg-button-a.png
 178share/cherokee/admin/CTK/static/images/bg-button-clone.png
 179share/cherokee/admin/CTK/static/images/bg-button-new.png
 180share/cherokee/admin/CTK/static/images/bg-button-span-big.png
 181share/cherokee/admin/CTK/static/images/bg-button-span-light.png
 182share/cherokee/admin/CTK/static/images/bg-button-span-start-light.png
 183share/cherokee/admin/CTK/static/images/bg-button-span-stop-light.png
 184share/cherokee/admin/CTK/static/images/bg-button-span.png
 185share/cherokee/admin/CTK/static/images/bg-dialog-buttonpane.png
 186share/cherokee/admin/CTK/static/images/bg-dialog-titlebar-close.gif
 187share/cherokee/admin/CTK/static/images/bg-dialog-titlebar.png
 188share/cherokee/admin/CTK/static/images/bg-dialog.png
 189share/cherokee/admin/CTK/static/images/bg-filter.png
 190share/cherokee/admin/CTK/static/images/bg-help-a.png
 191share/cherokee/admin/CTK/static/images/bg-help-span.png
 192share/cherokee/admin/CTK/static/images/bg-sel-actions-sel.png
 193share/cherokee/admin/CTK/static/images/bg-sel-actions.png
 194share/cherokee/admin/CTK/static/images/bg-td-even.png
 195share/cherokee/admin/CTK/static/images/bg-th.png
 196share/cherokee/admin/CTK/static/images/del-hover.png
 197share/cherokee/admin/CTK/static/images/del.png
 198share/cherokee/admin/CTK/static/images/dialog-error.png
 199share/cherokee/admin/CTK/static/images/dialog-information.png
 200share/cherokee/admin/CTK/static/images/dialog-warning.png
 201share/cherokee/admin/CTK/static/images/ibutton-slider-default.png
 202share/cherokee/admin/CTK/static/images/input-bg.png
 203share/cherokee/admin/CTK/static/images/loader.gif
 204share/cherokee/admin/CTK/static/images/loading.gif
 205share/cherokee/admin/CTK/static/images/off.png
 206share/cherokee/admin/CTK/static/images/offline.png
 207share/cherokee/admin/CTK/static/images/on.png
 208share/cherokee/admin/CTK/static/images/online.png
 209share/cherokee/admin/CTK/static/images/tabbg.png
 210share/cherokee/admin/CTK/static/images/tick.png
 211share/cherokee/admin/CTK/static/images/ui-icons_222222_256x240.png
 212share/cherokee/admin/CTK/static/images/ui-icons_2e83ff_256x240.png
 213share/cherokee/admin/CTK/static/images/ui-icons_454545_256x240.png
 214share/cherokee/admin/CTK/static/images/ui-icons_888888_256x240.png
 215share/cherokee/admin/CTK/static/images/ui-icons_cd0a0a_256x240.png
 216share/cherokee/admin/CTK/static/images/uploadify.cancel.png
 217share/cherokee/admin/CTK/static/js/Help.js
 218share/cherokee/admin/CTK/static/js/Submitter.js
 219share/cherokee/admin/CTK/static/js/common.js
 220share/cherokee/admin/CTK/static/js/jquery-1.3.2.min.js
 221share/cherokee/admin/CTK/static/js/jquery-ui-1.7.2.custom.min.js
 222share/cherokee/admin/CTK/static/js/jquery.cookie.js
 223share/cherokee/admin/CTK/static/js/jquery.form-defaults.js
 224share/cherokee/admin/CTK/static/js/jquery.ibutton.js
 225share/cherokee/admin/CTK/static/js/jquery.tablednd_0_5.js
 226share/cherokee/admin/CTK/static/js/jquery.uploadProgress.js
 227share/cherokee/admin/CgiBase.py
 228share/cherokee/admin/Cherokee.py
 229share/cherokee/admin/Flags.py
 230share/cherokee/admin/Graph.py
 231share/cherokee/admin/Handler.py
 232share/cherokee/admin/Icons.py
 233share/cherokee/admin/Login.py
 234share/cherokee/admin/Mime.py
 235share/cherokee/admin/Page.py
 236share/cherokee/admin/PageAdvanced.py
 237share/cherokee/admin/PageEntry.py
 238share/cherokee/admin/PageError.py
 239share/cherokee/admin/PageException.py
 240share/cherokee/admin/PageGeneral.py
 241share/cherokee/admin/PageHelp.py
 242share/cherokee/admin/PageIndex.py
 243share/cherokee/admin/PageNewConfig.py
 244share/cherokee/admin/PageRule.py
 245share/cherokee/admin/PageSource.py
 246share/cherokee/admin/PageSources.py
 247share/cherokee/admin/PageStatus.py
 248share/cherokee/admin/PageVServer.py
 249share/cherokee/admin/PageVServers.py
 250share/cherokee/admin/Rule.py
 251share/cherokee/admin/RuleSimple.py
 252share/cherokee/admin/SelectionPanel.py
 253share/cherokee/admin/Wizard.py
 254share/cherokee/admin/XMLServerDigest.py
 255share/cherokee/admin/cherokee.conf.sample
 256share/cherokee/admin/config_version.py
 257share/cherokee/admin/configured.py
 258share/cherokee/admin/consts.py
 259share/cherokee/admin/exception.html
 260share/cherokee/admin/help.html
 261share/cherokee/admin/performance.conf.sample
 262share/cherokee/admin/plugins/admin.py
 263share/cherokee/admin/plugins/authlist.py
 264share/cherokee/admin/plugins/bind.py
 265share/cherokee/admin/plugins/cgi.py
 266share/cherokee/admin/plugins/common.py
 267share/cherokee/admin/plugins/custom_error.py
 268share/cherokee/admin/plugins/dbslayer.py
 269share/cherokee/admin/plugins/directory.py
 270share/cherokee/admin/plugins/dirlist.py
 271share/cherokee/admin/plugins/empty_gif.py
 272share/cherokee/admin/plugins/error_nn.py
 273share/cherokee/admin/plugins/error_redir.py
 274share/cherokee/admin/plugins/evhost.py
 275share/cherokee/admin/plugins/exists.py
 276share/cherokee/admin/plugins/extensions.py
 277share/cherokee/admin/plugins/fcgi.py
 278share/cherokee/admin/plugins/file.py
 279share/cherokee/admin/plugins/from.py
 280share/cherokee/admin/plugins/fullpath.py
 281share/cherokee/admin/plugins/geoip.py
 282share/cherokee/admin/plugins/header.py
 283share/cherokee/admin/plugins/htdigest.py
 284share/cherokee/admin/plugins/htpasswd.py
 285share/cherokee/admin/plugins/ip_hash.py
 286share/cherokee/admin/plugins/ldap.py
 287share/cherokee/admin/plugins/method.py
 288share/cherokee/admin/plugins/mysql.py
 289share/cherokee/admin/plugins/pam.py
 290share/cherokee/admin/plugins/plain.py
 291share/cherokee/admin/plugins/post_report.py
 292share/cherokee/admin/plugins/post_track.py
 293share/cherokee/admin/plugins/proxy.py
 294share/cherokee/admin/plugins/redir.py
 295share/cherokee/admin/plugins/rehost.py
 296share/cherokee/admin/plugins/request.py
 297share/cherokee/admin/plugins/round_robin.py
 298share/cherokee/admin/plugins/rrd.py
 299share/cherokee/admin/plugins/scgi.py
 300share/cherokee/admin/plugins/secdownload.py
 301share/cherokee/admin/plugins/server_info.py
 302share/cherokee/admin/plugins/ssi.py
 303share/cherokee/admin/plugins/streaming.py
 304share/cherokee/admin/plugins/target_ip.py
 305share/cherokee/admin/plugins/tls.py
 306share/cherokee/admin/plugins/url_arg.py
 307share/cherokee/admin/plugins/uwsgi.py
 308share/cherokee/admin/plugins/wildcard.py
 309share/cherokee/admin/server.py
 310share/cherokee/admin/static/css/cherokee-admin.css
 311share/cherokee/admin/static/images/advanced.png
 312share/cherokee/admin/static/images/bg-bar.png
 313share/cherokee/admin/static/images/cherokee-logo-bar.png
 314share/cherokee/admin/static/images/favicon.ico
 315share/cherokee/admin/static/images/flags/ad.png
 316share/cherokee/admin/static/images/flags/ae.png
 317share/cherokee/admin/static/images/flags/af.png
 318share/cherokee/admin/static/images/flags/ag.png
 319share/cherokee/admin/static/images/flags/ai.png
 320share/cherokee/admin/static/images/flags/al.png
 321share/cherokee/admin/static/images/flags/am.png
 322share/cherokee/admin/static/images/flags/an.png
 323share/cherokee/admin/static/images/flags/ao.png
 324share/cherokee/admin/static/images/flags/ar.png
 325share/cherokee/admin/static/images/flags/as.png
 326share/cherokee/admin/static/images/flags/at.png
 327share/cherokee/admin/static/images/flags/au.png
 328share/cherokee/admin/static/images/flags/aw.png
 329share/cherokee/admin/static/images/flags/ax.png
 330share/cherokee/admin/static/images/flags/az.png
 331share/cherokee/admin/static/images/flags/ba.png
 332share/cherokee/admin/static/images/flags/bb.png
 333share/cherokee/admin/static/images/flags/bd.png
 334share/cherokee/admin/static/images/flags/be.png
 335share/cherokee/admin/static/images/flags/bf.png
 336share/cherokee/admin/static/images/flags/bg.png
 337share/cherokee/admin/static/images/flags/bh.png
 338share/cherokee/admin/static/images/flags/bi.png
 339share/cherokee/admin/static/images/flags/bj.png
 340share/cherokee/admin/static/images/flags/bm.png
 341share/cherokee/admin/static/images/flags/bn.png
 342share/cherokee/admin/static/images/flags/bo.png
 343share/cherokee/admin/static/images/flags/br.png
 344share/cherokee/admin/static/images/flags/bs.png
 345share/cherokee/admin/static/images/flags/bt.png
 346share/cherokee/admin/static/images/flags/bv.png
 347share/cherokee/admin/static/images/flags/bw.png
 348share/cherokee/admin/static/images/flags/by.png
 349share/cherokee/admin/static/images/flags/bz.png
 350share/cherokee/admin/static/images/flags/ca.png
 351share/cherokee/admin/static/images/flags/cc.png
 352share/cherokee/admin/static/images/flags/cd.png
 353share/cherokee/admin/static/images/flags/cf.png
 354share/cherokee/admin/static/images/flags/cg.png
 355share/cherokee/admin/static/images/flags/ch.png
 356share/cherokee/admin/static/images/flags/ci.png
 357share/cherokee/admin/static/images/flags/ck.png
 358share/cherokee/admin/static/images/flags/cl.png
 359share/cherokee/admin/static/images/flags/cm.png
 360share/cherokee/admin/static/images/flags/cn.png
 361share/cherokee/admin/static/images/flags/co.png
 362share/cherokee/admin/static/images/flags/cr.png
 363share/cherokee/admin/static/images/flags/cs.png
 364share/cherokee/admin/static/images/flags/cu.png
 365share/cherokee/admin/static/images/flags/cv.png
 366share/cherokee/admin/static/images/flags/cx.png
 367share/cherokee/admin/static/images/flags/cy.png
 368share/cherokee/admin/static/images/flags/cz.png
 369share/cherokee/admin/static/images/flags/de.png
 370share/cherokee/admin/static/images/flags/dj.png
 371share/cherokee/admin/static/images/flags/dk.png
 372share/cherokee/admin/static/images/flags/dm.png
 373share/cherokee/admin/static/images/flags/do.png
 374share/cherokee/admin/static/images/flags/dz.png
 375share/cherokee/admin/static/images/flags/ec.png
 376share/cherokee/admin/static/images/flags/ee.png
 377share/cherokee/admin/static/images/flags/eg.png
 378share/cherokee/admin/static/images/flags/eh.png
 379share/cherokee/admin/static/images/flags/england.png
 380share/cherokee/admin/static/images/flags/er.png
 381share/cherokee/admin/static/images/flags/es.png
 382share/cherokee/admin/static/images/flags/et.png
 383share/cherokee/admin/static/images/flags/europeanunion.png
 384share/cherokee/admin/static/images/flags/fi.png
 385share/cherokee/admin/static/images/flags/fj.png
 386share/cherokee/admin/static/images/flags/fk.png
 387share/cherokee/admin/static/images/flags/fm.png
 388share/cherokee/admin/static/images/flags/fo.png
 389share/cherokee/admin/static/images/flags/fr.png
 390share/cherokee/admin/static/images/flags/ga.png
 391share/cherokee/admin/static/images/flags/gb.png
 392share/cherokee/admin/static/images/flags/gd.png
 393share/cherokee/admin/static/images/flags/ge.png
 394share/cherokee/admin/static/images/flags/gf.png
 395share/cherokee/admin/static/images/flags/gh.png
 396share/cherokee/admin/static/images/flags/gi.png
 397share/cherokee/admin/static/images/flags/gl.png
 398share/cherokee/admin/static/images/flags/gm.png
 399share/cherokee/admin/static/images/flags/gn.png
 400share/cherokee/admin/static/images/flags/gp.png
 401share/cherokee/admin/static/images/flags/gq.png
 402share/cherokee/admin/static/images/flags/gr.png
 403share/cherokee/admin/static/images/flags/gs.png
 404share/cherokee/admin/static/images/flags/gt.png
 405share/cherokee/admin/static/images/flags/gu.png
 406share/cherokee/admin/static/images/flags/gw.png
 407share/cherokee/admin/static/images/flags/gy.png
 408share/cherokee/admin/static/images/flags/hk.png
 409share/cherokee/admin/static/images/flags/hm.png
 410share/cherokee/admin/static/images/flags/hn.png
 411share/cherokee/admin/static/images/flags/hr.png
 412share/cherokee/admin/static/images/flags/ht.png
 413share/cherokee/admin/static/images/flags/hu.png
 414share/cherokee/admin/static/images/flags/id.png
 415share/cherokee/admin/static/images/flags/ie.png
 416share/cherokee/admin/static/images/flags/il.png
 417share/cherokee/admin/static/images/flags/in.png
 418share/cherokee/admin/static/images/flags/io.png
 419share/cherokee/admin/static/images/flags/iq.png
 420share/cherokee/admin/static/images/flags/ir.png
 421share/cherokee/admin/static/images/flags/is.png
 422share/cherokee/admin/static/images/flags/it.png
 423share/cherokee/admin/static/images/flags/jm.png
 424share/cherokee/admin/static/images/flags/jo.png
 425share/cherokee/admin/static/images/flags/jp.png
 426share/cherokee/admin/static/images/flags/ke.png
 427share/cherokee/admin/static/images/flags/kg.png
 428share/cherokee/admin/static/images/flags/kh.png
 429share/cherokee/admin/static/images/flags/ki.png
 430share/cherokee/admin/static/images/flags/km.png
 431share/cherokee/admin/static/images/flags/kn.png
 432share/cherokee/admin/static/images/flags/kp.png
 433share/cherokee/admin/static/images/flags/kr.png
 434share/cherokee/admin/static/images/flags/kw.png
 435share/cherokee/admin/static/images/flags/ky.png
 436share/cherokee/admin/static/images/flags/kz.png
 437share/cherokee/admin/static/images/flags/la.png
 438share/cherokee/admin/static/images/flags/lb.png
 439share/cherokee/admin/static/images/flags/lc.png
 440share/cherokee/admin/static/images/flags/li.png
 441share/cherokee/admin/static/images/flags/lk.png
 442share/cherokee/admin/static/images/flags/lr.png
 443share/cherokee/admin/static/images/flags/ls.png
 444share/cherokee/admin/static/images/flags/lt.png
 445share/cherokee/admin/static/images/flags/lu.png
 446share/cherokee/admin/static/images/flags/lv.png
 447share/cherokee/admin/static/images/flags/ly.png
 448share/cherokee/admin/static/images/flags/ma.png
 449share/cherokee/admin/static/images/flags/mc.png
 450share/cherokee/admin/static/images/flags/md.png
 451share/cherokee/admin/static/images/flags/me.png
 452share/cherokee/admin/static/images/flags/mg.png
 453share/cherokee/admin/static/images/flags/mh.png
 454share/cherokee/admin/static/images/flags/mk.png
 455share/cherokee/admin/static/images/flags/ml.png
 456share/cherokee/admin/static/images/flags/mm.png
 457share/cherokee/admin/static/images/flags/mn.png
 458share/cherokee/admin/static/images/flags/mo.png
 459share/cherokee/admin/static/images/flags/mp.png
 460share/cherokee/admin/static/images/flags/mq.png
 461share/cherokee/admin/static/images/flags/mr.png
 462share/cherokee/admin/static/images/flags/ms.png
 463share/cherokee/admin/static/images/flags/mt.png
 464share/cherokee/admin/static/images/flags/mu.png
 465share/cherokee/admin/static/images/flags/mv.png
 466share/cherokee/admin/static/images/flags/mw.png
 467share/cherokee/admin/static/images/flags/mx.png
 468share/cherokee/admin/static/images/flags/my.png
 469share/cherokee/admin/static/images/flags/mz.png
 470share/cherokee/admin/static/images/flags/na.png
 471share/cherokee/admin/static/images/flags/nc.png
 472share/cherokee/admin/static/images/flags/ne.png
 473share/cherokee/admin/static/images/flags/nf.png
 474share/cherokee/admin/static/images/flags/ng.png
 475share/cherokee/admin/static/images/flags/ni.png
 476share/cherokee/admin/static/images/flags/nl.png
 477share/cherokee/admin/static/images/flags/no.png
 478share/cherokee/admin/static/images/flags/np.png
 479share/cherokee/admin/static/images/flags/nr.png
 480share/cherokee/admin/static/images/flags/nu.png
 481share/cherokee/admin/static/images/flags/nz.png
 482share/cherokee/admin/static/images/flags/om.png
 483share/cherokee/admin/static/images/flags/pa.png
 484share/cherokee/admin/static/images/flags/pe.png
 485share/cherokee/admin/static/images/flags/pf.png
 486share/cherokee/admin/static/images/flags/pg.png
 487share/cherokee/admin/static/images/flags/ph.png
 488share/cherokee/admin/static/images/flags/pk.png
 489share/cherokee/admin/static/images/flags/pl.png
 490share/cherokee/admin/static/images/flags/pm.png
 491share/cherokee/admin/static/images/flags/pn.png
 492share/cherokee/admin/static/images/flags/pr.png
 493share/cherokee/admin/static/images/flags/ps.png
 494share/cherokee/admin/static/images/flags/pt.png
 495share/cherokee/admin/static/images/flags/pw.png
 496share/cherokee/admin/static/images/flags/py.png
 497share/cherokee/admin/static/images/flags/qa.png
 498share/cherokee/admin/static/images/flags/re.png
 499share/cherokee/admin/static/images/flags/readme.txt
 500share/cherokee/admin/static/images/flags/ro.png
 501share/cherokee/admin/static/images/flags/rs.png
 502share/cherokee/admin/static/images/flags/ru.png
 503share/cherokee/admin/static/images/flags/rw.png
 504share/cherokee/admin/static/images/flags/sa.png
 505share/cherokee/admin/static/images/flags/sb.png
 506share/cherokee/admin/static/images/flags/sc.png
 507share/cherokee/admin/static/images/flags/scotland.png
 508share/cherokee/admin/static/images/flags/sd.png
 509share/cherokee/admin/static/images/flags/se.png
 510share/cherokee/admin/static/images/flags/sg.png
 511share/cherokee/admin/static/images/flags/sh.png
 512share/cherokee/admin/static/images/flags/si.png
 513share/cherokee/admin/static/images/flags/sj.png
 514share/cherokee/admin/static/images/flags/sk.png
 515share/cherokee/admin/static/images/flags/sl.png
 516share/cherokee/admin/static/images/flags/sm.png
 517share/cherokee/admin/static/images/flags/sn.png
 518share/cherokee/admin/static/images/flags/so.png
 519share/cherokee/admin/static/images/flags/sr.png
 520share/cherokee/admin/static/images/flags/st.png
 521share/cherokee/admin/static/images/flags/sv.png
 522share/cherokee/admin/static/images/flags/sy.png
 523share/cherokee/admin/static/images/flags/sz.png
 524share/cherokee/admin/static/images/flags/tc.png
 525share/cherokee/admin/static/images/flags/td.png
 526share/cherokee/admin/static/images/flags/tf.png
 527share/cherokee/admin/static/images/flags/tg.png
 528share/cherokee/admin/static/images/flags/th.png
 529share/cherokee/admin/static/images/flags/tj.png
 530share/cherokee/admin/static/images/flags/tk.png
 531share/cherokee/admin/static/images/flags/tl.png
 532share/cherokee/admin/static/images/flags/tm.png
 533share/cherokee/admin/static/images/flags/tn.png
 534share/cherokee/admin/static/images/flags/to.png
 535share/cherokee/admin/static/images/flags/tr.png
 536share/cherokee/admin/static/images/flags/tt.png
 537share/cherokee/admin/static/images/flags/tv.png
 538share/cherokee/admin/static/images/flags/tw.png
 539share/cherokee/admin/static/images/flags/tz.png
 540share/cherokee/admin/static/images/flags/ua.png
 541share/cherokee/admin/static/images/flags/ug.png
 542share/cherokee/admin/static/images/flags/um.png
 543share/cherokee/admin/static/images/flags/us.png
 544share/cherokee/admin/static/images/flags/uy.png
 545share/cherokee/admin/static/images/flags/uz.png
 546share/cherokee/admin/static/images/flags/va.png
 547share/cherokee/admin/static/images/flags/vc.png
 548share/cherokee/admin/static/images/flags/ve.png
 549share/cherokee/admin/static/images/flags/vg.png
 550share/cherokee/admin/static/images/flags/vi.png
 551share/cherokee/admin/static/images/flags/vn.png
 552share/cherokee/admin/static/images/flags/vu.png
 553share/cherokee/admin/static/images/flags/wales.png
 554share/cherokee/admin/static/images/flags/wf.png
 555share/cherokee/admin/static/images/flags/ws.png
 556share/cherokee/admin/static/images/flags/ye.png
 557share/cherokee/admin/static/images/flags/yt.png
 558share/cherokee/admin/static/images/flags/za.png
 559share/cherokee/admin/static/images/flags/zm.png
 560share/cherokee/admin/static/images/flags/zw.png
 561share/cherokee/admin/static/images/general.png
 562share/cherokee/admin/static/images/home.png
 563share/cherokee/admin/static/images/icons.png
 564share/cherokee/admin/static/images/kid-running.png
 565share/cherokee/admin/static/images/kid-stopped.png
 566share/cherokee/admin/static/images/mime.png
 567share/cherokee/admin/static/images/nav-selected.gif
 568share/cherokee/admin/static/images/nav-sep.png
 569share/cherokee/admin/static/images/other/contact-bug.png
 570share/cherokee/admin/static/images/other/contact-irc.png
 571share/cherokee/admin/static/images/other/contact-list.png
 572share/cherokee/admin/static/images/other/facebook.png
 573share/cherokee/admin/static/images/other/octality-logo.png
 574share/cherokee/admin/static/images/other/proud.png
 575share/cherokee/admin/static/images/other/twitter.png
 576share/cherokee/admin/static/images/sources.png
 577share/cherokee/admin/static/images/status.png
 578share/cherokee/admin/static/images/vservers.png
 579share/cherokee/admin/static/images/wizards/alfresco.png
 580share/cherokee/admin/static/images/wizards/aspnet.png
 581share/cherokee/admin/static/images/wizards/coldfusion.png
 582share/cherokee/admin/static/images/wizards/concrete5.png
 583share/cherokee/admin/static/images/wizards/dbslayer.png
 584share/cherokee/admin/static/images/wizards/django.png
 585share/cherokee/admin/static/images/wizards/drupal.png
 586share/cherokee/admin/static/images/wizards/gallery.png
 587share/cherokee/admin/static/images/wizards/glassfish.png
 588share/cherokee/admin/static/images/wizards/hotlinking.png
 589share/cherokee/admin/static/images/wizards/icons.png
 590share/cherokee/admin/static/images/wizards/joomla.png
 591share/cherokee/admin/static/images/wizards/liferay.png
 592share/cherokee/admin/static/images/wizards/mailman.png
 593share/cherokee/admin/static/images/wizards/mediawiki.png
 594share/cherokee/admin/static/images/wizards/moinmoin.png
 595share/cherokee/admin/static/images/wizards/mono.png
 596share/cherokee/admin/static/images/wizards/moodle.png
 597share/cherokee/admin/static/images/wizards/nagios.png
 598share/cherokee/admin/static/images/wizards/php.png
 599share/cherokee/admin/static/images/wizards/phpbb.png
 600share/cherokee/admin/static/images/wizards/phpmyadmin.png
 601share/cherokee/admin/static/images/wizards/rails.png
 602share/cherokee/admin/static/images/wizards/redirect.png
 603share/cherokee/admin/static/images/wizards/rtorrent.png
 604share/cherokee/admin/static/images/wizards/static.png
 605share/cherokee/admin/static/images/wizards/streaming.png
 606share/cherokee/admin/static/images/wizards/sugar.png
 607share/cherokee/admin/static/images/wizards/symfony.png
 608share/cherokee/admin/static/images/wizards/trac.png
 609share/cherokee/admin/static/images/wizards/uwsgi.png
 610share/cherokee/admin/static/images/wizards/wordpress.png
 611share/cherokee/admin/static/images/wizards/zend.png
 612share/cherokee/admin/static/js/SelectionPanel.js
 613share/cherokee/admin/theme.html
 614share/cherokee/admin/upgrade_config.py
 615share/cherokee/admin/util.py
 616share/cherokee/admin/validations.py
 617share/cherokee/admin/wizards/List.py
 618share/cherokee/admin/wizards/alfresco.py
 619share/cherokee/admin/wizards/coldfusion.py
 620share/cherokee/admin/wizards/concrete5.py
 621share/cherokee/admin/wizards/django.py
 622share/cherokee/admin/wizards/drupal.py
 623share/cherokee/admin/wizards/glassfish.py
 624share/cherokee/admin/wizards/hotlinking.py
 625share/cherokee/admin/wizards/icons.py
 626share/cherokee/admin/wizards/joomla.py
 627share/cherokee/admin/wizards/liferay.py
 628share/cherokee/admin/wizards/mailman.py
 629share/cherokee/admin/wizards/mediawiki.py
 630share/cherokee/admin/wizards/moinmoin.py
 631share/cherokee/admin/wizards/mono.py
 632share/cherokee/admin/wizards/php.py
 633share/cherokee/admin/wizards/phpbb.py
 634share/cherokee/admin/wizards/phpmyadmin.py
 635share/cherokee/admin/wizards/rails.py
 636share/cherokee/admin/wizards/redirect.py
 637share/cherokee/admin/wizards/rtorrent.py
 638share/cherokee/admin/wizards/static.py
 639share/cherokee/admin/wizards/streaming.py
 640share/cherokee/admin/wizards/sugar.py
 641share/cherokee/admin/wizards/symfony.py
 642share/cherokee/admin/wizards/trac.py
 643share/cherokee/admin/wizards/uwsgi.py
 644share/cherokee/admin/wizards/wordpress.py
 645share/cherokee/admin/wizards/zend.py
 646share/cherokee/deps/cgi.deps
65share/cherokee/deps/combined.deps 647share/cherokee/deps/combined.deps
66share/cherokee/deps/common.deps 648share/cherokee/deps/common.deps
67share/cherokee/deps/error_redir.deps 649share/cherokee/deps/error_redir.deps
68share/cherokee/deps/nn.deps 650share/cherokee/deps/fcgi.deps
69share/cherokee/deps/phpcgi.deps 651share/cherokee/deps/post_report.deps
70share/cherokee/icons/back.png 652share/cherokee/deps/render_rrd.deps
71share/cherokee/icons/binary.png 653share/cherokee/deps/scgi.deps
 654share/cherokee/deps/secdownload.deps
 655share/cherokee/deps/streaming.deps
 656share/cherokee/deps/uwsgi.deps
 657share/cherokee/icons/README.txt
 658share/cherokee/icons/arrow_turn_left.png
72share/cherokee/icons/blank.png 659share/cherokee/icons/blank.png
73share/cherokee/icons/bomb.png 660share/cherokee/icons/bomb.png
74share/cherokee/icons/compressed.png 661share/cherokee/icons/camera.png
 662share/cherokee/icons/cd.png
 663share/cherokee/icons/color_wheel.png
 664share/cherokee/icons/control_play.png
 665share/cherokee/icons/css.png
 666share/cherokee/icons/cup.png
 667share/cherokee/icons/email.png
 668share/cherokee/icons/film.png
75share/cherokee/icons/folder.png 669share/cherokee/icons/folder.png
76share/cherokee/icons/image.png 670share/cherokee/icons/font.png
77share/cherokee/icons/iso.png 671share/cherokee/icons/html.png
78share/cherokee/icons/java.png 672share/cherokee/icons/music.png
79share/cherokee/icons/movie.png 673share/cherokee/icons/package.png
80share/cherokee/icons/pdf.png 674share/cherokee/icons/page_white.png
81share/cherokee/icons/ps.png 675share/cherokee/icons/page_white_acrobat.png
82share/cherokee/icons/readme.png 676share/cherokee/icons/page_white_actionscript.png
 677share/cherokee/icons/page_white_c.png
 678share/cherokee/icons/page_white_go.png
 679share/cherokee/icons/page_white_office.png
 680share/cherokee/icons/page_white_php.png
 681share/cherokee/icons/page_white_text.png
 682share/cherokee/icons/printer.png
 683share/cherokee/icons/ruby.png
83share/cherokee/icons/script.png 684share/cherokee/icons/script.png
84share/cherokee/icons/sound.png 
85share/cherokee/icons/tex.png 
86share/cherokee/icons/text.png 
87share/cherokee/icons/unknown.png 
88share/cherokee/images/cherokee-logo.png 685share/cherokee/images/cherokee-logo.png
89share/cherokee/images/default-bg.png 686share/cherokee/images/default-bg.png
 687share/cherokee/images/favicon.ico
90share/cherokee/images/powered_by_cherokee.png 688share/cherokee/images/powered_by_cherokee.png
91share/cherokee/index.html 689share/cherokee/index.html
92share/cherokee/mime_types.txt 690share/cherokee/themes/default/entry.html
93share/doc/cherokee/Authentication.html 691share/cherokee/themes/default/footer.html
94share/doc/cherokee/Authors.html 692share/cherokee/themes/default/header.html
95share/doc/cherokee/Behavior_configuration.html 693share/cherokee/themes/default/logo.png
96share/doc/cherokee/CGI_executing.html 694share/cherokee/themes/default/theme.css
97share/doc/cherokee/Cget.html 695share/cherokee/themes/firefox3/entry.html
98share/doc/cherokee/Cherokee-icono.png 696share/cherokee/themes/firefox3/footer.html
99share/doc/cherokee/Combined_logger.html 697share/cherokee/themes/firefox3/header.html
100share/doc/cherokee/Combined_logs.html 698share/cherokee/themes/firefox3/theme.css
101share/doc/cherokee/Common_behavior.html 699share/cherokee/themes/plain/entry.html
102share/doc/cherokee/Comparison_servers.html 700share/cherokee/themes/plain/footer.html
103share/doc/cherokee/Compiling_and_Installing.html 701share/cherokee/themes/plain/header.html
104share/doc/cherokee/Configuration.html 702share/cherokee/themes/plain/theme.css
105share/doc/cherokee/Copying_and_license.html 703share/doc/cherokee/basics.html
106share/doc/cherokee/Current_events.html 704share/doc/cherokee/basics_download.html
107share/doc/cherokee/Directory_configuration.html 705share/doc/cherokee/basics_installation.html
108share/doc/cherokee/Directory_listing.html 706share/doc/cherokee/basics_installation_osx.html
109share/doc/cherokee/Encoders.html 707share/doc/cherokee/basics_installation_svn.html
110share/doc/cherokee/Exquisite-khelpcenter.png 708share/doc/cherokee/basics_installation_unix.html
111share/doc/cherokee/Extension_configuration.html 709share/doc/cherokee/basics_installation_windows.html
112share/doc/cherokee/FastCGI.html 710share/doc/cherokee/basics_requirements.html
113share/doc/cherokee/File_sending.html 711share/doc/cherokee/basics_running_cherokee.html
114share/doc/cherokee/Frequently_asked_questions.html 712share/doc/cherokee/basics_upgrade.html
115share/doc/cherokee/Gzip_encoder.html 713share/doc/cherokee/basics_why_cherokee.html
116share/doc/cherokee/How_to_generate_SSL_keys.html 714share/doc/cherokee/config.html
117share/doc/cherokee/How_to_manage_Virtual_Host.html 715share/doc/cherokee/config_advanced.html
118share/doc/cherokee/Htdigest_validator.html 716share/doc/cherokee/config_general.html
119share/doc/cherokee/Htpasswd_validator.html 717share/doc/cherokee/config_index.html
120share/doc/cherokee/Icons_configuration.html 718share/doc/cherokee/config_info_sources.html
121share/doc/cherokee/Jaws_and_Cherokee_with_FastCGI.html 719share/doc/cherokee/config_quickstart.html
122share/doc/cherokee/Logging_system.html 720share/doc/cherokee/config_status.html
123share/doc/cherokee/Mime_types_configuration.html 721share/doc/cherokee/config_virtual_servers.html
124share/doc/cherokee/NCSA_logger.html 722share/doc/cherokee/config_virtual_servers_evhost.html
125share/doc/cherokee/NCSA_logs.html 723share/doc/cherokee/config_virtual_servers_rule.html
126share/doc/cherokee/PAM_validator.html 724share/doc/cherokee/config_virtual_servers_rule_types.html
127share/doc/cherokee/PHP_execution.html 725share/doc/cherokee/config_wizards.html
128share/doc/cherokee/Plain_validator.html 726share/doc/cherokee/cookbook.html
129share/doc/cherokee/Redirections.html 727share/doc/cherokee/cookbook_alfresco.html
130share/doc/cherokee/Request_configuration.html 728share/doc/cherokee/cookbook_authentication.html
131share/doc/cherokee/Ruby_on_Rails_with_SCGI.html 729share/doc/cherokee/cookbook_coldfusion.html
132share/doc/cherokee/SCGI.html 730share/doc/cherokee/cookbook_concrete5.html
133share/doc/cherokee/Server-conf-small.png 731share/doc/cherokee/cookbook_cross_compilation.html
134share/doc/cherokee/Server_configuration.html 732share/doc/cherokee/cookbook_dbslayer.html
135share/doc/cherokee/U-Cherokee.html 733share/doc/cherokee/cookbook_django.html
136share/doc/cherokee/Validators.html 734share/doc/cherokee/cookbook_drupal.html
137share/doc/cherokee/W3C_logger.html 735share/doc/cherokee/cookbook_embedding_cherokee.html
138share/doc/cherokee/W3C_logs.html 736share/doc/cherokee/cookbook_glassfish.html
139share/doc/cherokee/WebApplications.html 737share/doc/cherokee/cookbook_https_accelerator.html
140share/doc/cherokee/cherokee.png 738share/doc/cherokee/cookbook_joomla.html
 739share/doc/cherokee/cookbook_kumbia.html
 740share/doc/cherokee/cookbook_liferay.html
 741share/doc/cherokee/cookbook_mailman.html
 742share/doc/cherokee/cookbook_maintenance.html
 743share/doc/cherokee/cookbook_managing_logs.html
 744share/doc/cherokee/cookbook_mono.html
 745share/doc/cherokee/cookbook_moodle.html
 746share/doc/cherokee/cookbook_nagios.html
 747share/doc/cherokee/cookbook_optimizations.html
 748share/doc/cherokee/cookbook_php.html
 749share/doc/cherokee/cookbook_phpbb.html
 750share/doc/cherokee/cookbook_phpmyadmin.html
 751share/doc/cherokee/cookbook_redirs.html
 752share/doc/cherokee/cookbook_ror.html
 753share/doc/cherokee/cookbook_ssl.html
 754share/doc/cherokee/cookbook_streaming.html
 755share/doc/cherokee/cookbook_sugarcrm.html
 756share/doc/cherokee/cookbook_symfony.html
 757share/doc/cherokee/cookbook_trac.html
 758share/doc/cherokee/cookbook_uwsgi.html
 759share/doc/cherokee/cookbook_wordpress.html
 760share/doc/cherokee/cookbook_zend.html
 761share/doc/cherokee/dev.html
 762share/doc/cherokee/dev_cherokee.conf.html
 763share/doc/cherokee/dev_debug.html
 764share/doc/cherokee/dev_issues.html
 765share/doc/cherokee/dev_qa.html
141share/doc/cherokee/index.html 766share/doc/cherokee/index.html
142share/examples/cherokee/cherokee/advanced.conf 767share/doc/cherokee/media/css/cherokee_doc.css
 768share/doc/cherokee/media/images/admin_advanced0.png
 769share/doc/cherokee/media/images/admin_advanced1.png
 770share/doc/cherokee/media/images/admin_advanced2.png
 771share/doc/cherokee/media/images/admin_advanced3.png
 772share/doc/cherokee/media/images/admin_advanced4.png
 773share/doc/cherokee/media/images/admin_advanced5.png
 774share/doc/cherokee/media/images/admin_behavior.png
 775share/doc/cherokee/media/images/admin_general.png
 776share/doc/cherokee/media/images/admin_general_icons.png
 777share/doc/cherokee/media/images/admin_general_mime.png
 778share/doc/cherokee/media/images/admin_general_networking.png
 779share/doc/cherokee/media/images/admin_general_permissions.png
 780share/doc/cherokee/media/images/admin_general_ports.png
 781share/doc/cherokee/media/images/admin_handler_admin.png
 782share/doc/cherokee/media/images/admin_handler_cgi.png
 783share/doc/cherokee/media/images/admin_handler_custom_error.png
 784share/doc/cherokee/media/images/admin_handler_dbslayer.png
 785share/doc/cherokee/media/images/admin_handler_dirlist.png
 786share/doc/cherokee/media/images/admin_handler_dirlist_ex.png
 787share/doc/cherokee/media/images/admin_handler_fastcgi1.png
 788share/doc/cherokee/media/images/admin_handler_fastcgi2.png
 789share/doc/cherokee/media/images/admin_handler_file.png
 790share/doc/cherokee/media/images/admin_handler_onlylisting.png
 791share/doc/cherokee/media/images/admin_handler_onlylisting_ex.png
 792share/doc/cherokee/media/images/admin_handler_proxy.png
 793share/doc/cherokee/media/images/admin_handler_secdownload.png
 794share/doc/cherokee/media/images/admin_index.png
 795share/doc/cherokee/media/images/admin_info_sources.png
 796share/doc/cherokee/media/images/admin_launch.png
 797share/doc/cherokee/media/images/admin_noconfig.png
 798share/doc/cherokee/media/images/admin_notrunning.png
 799share/doc/cherokee/media/images/admin_rule_regex.png
 800share/doc/cherokee/media/images/admin_validators_authlist.png
 801share/doc/cherokee/media/images/admin_validators_ldap.png
 802share/doc/cherokee/media/images/admin_validators_pam.png
 803share/doc/cherokee/media/images/admin_validators_plain.png
 804share/doc/cherokee/media/images/admin_vserver.png
 805share/doc/cherokee/media/images/admin_vserver_errors.png
 806share/doc/cherokee/media/images/admin_vserver_evhost.png
 807share/doc/cherokee/media/images/admin_vserver_loggers.png
 808share/doc/cherokee/media/images/admin_vserver_security.png
 809share/doc/cherokee/media/images/admin_vserver_wizard.png
 810share/doc/cherokee/media/images/admin_vservers_wizard.png
 811share/doc/cherokee/media/images/cookbook_alfresco_alfresco.png
 812share/doc/cherokee/media/images/cookbook_alfresco_assistant.png
 813share/doc/cherokee/media/images/cookbook_alfresco_install.png
 814share/doc/cherokee/media/images/cookbook_alfresco_path.png
 815share/doc/cherokee/media/images/cookbook_alfresco_share.png
 816share/doc/cherokee/media/images/cookbook_alfresco_soffice.png
 817share/doc/cherokee/media/images/cookbook_dbslayer1.png
 818share/doc/cherokee/media/images/cookbook_dbslayer2.png
 819share/doc/cherokee/media/images/cookbook_dbslayer3.png
 820share/doc/cherokee/media/images/cookbook_dbslayer4.png
 821share/doc/cherokee/media/images/cookbook_django.png
 822share/doc/cherokee/media/images/cookbook_django_common.png
 823share/doc/cherokee/media/images/cookbook_django_infosources.png
 824share/doc/cherokee/media/images/cookbook_drupal.png
 825share/doc/cherokee/media/images/cookbook_glassfish.png
 826share/doc/cherokee/media/images/cookbook_https_accelerator_handler.png
 827share/doc/cherokee/media/images/cookbook_https_accelerator_sources.png
 828share/doc/cherokee/media/images/cookbook_joomla.png
 829share/doc/cherokee/media/images/cookbook_liferay.png
 830share/doc/cherokee/media/images/cookbook_mailman.png
 831share/doc/cherokee/media/images/cookbook_maintenance_advanced_domains.png
 832share/doc/cherokee/media/images/cookbook_maintenance_advanced_redir.png
 833share/doc/cherokee/media/images/cookbook_maintenance_advanced_rules.png
 834share/doc/cherokee/media/images/cookbook_maintenance_copy.png
 835share/doc/cherokee/media/images/cookbook_maintenance_domain.png
 836share/doc/cherokee/media/images/cookbook_maintenance_error.png
 837share/doc/cherokee/media/images/cookbook_maintenance_result.png
 838share/doc/cherokee/media/images/cookbook_maintenance_rule.png
 839share/doc/cherokee/media/images/cookbook_managing_logs_handler.png
 840share/doc/cherokee/media/images/cookbook_managing_logs_rules.png
 841share/doc/cherokee/media/images/cookbook_managing_logs_security.png
 842share/doc/cherokee/media/images/cookbook_mono_demo.png
 843share/doc/cherokee/media/images/cookbook_mono_handler.png
 844share/doc/cherokee/media/images/cookbook_moodle.png
 845share/doc/cherokee/media/images/cookbook_moodle_db.png
 846share/doc/cherokee/media/images/cookbook_moodle_document_root.png
 847share/doc/cherokee/media/images/cookbook_moodle_modules.png
 848share/doc/cherokee/media/images/cookbook_moodle_paths.png
 849share/doc/cherokee/media/images/cookbook_mysql_rule.png
 850share/doc/cherokee/media/images/cookbook_mysql_validator.png
 851share/doc/cherokee/media/images/cookbook_nagios1.png
 852share/doc/cherokee/media/images/cookbook_nagios2.png
 853share/doc/cherokee/media/images/cookbook_nagios3.png
 854share/doc/cherokee/media/images/cookbook_nagios4.png
 855share/doc/cherokee/media/images/cookbook_phpbb_1_intro.png
 856share/doc/cherokee/media/images/cookbook_phpbb_2_req.png
 857share/doc/cherokee/media/images/cookbook_phpbb_3_db.png
 858share/doc/cherokee/media/images/cookbook_phpbb_4_admin.png
 859share/doc/cherokee/media/images/cookbook_phpbb_5_config.png
 860share/doc/cherokee/media/images/cookbook_phpbb_6_advanced.png
 861share/doc/cherokee/media/images/cookbook_phpbb_7_create.png
 862share/doc/cherokee/media/images/cookbook_phpbb_8_final.png
 863share/doc/cherokee/media/images/cookbook_phpbb_adm.png
 864share/doc/cherokee/media/images/cookbook_phpbb_adm_warning.png
 865share/doc/cherokee/media/images/cookbook_phpbb_rules.png
 866share/doc/cherokee/media/images/cookbook_phpbb_running.png
 867share/doc/cherokee/media/images/cookbook_phpmyadmin.png
 868share/doc/cherokee/media/images/cookbook_phpmyadmin_denied.png
 869share/doc/cherokee/media/images/cookbook_redir_behavior.png
 870share/doc/cherokee/media/images/cookbook_redir_domains.png
 871share/doc/cherokee/media/images/cookbook_redir_handler.png
 872share/doc/cherokee/media/images/cookbook_ror.png
 873share/doc/cherokee/media/images/cookbook_ror_common.png
 874share/doc/cherokee/media/images/cookbook_ror_fcgi.png
 875share/doc/cherokee/media/images/cookbook_ror_wizard.png
 876share/doc/cherokee/media/images/cookbook_sugarcrm_install0.png
 877share/doc/cherokee/media/images/cookbook_sugarcrm_install1.png
 878share/doc/cherokee/media/images/cookbook_sugarcrm_running0.png
 879share/doc/cherokee/media/images/cookbook_sugarcrm_running1.png
 880share/doc/cherokee/media/images/cookbook_symfony.png
 881share/doc/cherokee/media/images/cookbook_trac.png
 882share/doc/cherokee/media/images/cookbook_trac_info.png
 883share/doc/cherokee/media/images/cookbook_trac_rules.png
 884share/doc/cherokee/media/images/cookbook_trac_scgi.png
 885share/doc/cherokee/media/images/cookbook_trac_static.png
 886share/doc/cherokee/media/images/cookbook_wp1.png
 887share/doc/cherokee/media/images/cookbook_wp2.png
 888share/doc/cherokee/media/images/cookbook_wp3.png
 889share/doc/cherokee/media/images/cookbook_wp4.png
 890share/doc/cherokee/media/images/cookbook_wp5.png
 891share/doc/cherokee/media/images/cookbook_zend1.png
 892share/doc/cherokee/media/images/other_graphs_conns.png
 893share/doc/cherokee/media/images/other_graphs_logging.png
 894share/doc/cherokee/media/images/other_graphs_timeouts.png
 895share/doc/cherokee/media/images/other_graphs_traffic.png
 896share/doc/cherokee/media/images/proxy_phase1.png
 897share/doc/cherokee/media/images/proxy_phase2.png
 898share/doc/cherokee/media/images/screencast.png
 899share/doc/cherokee/media/images/tracelor.png
 900share/doc/cherokee/modules.html
 901share/doc/cherokee/modules_balancers.html
 902share/doc/cherokee/modules_balancers_ip_hash.html
 903share/doc/cherokee/modules_balancers_round_robin.html
 904share/doc/cherokee/modules_encoders.html
 905share/doc/cherokee/modules_encoders_deflate.html
 906share/doc/cherokee/modules_encoders_gzip.html
 907share/doc/cherokee/modules_handlers.html
 908share/doc/cherokee/modules_handlers_admin.html
 909share/doc/cherokee/modules_handlers_cgi.html
 910share/doc/cherokee/modules_handlers_common.html
 911share/doc/cherokee/modules_handlers_custom_error.html
 912share/doc/cherokee/modules_handlers_dbslayer.html
 913share/doc/cherokee/modules_handlers_dirlist.html
 914share/doc/cherokee/modules_handlers_empty_gif.html
 915share/doc/cherokee/modules_handlers_fcgi.html
 916share/doc/cherokee/modules_handlers_file.html
 917share/doc/cherokee/modules_handlers_postreport.html
 918share/doc/cherokee/modules_handlers_proxy.html
 919share/doc/cherokee/modules_handlers_redir.html
 920share/doc/cherokee/modules_handlers_scgi.html
 921share/doc/cherokee/modules_handlers_secdownload.html
 922share/doc/cherokee/modules_handlers_server_info.html
 923share/doc/cherokee/modules_handlers_ssi.html
 924share/doc/cherokee/modules_handlers_streaming.html
 925share/doc/cherokee/modules_handlers_uwsgi.html
 926share/doc/cherokee/modules_loggers.html
 927share/doc/cherokee/modules_loggers_combined.html
 928share/doc/cherokee/modules_loggers_custom.html
 929share/doc/cherokee/modules_loggers_ncsa.html
 930share/doc/cherokee/modules_validators.html
 931share/doc/cherokee/modules_validators_authlist.html
 932share/doc/cherokee/modules_validators_htdigest.html
 933share/doc/cherokee/modules_validators_htpasswd.html
 934share/doc/cherokee/modules_validators_ldap.html
 935share/doc/cherokee/modules_validators_mysql.html
 936share/doc/cherokee/modules_validators_pam.html
 937share/doc/cherokee/modules_validators_plain.html
 938share/doc/cherokee/other.html
 939share/doc/cherokee/other_bundle.html
 940share/doc/cherokee/other_bundle_cget.html
 941share/doc/cherokee/other_bundle_cherokee-admin.html
 942share/doc/cherokee/other_bundle_cherokee-config.html
 943share/doc/cherokee/other_bundle_cherokee-tweak.html
 944share/doc/cherokee/other_bundle_cherokee-worker.html
 945share/doc/cherokee/other_bundle_cherokee.html
 946share/doc/cherokee/other_bundle_spawn-fcgi.html
 947share/doc/cherokee/other_community.html
 948share/doc/cherokee/other_errors.html
 949share/doc/cherokee/other_faq.html
 950share/doc/cherokee/other_goodies.html
 951share/doc/cherokee/other_graphs.html
 952share/doc/cherokee/other_signals.html
143share/examples/cherokee/cherokee/cherokee.conf 953share/examples/cherokee/cherokee/cherokee.conf
144share/examples/cherokee/cherokee/icons.conf 954share/examples/cherokee/cherokee/cherokee.conf.perf_sample
145share/examples/cherokee/cherokee/mime.compression.types 
146share/examples/cherokee/cherokee/mime.types 
147share/examples/cherokee/cherokee/mods-available/admin 
148share/examples/cherokee/cherokee/mods-available/ssl 
149share/examples/cherokee/cherokee/sites-available/default 
150share/examples/cherokee/cherokee/sites-available/example.com 
151share/examples/cherokee/cherokee/sites-enabled/default 
152share/examples/cherokee/pam.d/cherokee 955share/examples/cherokee/pam.d/cherokee
153share/examples/rc.d/cherokee 956share/examples/rc.d/cherokee
154@pkgdir share/examples/cherokee/cherokee/ssl 957share/locale/ca/LC_MESSAGES/cherokee.mo
155@pkgdir share/examples/cherokee/cherokee/mods-enabled 958share/locale/de/LC_MESSAGES/cherokee.mo
 959share/locale/en/LC_MESSAGES/cherokee.mo
 960share/locale/es/LC_MESSAGES/cherokee.mo
 961share/locale/fr/LC_MESSAGES/cherokee.mo
 962share/locale/nl/LC_MESSAGES/cherokee.mo
 963share/locale/pl/LC_MESSAGES/cherokee.mo
 964share/locale/pt_BR/LC_MESSAGES/cherokee.mo
 965share/locale/sv_SE/LC_MESSAGES/cherokee.mo
 966share/locale/zh_CN/LC_MESSAGES/cherokee.mo

cvs diff -r1.3 -r1.4 pkgsrc/www/cherokee/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/www/cherokee/Attic/distinfo 2006/09/24 15:40:24 1.3
+++ pkgsrc/www/cherokee/Attic/distinfo 2010/07/11 12:18:55 1.4
@@ -1,9 +1,5 @@ @@ -1,9 +1,5 @@
1$NetBSD: distinfo,v 1.3 2006/09/24 15:40:24 joerg Exp $ 1$NetBSD: distinfo,v 1.4 2010/07/11 12:18:55 obache Exp $
2 2
3SHA1 (cherokee-0.5.3.tar.gz) = 97f436a8e5109eb1420b9ead70f281adac535278 3SHA1 (cherokee-1.0.5.tar.gz) = 61902974f839adbb0459c4df709b4d57f08b7ac2
4RMD160 (cherokee-0.5.3.tar.gz) = adad3e9c0f3b181dda135c931337b1946770bfce 4RMD160 (cherokee-1.0.5.tar.gz) = 00e64a63d861838c6df83b86ce25a518f3331bbb
5Size (cherokee-0.5.3.tar.gz) = 1547870 bytes 5Size (cherokee-1.0.5.tar.gz) = 5364282 bytes
6SHA1 (patch-aa) = 541c40b0ffeedab919f345b4439305a3c7c63dc4 
7SHA1 (patch-ab) = 35008bfd0a665120a91cf891d0aa3520587b5e75 
8SHA1 (patch-ac) = 5523771b9be6fed879634d61c796cad2be15dd9a 
9SHA1 (patch-ad) = 2246b5097b90e6db3464d0ab38579467d1980043 

File Added: pkgsrc/www/cherokee/Attic/options.mk
# $NetBSD: options.mk,v 1.1 2010/07/11 12:18:55 obache Exp $
#

PKG_OPTIONS_VAR=		PKG_OPTIONS.cherokee
PKG_SUPPORTED_OPTIONS+=		geoip ffmpeg inet6 ldap mysql pam ssl threads
PKG_SUGGESTED_OPTIONS+=		inet6 pam ssl threads

.include "../../mk/bsd.options.mk"

PLIST_VARS+=	geoip ldap mysql pam ssl

###
### Threading support.
###
.if !empty(PKG_OPTIONS:Mthreads)
.include "../../mk/pthread.buildlink3.mk"
CONFIGURE_ARGS+=	--enable-pthread
.else
CONFIGURE_ARGS+=	--disable-pthread
.endif


###
### IPv6 support.
###
.if !empty(PKG_OPTIONS:Minet6)
CONFIGURE_ARGS+=	--enable-ipv6
.else
CONFIGURE_ARGS+=	--disable-ipv6
.endif

###
### SSL support.
###
.if !empty(PKG_OPTIONS:Mssl)
PLIST.ssl=		yes
CONFIGURE_ARGS+=	--with-libssl=${SSLBASE}
.include "../../security/openssl/buildlink3.mk"
.else
CONFIGURE_ARGS+=	--without-libssl
.endif

###
### Allow using LDAP for "basic" authentication.
###
.if !empty(PKG_OPTIONS:Mldap)
.include "../../databases/openldap-client/buildlink3.mk"
PLIST.ldap=		yes
CONFIGURE_ARGS+=	--with-ldap=${BUILDLINK_PREFIX.openldap-client}
.else
CONFIGURE_ARGS+=	--without-ldap
.endif

###
### Allow using MySQL for virtual host configuration.
###
.if !empty(PKG_OPTIONS:Mmysql)
.include "../../mk/mysql.buildlink3.mk"
PLIST.mysql=		yes
CONFIGURE_ARGS+=	--with-mysql=${BUILDLINK_PREFIX.mysql-client}/bin/mysql_config
.else
CONFIGURE_ARGS+=	--without-mysql
.endif

###
### GeoIP support
###
.if !empty(PKG_OPTIONS:Mgeoip)
PLIST.geoip=		yes
CONFIGURE_ARGS+=	--with-geoip=${BUILDLINK_PREFIX.GeoIP}
.include "../../net/GeoIP/buildlink3.mk"
.else
CONFIGURE_ARGS+=	--without-geoip
.endif

###
### FFMpeg support
###
.if !empty(PKG_OPTIONS:Mffmpeg)
PLIST.ffmpeg=		yes
CONFIGURE_ARGS+=	--with-ffmpeg=${BUILDLINK_PREFIX.ffmpeg}
.include "../../multimedia/ffmpeg/buildlink3.mk"
.else
CONFIGURE_ARGS+=	--without-ffmpeg
.endif

###
### PAM support
###
.if !empty(PKG_OPTIONS:Mpam)
PLIST.pam=		yes
.include "../../mk/pam.buildlink3.mk"
CONFIGURE_ARGS+=	--enable-pam
.else
CONFIGURE_ARGS+=	--disable-pam
.endif

cvs diff -r1.2 -r1.3 pkgsrc/www/cherokee/files/Attic/cherokee.sh (expand / switch to unified diff)

--- pkgsrc/www/cherokee/files/Attic/cherokee.sh 2006/05/01 10:32:51 1.2
+++ pkgsrc/www/cherokee/files/Attic/cherokee.sh 2010/07/11 12:18:55 1.3
@@ -1,24 +1,24 @@ @@ -1,24 +1,24 @@
1#!@RCD_SCRIPTS_SHELL@ 1#!@RCD_SCRIPTS_SHELL@
2# 2#
3# $NetBSD: cherokee.sh,v 1.2 2006/05/01 10:32:51 jmmv Exp $ 3# $NetBSD: cherokee.sh,v 1.3 2010/07/11 12:18:55 obache Exp $
4# 4#
5# PROVIDE: cherokee 5# PROVIDE: cherokee
6# REQUIRE: DAEMON 6# REQUIRE: DAEMON
7 7
8if [ -f /etc/rc.subr ]; then 8if [ -f /etc/rc.subr ]; then
9 . /etc/rc.subr 9 . /etc/rc.subr
10fi 10fi
11 11
12name="cherokee" 12name="cherokee"
13rcvar=$name 13rcvar=$name
14command="@PREFIX@/sbin/${name}" 14command="@PREFIX@/sbin/${name}"
15command_args="-b" 15command_args="-d"
16required_files="@PKG_SYSCONFDIR@/cherokee/${name}.conf" 16required_files="@PKG_SYSCONFDIR@/cherokee/${name}.conf"
17 17
18if [ -f /etc/rc.subr ]; then 18if [ -f /etc/rc.subr ]; then
19 load_rc_config $name 19 load_rc_config $name
20 run_rc_command "$1" 20 run_rc_command "$1"
21else 21else
22 @ECHO@ -n " ${name}" 22 @ECHO@ -n " ${name}"
23 ${command} ${cherokee_flags} ${command_args} 23 ${command} ${cherokee_flags} ${command_args}
24fi 24fi

File Deleted: pkgsrc/www/cherokee/patches/Attic/patch-aa

File Deleted: pkgsrc/www/cherokee/patches/Attic/patch-ab

File Deleted: pkgsrc/www/cherokee/patches/Attic/patch-ac

File Deleted: pkgsrc/www/cherokee/patches/Attic/patch-ad