privoxy: new package
authorGustavo Zacarias <gustavo@zacarias.com.ar>
Wed, 10 Feb 2016 13:23:30 +0000 (10:23 -0300)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sat, 20 Feb 2016 14:46:38 +0000 (15:46 +0100)
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/Config.in
package/privoxy/Config.in [new file with mode: 0644]
package/privoxy/privoxy.hash [new file with mode: 0644]
package/privoxy/privoxy.mk [new file with mode: 0644]

index 023a1906c02cb48a0c20a23164e0ed77507b78f7..8aa6bb50e8035c7509f842f15e33b500e1619cd7 100644 (file)
@@ -1446,6 +1446,7 @@ endif
        source "package/portmap/Config.in"
        source "package/pppd/Config.in"
        source "package/pptp-linux/Config.in"
+       source "package/privoxy/Config.in"
        source "package/proftpd/Config.in"
        source "package/proxychains-ng/Config.in"
        source "package/ptpd/Config.in"
diff --git a/package/privoxy/Config.in b/package/privoxy/Config.in
new file mode 100644 (file)
index 0000000..8d8d01a
--- /dev/null
@@ -0,0 +1,12 @@
+config BR2_PACKAGE_PRIVOXY
+       bool "privoxy"
+       depends on BR2_USE_MMU # fork()
+       select BR2_PACKAGE_PCRE
+       select BR2_PACKAGE_ZLIB
+       help
+         A non-caching web proxy with advanced filtering capabilities
+         for enhancing privacy, modifying web page data and HTTP
+         headers, controlling access, and removing ads and other
+         obnoxious Internet junk.
+
+         http://www.privoxy.org/
diff --git a/package/privoxy/privoxy.hash b/package/privoxy/privoxy.hash
new file mode 100644 (file)
index 0000000..aea8f2d
--- /dev/null
@@ -0,0 +1,3 @@
+# From http://sourceforge.net/projects/ijbswa/files/Sources/3.0.24%20%28stable%29/
+md5    44a47d1a5000db8cccd61ace0e25e7f7        privoxy-3.0.24-stable-src.tar.gz
+sha1   343c547a9e795ff029a78310963e0c04448975ee        privoxy-3.0.24-stable-src.tar.gz
diff --git a/package/privoxy/privoxy.mk b/package/privoxy/privoxy.mk
new file mode 100644 (file)
index 0000000..4b5a1a6
--- /dev/null
@@ -0,0 +1,16 @@
+################################################################################
+#
+# privoxy
+#
+################################################################################
+
+PRIVOXY_VERSION = 3.0.24
+PRIVOXY_SITE = http://downloads.sourceforge.net/project/ijbswa/Sources/$(PRIVOXY_VERSION)%20%28stable%29
+PRIVOXY_SOURCE = privoxy-$(PRIVOXY_VERSION)-stable-src.tar.gz
+# configure not shipped
+PRIVOXY_AUTORECONF = YES
+PRIVOXY_DEPENDENCIES = pcre zlib
+PRIVOXY_LICENSE = GPLv2+
+PRIVOXY_LICENSE_FILES = LICENSE
+
+$(eval $(autotools-package))