svn commit: r382819 - in head/www: . e2guardian

Renato Botelho garga at FreeBSD.org
Tue Mar 31 14:13:42 UTC 2015


Author: garga
Date: Tue Mar 31 14:13:39 2015
New Revision: 382819
URL: https://svnweb.freebsd.org/changeset/ports/382819
QAT: https://qat.redports.org/buildarchive/r382819/

Log:
  www/e2guardian: NEW PORT - Dansguardian fork with many improvements and bug fixes
  
  e2guardian is a content filtering proxy that works in conjunction with another
  caching proxy such as Squid or Oops. More information can be found in the
  e2guardian man page, the "doc" subdirectory and the in the configuration files.
  
  e2guardian is a fork of DansGuardian and the maintainers fully acknowledge the
  work carried out by and the copyright of Daniel Baron and other contributors to
  the Dansguardian project.
  
  E2Guardian Main features:
  Built-in content scanner plugin system which includes AV scanning.
  Can be configured to have multiple filter configurations including groups
  SSL Inspection and Blanket SSL blocking
  NTLM, Digest, Basic, IP and DNS authentication
  Header analysis and manipulation - you can also manipulate cookies -
  Large file (2GB+) download & scanning support
  Blacklist, Greylist domains
  Deny regular Expressions on urls, body content, and headers
  Deep URL scanning to spot URLs in URLs
  Advanced advert blocking
  Updates to handle all current web technology trends
  Time Based Blocking
  
  WWW: http://e2guardian.org
  
  PR:		197289
  Submitted by:	Marcello Coutinho <marcellocoutinho at gmail.com>

Added:
  head/www/e2guardian/
  head/www/e2guardian/Makefile   (contents, props changed)
  head/www/e2guardian/distinfo   (contents, props changed)
  head/www/e2guardian/pkg-descr   (contents, props changed)
  head/www/e2guardian/pkg-message   (contents, props changed)
  head/www/e2guardian/pkg-plist   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Tue Mar 31 13:48:17 2015	(r382818)
+++ head/www/Makefile	Tue Mar 31 14:13:39 2015	(r382819)
@@ -155,6 +155,7 @@
     SUBDIR += dtse
     SUBDIR += dummyflash
     SUBDIR += e107
+    SUBDIR += e2guardian
     SUBDIR += eaccelerator
     SUBDIR += edbrowse
     SUBDIR += efront

Added: head/www/e2guardian/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/e2guardian/Makefile	Tue Mar 31 14:13:39 2015	(r382819)
@@ -0,0 +1,99 @@
+# Created by: Marcello Coutinho
+# $FreeBSD$
+
+PORTNAME=	e2guardian
+PORTVERSION=	3.0.4
+CATEGORIES=	www
+MASTER_SITES=	GH
+
+MAINTAINER=	marcellocoutinho at gmail.com
+COMMENT=	Dansguardian fork with many improvements and bug fixes
+
+LICENSE=	GPLv2
+
+BUILD_DEPENDS=	rst2man:${PORTSDIR}/textproc/py-docutils
+LIB_DEPENDS=	libpcre.so:${PORTSDIR}/devel/pcre
+
+USE_GITHUB=	yes
+GH_TAGNAME=	${PORTVERSION:S/^/v/}
+USES=		pkgconfig iconv
+HAS_CONFIGURE=	yes
+USE_AUTOTOOLS=	aclocal libtoolize autoheader automake autoconf
+ACLOCAL_ARGS=	-I m4
+AUTOMAKE_ARGS=	--add-missing --copy --foreign
+CONFIGURE_ARGS=	--localstatedir=/var \
+		--with-logdir=/var/log \
+		--with-piddir=/var/run \
+		--enable-fancydm
+
+OPTIONS_DEFINE=	APACHE TRICKLE CLISCAN CLAMD ICAP KAV NTLM DNS EMAIL DEBUG SSL DOCS
+OPTIONS_DEFAULT=TRICKLE DOCS 1024
+OPTIONS_SUB=	yes
+
+APACHE_DESC=	Enable Apache support for access denied page
+TRICKLE_DESC=	Enable the trickle download manager
+CLISCAN_DESC=	Enable support for CLI content scanners
+CLAMD_DESC=	Enable ClamD AV content scanner
+ICAP_DESC=	Enable ICAP AV content scanner support
+KAV_DESC=	Enable Kaspersky AV support
+NTLM_DESC=	Include NTLM authentication plugin
+DNS_DESC=	Include DNS authetication plugin
+EMAIL_DESC=	Enable e-mail reporting support
+
+OPTIONS_RADIO=	DESCRIPTORS
+OPTIONS_RADIO_DESCRIPTORS=	1024 2048 4096 8192
+
+1024_DESC=	Enable default file descriptors
+2048_DESC=	Enable 2048 file descriptors
+4096_DESC=	Enable 4096 file descriptors
+8192_DESC=	Enable 8192 file descriptors
+
+CONFDIR=	${PREFIX}/etc/e2guardian
+
+CPPFLAGS+=	-I${LOCALBASE}/include
+CFLAGS+=	-I${LOCALBASE}/include
+
+APACHE_USE=			APACHE_RUN=22+
+TRICKLE_CONFIGURE_ENABLE=	trickledm
+CLISCAN_CONFIGURE_ENABLE=	commandline
+CLAMD_CONFIGURE_ENABLE=		clamd=yes
+CLAMD_RUN_DEPENDS=		${LOCALBASE}/sbin/clamd:${PORTSDIR}/security/clamav
+ICAP_CONFIGURE_ENABLE=		icap
+KAV_CONFIGURE_ENABLE=		kavd
+NTLM_CONFIGURE_ENABLE=		ntlm
+NTLM_RUN_DEPENDS=		${LOCALBASE}/bin/iconv:${PORTSDIR}/converters/libiconv
+NTLM_USES=			iconv
+DNS_CONFIGURE_ENABLE=		dnsauth
+EMAIL_CONFIGURE_ENABLE=		email
+DEBUG_CONFIGURE_WITH=		dgdebug
+1024_CONFIGURE_ON=		--with-filedescriptors=1024
+2048_CONFIGURE_ON=		--with-filedescriptors=2048
+4096_CONFIGURE_ON=		--with-filedescriptors=4096
+8192_CONFIGURE_ON=		--with-filedescriptors=8192
+SSL_LDFLAGS=			-lssl -lcrypto
+SSL_CFLAGS=			-D__SSLMITM -D__SSLCERT
+
+.include <bsd.port.pre.mk>
+
+pre-configure:
+	@${REINPLACE_CMD} -e 's|.lresolv||g' \
+		${WRKSRC}/configure.ac
+
+.if ${PORT_OPTIONS:MCLAMD} || ${PORT_OPTIONS:MICAP} || \
+    ${PORT_OPTIONS:MKAV} || ${PORT_OPTIONS:MCLISCAN}
+PLIST_SUB+=	SCANNERS=""
+.else
+PLIST_SUB+=	SCANNERS="@comment "
+.endif
+
+post-install:
+	@${FIND} ${STAGEDIR}${ETCDIR} -type f \
+		\( -name '*.conf' -or -name '*list' \) -exec ${MV} {} {}.sample \;
+	@${MV} ${STAGEDIR}${ETCDIR}/lists/authplugins/ipgroups \
+		${STAGEDIR}${ETCDIR}/lists/authplugins/ipgroups.sample
+	@${MV} ${STAGEDIR}${ETCDIR}/lists/authplugins/portgroups \
+		${STAGEDIR}${ETCDIR}/lists/authplugins/portgroups.sample
+	@${MV} ${STAGEDIR}${ETCDIR}/lists/bannedrooms/default \
+		${STAGEDIR}${ETCDIR}/lists/bannedrooms/default.sample
+
+.include <bsd.port.post.mk>

Added: head/www/e2guardian/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/e2guardian/distinfo	Tue Mar 31 14:13:39 2015	(r382819)
@@ -0,0 +1,2 @@
+SHA256 (e2guardian-e2guardian-3.0.4-v3.0.4_GH0.tar.gz) = 8817a0e95f38982520b87bb7cd7b34b7ab752f37bc2307065a82d59960b52530
+SIZE (e2guardian-e2guardian-3.0.4-v3.0.4_GH0.tar.gz) = 793490

Added: head/www/e2guardian/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/e2guardian/pkg-descr	Tue Mar 31 14:13:39 2015	(r382819)
@@ -0,0 +1,23 @@
+e2guardian is a content filtering proxy that works in conjunction with another
+caching proxy such as Squid or Oops. More information can be found in the 
+e2guardian man page, the "doc" subdirectory and the in the configuration files.
+ 
+e2guardian is a fork of DansGuardian and the maintainers fully acknowledge the 
+work carried out by and the copyright of Daniel Baron and other contributors to 
+the Dansguardian project.
+
+E2Guardian Main features:
+Built-in content scanner plugin system which includes AV scanning.
+Can be configured to have multiple filter configurations including groups
+SSL Inspection and Blanket SSL blocking
+NTLM, Digest, Basic, IP and DNS authentication
+Header analysis and manipulation - you can also manipulate cookies -
+Large file (2GB+) download & scanning support
+Blacklist, Greylist domains
+Deny regular Expressions on urls, body content, and headers
+Deep URL scanning to spot URLs in URLs
+Advanced advert blocking
+Updates to handle all current web technology trends
+Time Based Blocking
+
+WWW: http://e2guardian.org

Added: head/www/e2guardian/pkg-message
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/e2guardian/pkg-message	Tue Mar 31 14:13:39 2015	(r382819)
@@ -0,0 +1,10 @@
+===>   Please Note:
+
+*******************************************************************************
+       This port has created a log file named e2guardian.log that can get
+       quite large.  Please read the newsyslog(8) man page for instructions
+       on configuring log rotation and compression.
+
+       This port has been converted using old dansguardian-devel port
+       Let me know how it works (or not). (Patches always welcome.)
+*******************************************************************************

Added: head/www/e2guardian/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/e2guardian/pkg-plist	Tue Mar 31 14:13:39 2015	(r382819)
@@ -0,0 +1,250 @@
+%%DNS%%@sample %%ETCDIR%%/authplugins/dnsauth.conf.sample
+ at sample %%ETCDIR%%/authplugins/ident.conf.sample
+ at sample %%ETCDIR%%/authplugins/ip.conf.sample
+ at sample %%ETCDIR%%/authplugins/port.conf.sample
+ at sample %%ETCDIR%%/authplugins/proxy-basic.conf.sample
+ at sample %%ETCDIR%%/authplugins/proxy-digest.conf.sample
+%%TRICKLE%%@sample %%ETCDIR%%/downloadmanagers/trickle.conf.sample
+%%NTLM%%@sample %%ETCDIR%%/authplugins/proxy-ntlm.conf.sample
+%%CLAMD%%@sample %%ETCDIR%%/contentscanners/clamdscan.conf.sample
+%%ICAP%%@sample %%ETCDIR%%/contentscanners/icapscan.conf.sample
+%%CLISCAN%%@sample %%ETCDIR%%/contentscanners/commandlinescan.conf.sample
+%%KAV%%@sample %%ETCDIR%%/contentscanners/kavdscan.conf.sample
+ at sample %%ETCDIR%%/downloadmanagers/default.conf.sample
+ at sample %%ETCDIR%%/downloadmanagers/fancy.conf.sample
+ at sample %%ETCDIR%%/e2guardian.conf.sample
+ at sample %%ETCDIR%%/e2guardianf1.conf.sample
+%%ETCDIR%%/installation_or_migration_from_dg.sh
+ at sample %%ETCDIR%%/lists/addheaderregexplist.sample
+ at sample %%ETCDIR%%/lists/authexceptionsitelist.sample
+ at sample %%ETCDIR%%/lists/authexceptionurllist.sample
+ at sample %%ETCDIR%%/lists/authplugins/ipgroups.sample
+ at sample %%ETCDIR%%/lists/authplugins/portgroups.sample
+ at sample %%ETCDIR%%/lists/bannedextensionlist.sample
+ at sample %%ETCDIR%%/lists/bannediplist.sample
+ at sample %%ETCDIR%%/lists/bannedmimetypelist.sample
+ at sample %%ETCDIR%%/lists/bannedphraselist.sample
+ at sample %%ETCDIR%%/lists/bannedregexpheaderlist.sample
+ at sample %%ETCDIR%%/lists/bannedregexpurllist.sample
+ at sample %%ETCDIR%%/lists/bannedrooms/default.sample
+ at sample %%ETCDIR%%/lists/bannedsearchlist.sample
+ at sample %%ETCDIR%%/lists/bannedsitelist.sample
+ at sample %%ETCDIR%%/lists/bannedsslsitelist.sample
+ at sample %%ETCDIR%%/lists/bannedurllist.sample
+%%ETCDIR%%/lists/blacklists/ads/domains
+%%ETCDIR%%/lists/blacklists/ads/urls
+ at sample %%ETCDIR%%/lists/contentregexplist.sample
+%%SCANNERS%%@sample %%ETCDIR%%/lists/contentscanners/exceptionvirusextensionlist.sample
+%%SCANNERS%%@sample %%ETCDIR%%/lists/contentscanners/exceptionvirusmimetypelist.sample
+%%SCANNERS%%@sample %%ETCDIR%%/lists/contentscanners/exceptionvirussitelist.sample
+%%SCANNERS%%@sample %%ETCDIR%%/lists/contentscanners/exceptionvirusurllist.sample
+ at sample %%ETCDIR%%/lists/downloadmanagers/managedextensionlist.sample
+ at sample %%ETCDIR%%/lists/downloadmanagers/managedmimetypelist.sample
+ at sample %%ETCDIR%%/lists/embededreferersitelist.sample
+ at sample %%ETCDIR%%/lists/embededrefererurllist.sample
+ at sample %%ETCDIR%%/lists/exceptionextensionlist.sample
+ at sample %%ETCDIR%%/lists/exceptionfilesitelist.sample
+ at sample %%ETCDIR%%/lists/exceptionfileurllist.sample
+ at sample %%ETCDIR%%/lists/exceptioniplist.sample
+ at sample %%ETCDIR%%/lists/exceptionmimetypelist.sample
+ at sample %%ETCDIR%%/lists/exceptionphraselist.sample
+ at sample %%ETCDIR%%/lists/exceptionregexpurllist.sample
+ at sample %%ETCDIR%%/lists/exceptionsitelist.sample
+ at sample %%ETCDIR%%/lists/exceptionurllist.sample
+ at sample %%ETCDIR%%/lists/filtergroupslist.sample
+ at sample %%ETCDIR%%/lists/greysitelist.sample
+ at sample %%ETCDIR%%/lists/greysslsitelist.sample
+ at sample %%ETCDIR%%/lists/greyurllist.sample
+ at sample %%ETCDIR%%/lists/headerregexplist.sample
+ at sample %%ETCDIR%%/lists/localbannedsearchlist.sample
+ at sample %%ETCDIR%%/lists/localbannedsitelist.sample
+ at sample %%ETCDIR%%/lists/localbannedsslsitelist.sample
+ at sample %%ETCDIR%%/lists/localbannedurllist.sample
+ at sample %%ETCDIR%%/lists/localexceptionsitelist.sample
+ at sample %%ETCDIR%%/lists/localexceptionurllist.sample
+ at sample %%ETCDIR%%/lists/localgreysitelist.sample
+ at sample %%ETCDIR%%/lists/localgreysslsitelist.sample
+ at sample %%ETCDIR%%/lists/localgreyurllist.sample
+ at sample %%ETCDIR%%/lists/logregexpurllist.sample
+ at sample %%ETCDIR%%/lists/logsitelist.sample
+ at sample %%ETCDIR%%/lists/logurllist.sample
+%%ETCDIR%%/lists/phraselists/badwords/weighted_dutch
+%%ETCDIR%%/lists/phraselists/badwords/weighted_french
+%%ETCDIR%%/lists/phraselists/badwords/weighted_german
+%%ETCDIR%%/lists/phraselists/badwords/weighted_portuguese
+%%ETCDIR%%/lists/phraselists/badwords/weighted_spanish
+%%ETCDIR%%/lists/phraselists/chat/weighted
+%%ETCDIR%%/lists/phraselists/chat/weighted_italian
+%%ETCDIR%%/lists/phraselists/conspiracy/weighted
+%%ETCDIR%%/lists/phraselists/domainsforsale/weighted
+%%ETCDIR%%/lists/phraselists/drugadvocacy/weighted
+%%ETCDIR%%/lists/phraselists/forums/weighted
+%%ETCDIR%%/lists/phraselists/gambling/banned
+%%ETCDIR%%/lists/phraselists/gambling/banned_portuguese
+%%ETCDIR%%/lists/phraselists/gambling/weighted
+%%ETCDIR%%/lists/phraselists/gambling/weighted_portuguese
+%%ETCDIR%%/lists/phraselists/games/weighted
+%%ETCDIR%%/lists/phraselists/goodphrases/exception
+%%ETCDIR%%/lists/phraselists/goodphrases/exception_email
+%%ETCDIR%%/lists/phraselists/goodphrases/weighted_general
+%%ETCDIR%%/lists/phraselists/goodphrases/weighted_general_danish
+%%ETCDIR%%/lists/phraselists/goodphrases/weighted_general_dutch
+%%ETCDIR%%/lists/phraselists/goodphrases/weighted_general_malay
+%%ETCDIR%%/lists/phraselists/goodphrases/weighted_general_polish
+%%ETCDIR%%/lists/phraselists/goodphrases/weighted_general_portuguese
+%%ETCDIR%%/lists/phraselists/goodphrases/weighted_general_swedish
+%%ETCDIR%%/lists/phraselists/goodphrases/weighted_news
+%%ETCDIR%%/lists/phraselists/googlesearches/banned
+%%ETCDIR%%/lists/phraselists/gore/weighted
+%%ETCDIR%%/lists/phraselists/gore/weighted_portuguese
+%%ETCDIR%%/lists/phraselists/idtheft/weighted
+%%ETCDIR%%/lists/phraselists/illegaldrugs/banned
+%%ETCDIR%%/lists/phraselists/illegaldrugs/weighted
+%%ETCDIR%%/lists/phraselists/illegaldrugs/weighted_portuguese
+%%ETCDIR%%/lists/phraselists/intolerance/banned_portuguese
+%%ETCDIR%%/lists/phraselists/intolerance/weighted
+%%ETCDIR%%/lists/phraselists/intolerance/weighted_portuguese
+%%ETCDIR%%/lists/phraselists/legaldrugs/weighted
+%%ETCDIR%%/lists/phraselists/malware/weighted
+%%ETCDIR%%/lists/phraselists/music/weighted
+%%ETCDIR%%/lists/phraselists/news/weighted
+%%ETCDIR%%/lists/phraselists/nudism/weighted
+%%ETCDIR%%/lists/phraselists/peer2peer/weighted
+%%ETCDIR%%/lists/phraselists/personals/weighted
+%%ETCDIR%%/lists/phraselists/personals/weighted_portuguese
+%%ETCDIR%%/lists/phraselists/pornography/banned
+%%ETCDIR%%/lists/phraselists/pornography/banned_portuguese
+%%ETCDIR%%/lists/phraselists/pornography/weighted
+%%ETCDIR%%/lists/phraselists/pornography/weighted_chinese
+%%ETCDIR%%/lists/phraselists/pornography/weighted_danish
+%%ETCDIR%%/lists/phraselists/pornography/weighted_dutch
+%%ETCDIR%%/lists/phraselists/pornography/weighted_french
+%%ETCDIR%%/lists/phraselists/pornography/weighted_german
+%%ETCDIR%%/lists/phraselists/pornography/weighted_italian
+%%ETCDIR%%/lists/phraselists/pornography/weighted_japanese
+%%ETCDIR%%/lists/phraselists/pornography/weighted_malay
+%%ETCDIR%%/lists/phraselists/pornography/weighted_norwegian
+%%ETCDIR%%/lists/phraselists/pornography/weighted_polish
+%%ETCDIR%%/lists/phraselists/pornography/weighted_portuguese
+%%ETCDIR%%/lists/phraselists/pornography/weighted_russian
+%%ETCDIR%%/lists/phraselists/pornography/weighted_russian_utf8
+%%ETCDIR%%/lists/phraselists/pornography/weighted_spanish
+%%ETCDIR%%/lists/phraselists/pornography/weighted_swedish
+%%ETCDIR%%/lists/phraselists/proxies/weighted
+%%ETCDIR%%/lists/phraselists/rta/banned
+%%ETCDIR%%/lists/phraselists/safelabel/banned
+%%ETCDIR%%/lists/phraselists/secretsocieties/weighted
+%%ETCDIR%%/lists/phraselists/sport/weighted
+%%ETCDIR%%/lists/phraselists/translation/weighted
+%%ETCDIR%%/lists/phraselists/travel/weighted
+%%ETCDIR%%/lists/phraselists/upstreamfilter/weighted
+%%ETCDIR%%/lists/phraselists/violence/weighted
+%%ETCDIR%%/lists/phraselists/violence/weighted_portuguese
+%%ETCDIR%%/lists/phraselists/warezhacking/weighted
+%%ETCDIR%%/lists/phraselists/weapons/weighted
+%%ETCDIR%%/lists/phraselists/weapons/weighted_portuguese
+%%ETCDIR%%/lists/phraselists/webmail/weighted
+%%ETCDIR%%/lists/pics
+ at sample %%ETCDIR%%/lists/refererexceptionsitelist.sample
+ at sample %%ETCDIR%%/lists/refererexceptionurllist.sample
+ at sample %%ETCDIR%%/lists/searchregexplist.sample
+ at sample %%ETCDIR%%/lists/urlredirectregexplist.sample
+ at sample %%ETCDIR%%/lists/urlregexplist.sample
+ at sample %%ETCDIR%%/lists/weightedphraselist.sample
+man/man8/e2guardian.8.gz
+sbin/e2guardian
+%%PORTDOCS%%%%DOCSDIR%%/AuthPlugins
+%%PORTDOCS%%%%DOCSDIR%%/ContentScanners
+%%PORTDOCS%%%%DOCSDIR%%/DownloadManagers
+%%PORTDOCS%%%%DOCSDIR%%/FAQ
+%%PORTDOCS%%%%DOCSDIR%%/FAQ.html
+%%PORTDOCS%%%%DOCSDIR%%/Plugins
+%%DATADIR%%/e2guardian.pl
+%%DATADIR%%/languages/arspanish/fancydmtemplate.html
+%%DATADIR%%/languages/arspanish/messages
+%%DATADIR%%/languages/arspanish/template.html
+%%DATADIR%%/languages/bulgarian/fancydmtemplate.html
+%%DATADIR%%/languages/bulgarian/messages
+%%DATADIR%%/languages/bulgarian/template.html
+%%DATADIR%%/languages/chinesebig5/fancydmtemplate.html
+%%DATADIR%%/languages/chinesebig5/messages
+%%DATADIR%%/languages/chinesebig5/template.html
+%%DATADIR%%/languages/chinesegb2312/fancydmtemplate.html
+%%DATADIR%%/languages/chinesegb2312/messages
+%%DATADIR%%/languages/chinesegb2312/template.html
+%%DATADIR%%/languages/czech/fancydmtemplate.html
+%%DATADIR%%/languages/czech/messages
+%%DATADIR%%/languages/czech/template.html
+%%DATADIR%%/languages/danish/fancydmtemplate.html
+%%DATADIR%%/languages/danish/messages
+%%DATADIR%%/languages/danish/template.html
+%%DATADIR%%/languages/dutch/fancydmtemplate.html
+%%DATADIR%%/languages/dutch/messages
+%%DATADIR%%/languages/dutch/template.html
+%%DATADIR%%/languages/french/fancydmtemplate.html
+%%DATADIR%%/languages/french/messages
+%%DATADIR%%/languages/french/template.html
+%%DATADIR%%/languages/german/fancydmtemplate.html
+%%DATADIR%%/languages/german/messages
+%%DATADIR%%/languages/german/template.html
+%%DATADIR%%/languages/hebrew/fancydmtemplate.html
+%%DATADIR%%/languages/hebrew/messages
+%%DATADIR%%/languages/hebrew/template.html
+%%DATADIR%%/languages/hungarian/fancydmtemplate.html
+%%DATADIR%%/languages/hungarian/messages
+%%DATADIR%%/languages/hungarian/template.html
+%%DATADIR%%/languages/indonesian/fancydmtemplate.html
+%%DATADIR%%/languages/indonesian/messages
+%%DATADIR%%/languages/indonesian/template.html
+%%DATADIR%%/languages/italian/fancydmtemplate.html
+%%DATADIR%%/languages/italian/messages
+%%DATADIR%%/languages/italian/template.html
+%%DATADIR%%/languages/japanese/fancydmtemplate.html
+%%DATADIR%%/languages/japanese/messages
+%%DATADIR%%/languages/japanese/template.html
+%%DATADIR%%/languages/lithuanian/fancydmtemplate.html
+%%DATADIR%%/languages/lithuanian/messages
+%%DATADIR%%/languages/lithuanian/template.html
+%%DATADIR%%/languages/malay/fancydmtemplate.html
+%%DATADIR%%/languages/malay/messages
+%%DATADIR%%/languages/malay/template.html
+%%DATADIR%%/languages/mxspanish/fancydmtemplate.html
+%%DATADIR%%/languages/mxspanish/messages
+%%DATADIR%%/languages/mxspanish/template.html
+%%DATADIR%%/languages/polish/fancydmtemplate.html
+%%DATADIR%%/languages/polish/messages
+%%DATADIR%%/languages/polish/template.html
+%%DATADIR%%/languages/portuguese/fancydmtemplate.html
+%%DATADIR%%/languages/portuguese/messages
+%%DATADIR%%/languages/portuguese/template.html
+%%DATADIR%%/languages/ptbrazilian/fancydmtemplate.html
+%%DATADIR%%/languages/ptbrazilian/messages
+%%DATADIR%%/languages/ptbrazilian/template.html
+%%DATADIR%%/languages/russian-1251/fancydmtemplate.html
+%%DATADIR%%/languages/russian-1251/messages
+%%DATADIR%%/languages/russian-1251/template.html
+%%DATADIR%%/languages/russian-koi8-r/fancydmtemplate.html
+%%DATADIR%%/languages/russian-koi8-r/messages
+%%DATADIR%%/languages/russian-koi8-r/template.html
+%%DATADIR%%/languages/slovak/fancydmtemplate.html
+%%DATADIR%%/languages/slovak/messages
+%%DATADIR%%/languages/slovak/template.html
+%%DATADIR%%/languages/spanish/fancydmtemplate.html
+%%DATADIR%%/languages/spanish/messages
+%%DATADIR%%/languages/spanish/template.html
+%%DATADIR%%/languages/swedish/fancydmtemplate.html
+%%DATADIR%%/languages/swedish/messages
+%%DATADIR%%/languages/swedish/template.html
+%%DATADIR%%/languages/turkish/fancydmtemplate.html
+%%DATADIR%%/languages/turkish/messages
+%%DATADIR%%/languages/turkish/template.html
+%%DATADIR%%/languages/ukenglish/fancydmtemplate.html
+%%DATADIR%%/languages/ukenglish/messages
+%%DATADIR%%/languages/ukenglish/template.html
+%%DATADIR%%/scripts/bsd-init
+%%DATADIR%%/scripts/e2guardian
+%%DATADIR%%/scripts/logrotation
+%%DATADIR%%/scripts/solaris-init
+%%DATADIR%%/scripts/systemv-init
+%%DATADIR%%/transparent1x1.gif
+%%DATADIR%%/blockedflash.swf


More information about the svn-ports-head mailing list