Update of /cvsroot/fink/dists/10.2/unstable/main/finkinfo/web
In directory usw-pr-cvs1:/tmp/cvs-serv24613
Added Files:
junkbuster-2.0.2-1.info junkbuster-2.0.2-1.patch
tidy-20020822-1.info
Log Message:
10.2 ok
--- NEW FILE: junkbuster-2.0.2-1.info ---
Package: junkbuster
Version: 2.0.2
Revision: 1
BuildDepends: libxml2, gdbm, gmp, expat, tcltk-dev
Depends: daemonic
Source: http://www.junkbusters.com/ijb20.tar.Z
SourceRename: junkbuster-%v.tar.Z
SourceDirectory: ijb20
#Patch: %f.patch
PatchScript: <<
perl -pi -e 's/\r\n$/\n/g' *.ini
patch -p1 < %a/%f.patch
perl -pi -e '$p=qw(%p);s/\@PREFIX\@/$p/' junkbstr.ini
<<
CompileScript: make
#
InstallScript: <<
mkdir -p %d%p/sbin
mkdir -p %d%p/etc/junkbuster
mkdir -p %d%p/share/man/man1
cp junkbuster %d%p/sbin
cp junkbuster.1 %d%p/share/man/man1
cp junkbstr.ini %d%p/etc/junkbuster
cp sblock.ini %d%p/etc/junkbuster
cp scookie.ini %d%p/etc/junkbuster
cp saclfile.ini %d%p/etc/junkbuster
cp sforward.ini %d%p/etc/junkbuster
cp strust.ini %d%p/etc/junkbuster
<<
#
DocFiles: README gpl.html ijbman.html ijbfaq.html
#
ConfFiles: <<
%p/etc/junkbuster/junkbstr.ini
%p/etc/junkbuster/sblock.ini
%p/etc/junkbuster/scookie.ini
%p/etc/junkbuster/saclfile.ini
%p/etc/junkbuster/sforward.ini
%p/etc/junkbuster/strust.ini
<<
#
DaemonicFile: <<
<service>
<description>Internet Junkbuster Proxy (TM)</description>
<message>Internet Junkbuster Proxy</message>
<daemon name="junkbuster">
<executable background="true">%p/sbin/junkbuster
%p/etc/junkbuster/junkbstr.ini</executable>
<configfile>%p/etc/junkbuster/junkbstr.ini</configfile>
</daemon>
</service>
<<
#
PreRmScript: <<
# clean up
if [ $1 != "upgrade" ]; then
daemonic remove junkbuster
fi
<<
#
Description: The Internet Junkbuster Proxy (TM)
DescDetail: <<
The Internet Junkbuster Proxy (TM) blocks unwanted banner ads and
protects your privacy from cookies and other threats.
<<
#
DescUsage: <<
edit the configuration files in /sw/etc/junkbuster to fit your needs.
in the default configuration, you can just run
'daemonic enable junkbuster'
and in your browser set the proxy to
localhost 8080
note: junkbuster doesn't handle keep alive connections correctly. in mozilla,
you can circumvent problems by switching off keep alive in the
debug/networking settings.
<<
License: GPL
Homepage: http://internet.junkbuster.com/
Maintainer: Kilian Koepsell <[EMAIL PROTECTED]>
--- NEW FILE: junkbuster-2.0.2-1.patch ---
diff -ru ijb20/Makefile ../ijb20/Makefile
--- ijb20/Makefile Sat Oct 31 03:58:47 1998
+++ ../ijb20/Makefile Tue Nov 13 16:09:29 2001
@@ -47,10 +47,13 @@
#MORE_CFLAGS = -relax_pointers
#LDFLAGS = -map junkbuster.xMAP
+# these settings are for darwin
+LDFLAGS = -lm
+
CFLAGS = $(DEFAULT_CFLAGS) $(MORE_CFLAGS)
OBJS = jcc.$(O) parsers.$(O) filters.$(O) loaders.$(O) bind.$(O) conn.$(O) \
- encode.$(O) ssplit.$(O) socks4.$(O) acl.$(O) gnu_regex.$(O) win32.$(O)
+ encode.$(O) ssplit.$(O) socks4.$(O) acl.$(O) win32.$(O)
$(PROG): $(OBJS)
$(CC) $(CFLAGS) -o $(PROG) $(OBJS) $(LDFLAGS)
diff -ru ijb20/junkbstr.ini ../ijb20/junkbstr.ini
--- ijb20/junkbstr.ini Tue Nov 13 15:06:23 2001
+++ ../ijb20/junkbstr.ini Tue Nov 13 15:06:33 2001
@@ -16,31 +16,28 @@
# Many example lines are provided here commented out
# the blockfile contains patterns to be blocked by the proxy
-blockfile sblock.ini # comments are OK here, too
#
-# or can use full paths for files, like so
-#
-#blockfile /usr/local/lib/junkbusters/blockfile
+blockfile @PREFIX@/etc/junkbuster/sblock.ini
# the cookiefile contains patterns to specify the cookie management policy
#
-cookiefile scookie.ini
+cookiefile @PREFIX@/etc/junkbuster/scookie.ini
# the logfile is where all logging and error messages are written
#
-#logfile logfile
+#logfile @PREFIX@/var/log/junkbuster.log
# the jarfile is where cookies can be stored
#
-#jarfile jarfile
+#jarfile @PREFIX@/etc/junkbuster/cookies.jar
# the forwardfile defines domain-specific routing
#
-#forwardfile sforward.ini
+#forwardfile @PREFIX@/etc/junkbuster/sforward.ini
# file which lists and into which trusted domains are written
#
-#trustfile strust.ini
+#trustfile @PREFIX@/etc/junkbuster/strust.ini
# files specify locations of "for information about trusted referers, see.."
# multiple trust_info_url lines are OK
#
@@ -51,7 +48,7 @@
# The access control list file can be used to restrict IP addresses
# that are permitted to use the proxy (see warnings in the FAQ).
#
-#aclfile saclfile.ini
+#aclfile @PREFIX@/etc/junkbuster/saclfile.ini
# add an "X-Forwarded-For:" specification to each request header
#
@@ -89,6 +86,7 @@
#listen-address 124.207.250.245:8080
# to explicitly state what is now the default:
#listen-address localhost
+listen-address localhost:8080
# user-agent specifies treatment of the "User-Agent:" (and "UA-*:") header(s)
#user-agent @
diff -ru ijb20/loaders.c ../ijb20/loaders.c
--- ijb20/loaders.c Sat Oct 31 03:58:47 1998
+++ ../ijb20/loaders.c Tue Nov 13 16:18:02 2001
@@ -8,7 +8,7 @@
#include <stdlib.h>
#include <sys/types.h>
#include <string.h>
-#include <malloc.h>
+#include <sys/malloc.h>
#include <errno.h>
#include <sys/stat.h>
#include <ctype.h>
@@ -1160,7 +1160,7 @@
extern char *acl_rcs, *bind_rcs, *conn_rcs, *encode_rcs,
*jcc_rcs, *loaders_rcs, *parsers_rcs, *filters_rcs,
- *socks4_rcs, *ssplit_rcs, *gnu_regex_rcs, *win32_rcs;
+ *socks4_rcs, *ssplit_rcs, *win32_rcs;
b = strsav(b, "<h2>Source versions:</h2>\n");
b = strsav(b, "<pre>");
@@ -1174,7 +1174,6 @@
sprintf(buf, "%s\n", socks4_rcs ); b = strsav(b, buf);
sprintf(buf, "%s\n", ssplit_rcs ); b = strsav(b, buf);
sprintf(buf, "%s\n", acl_rcs ); b = strsav(b, buf);
- sprintf(buf, "%s\n", gnu_regex_rcs ); b = strsav(b, buf);
sprintf(buf, "%s\n", win32_rcs ); b = strsav(b, buf);
b = strsav(b, "</pre>");
--- NEW FILE: tidy-20020822-1.info ---
Package: tidy
Version: 20020822
Revision: 1
Maintainer: Sylvain Cuaz <[EMAIL PROTECTED]>
#
Source: http://tidy.sourceforge.net/src/tidy_src_020822.tgz
Source-MD5: 52472b0f60d1c9e10391b7afc0e04c1d
Source2: http://tidy.sourceforge.net/docs/tidy_docs_020407.tgz
Source2-MD5: b00b66264fafbca56aba0bf74a6ecc30
SourceDirectory: %n
PatchScript: <<
mv Makefile Makefile.orig
sed -e 's/gcc/cc/' -e 's:/usr/local/man/:%i/share/man/:' -e 's:/usr/local:%i:' -e
's:chgrp bin tidy:chgrp wheel tidy:' -e 's:chown bin tidy:chown root tidy:' <
Makefile.orig > Makefile
head -n 52 src/tidy.c | tail -n 30 > COPYRIGHT
<<
CompileScript: make
InstallScript: <<
make install
mkdir -p %i/share/doc
cp -R htmldoc %i/share/doc/%n
<<
DocFiles: COPYRIGHT
Homepage: http://tidy.sourceforge.net
Description: Utility to tidy up HTML code.
DescDetail: <<
When editing HTML it's easy to make mistakes. Wouldn't it be nice if there was a
simple way to fix these mistakes automatically and tidy up sloppy editing into nicely
layed out markup? Well now there is! Dave Raggett's HTML TIDY is a free utility for
doing just that. It also works great on the atrociously hard to read markup generated
by specialized HTML editors and conversion tools, and can help you identify where you
need to pay further attention on making your pages more accessible to people with
disabilities.
<<
DescUsage: tidy messy.html > tidied-up.html
DescPackaging: <<
This program does not use configure.
The copyright notice is in "tidy.c".
<<
DescPort: <<
Patch the Makefile so that it compiles with cc
and install correctly in %p
<<
License: OSI-Approved
-------------------------------------------------------
This sf.net email is sponsored by: Jabber - The world's fastest growing
real-time communications platform! Don't just IM. Build it in!
http://www.jabber.com/osdn/xim
_______________________________________________
Fink-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-commits