privoxy: new upstream version 3.0.23
new upstream version 3.0.23 Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
This commit is contained in:
parent
fd2e9f0750
commit
4437e87f93
1 changed files with 36 additions and 24 deletions
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# Copyright (C) 2006-2014 OpenWrt.org
|
# Copyright (C) 2006-2015 OpenWrt.org
|
||||||
#
|
#
|
||||||
# This is free software, licensed under the GNU General Public License v2.
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
# See /LICENSE for more information.
|
# See /LICENSE for more information.
|
||||||
|
@ -8,42 +8,53 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=privoxy
|
PKG_NAME:=privoxy
|
||||||
PKG_VERSION:=3.0.22
|
PKG_VERSION:=3.0.23
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-stable-src.tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-stable-src.tar.gz
|
||||||
PKG_SOURCE_URL:=@SF/ijbswa
|
PKG_SOURCE_URL:=@SF/ijbswa
|
||||||
PKG_MD5SUM:=aa121751d332a51d37d3c6e4b7594daa
|
PKG_MD5SUM:=bbe47d5ff1a54d9f9fc93a160532697f
|
||||||
|
|
||||||
PKG_LICENSE:=GPL-2.0
|
|
||||||
PKG_LICENSE_FILES:=LICENSE
|
|
||||||
|
|
||||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)-stable
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)-stable
|
||||||
PKG_FIXUP:=autoreconf
|
PKG_FIXUP:=autoreconf
|
||||||
PKG_INSTALL:=1
|
PKG_INSTALL:=1
|
||||||
|
|
||||||
|
PKG_LICENSE:=GPL-2.0
|
||||||
|
PKG_LICENSE_FILES:=LICENSE
|
||||||
|
|
||||||
PKG_MAINTAINER:=christian.schoenebeck@gmail.com
|
PKG_MAINTAINER:=christian.schoenebeck@gmail.com
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
define Package/privoxy
|
define Package/$(PKG_NAME)
|
||||||
SECTION:=net
|
SECTION:=net
|
||||||
CATEGORY:=Network
|
CATEGORY:=Network
|
||||||
SUBMENU:=Web Servers/Proxies
|
SUBMENU:=Web Servers/Proxies
|
||||||
DEPENDS:=+libpcre +libpthread +zlib
|
DEPENDS:=+libpcre +libpthread +zlib
|
||||||
TITLE:=web proxy with advanced filtering capabilities
|
TITLE:=Privoxy WEB Proxy
|
||||||
URL:=http://www.privoxy.org/
|
URL:=http://www.privoxy.org/
|
||||||
USERID:=privoxy=8118:privoxy=8118
|
USERID:=privoxy=8118:privoxy=8118
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/privoxy/description
|
# shown in LuCI package description
|
||||||
Privoxy is a web proxy with advanced filtering capabilities for
|
define Package/$(PKG_NAME)/description
|
||||||
protecting privacy, modifying web page content, managing cookies,
|
$(TITLE) - Homepage: www.privoxy.org
|
||||||
controlling access, and removing ads, banners, pop-ups and other
|
endef
|
||||||
obnoxious Internet junk. Privoxy has a very flexible configuration
|
|
||||||
and can be customized to suit individual needs and tastes. Privoxy
|
# shown in make menuconfig <Help>
|
||||||
has application for both stand-alone systems and multi-user networks.
|
define Package/$(PKG_NAME)/config
|
||||||
Version: $(PKG_VERSION)-$(PKG_RELEASE)
|
help
|
||||||
|
Privoxy is a web proxy with advanced filtering capabilities for protecting
|
||||||
|
privacy, modifying web page content, managing cookies, controlling access,
|
||||||
|
and removing ads, banners, pop-ups and other obnoxious Internet junk.
|
||||||
|
Privoxy has a very flexible configuration and can be customized to suit
|
||||||
|
individual needs and tastes.
|
||||||
|
Privoxy has application for both stand-alone systems and multi-user networks.
|
||||||
|
|
||||||
|
Run as : $(USERID)
|
||||||
|
Version: $(PKG_VERSION)-$(PKG_RELEASE)
|
||||||
|
Home : $(URL)
|
||||||
|
|
||||||
|
$(PKG_MAINTAINER)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
CONFIGURE_ARGS += \
|
CONFIGURE_ARGS += \
|
||||||
|
@ -58,12 +69,13 @@ define Build/Install
|
||||||
mv $(PKG_INSTALL_DIR)/etc/privoxy/config $(PKG_INSTALL_DIR)/etc/privoxy/config.privoxy
|
mv $(PKG_INSTALL_DIR)/etc/privoxy/config $(PKG_INSTALL_DIR)/etc/privoxy/config.privoxy
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/privoxy/conffiles
|
# "/etc/privoxy/config" temporary needed if updating from old version
|
||||||
|
define Package/$(PKG_NAME)/conffiles
|
||||||
/etc/config/privoxy
|
/etc/config/privoxy
|
||||||
/etc/privoxy/config # temporary needed if updating from old version
|
/etc/privoxy/config
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/privoxy/preinst
|
define Package/$(PKG_NAME)/preinst
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# if run within buildroot exit
|
# if run within buildroot exit
|
||||||
[ -n "$${IPKG_INSTROOT}" ] && exit 0
|
[ -n "$${IPKG_INSTROOT}" ] && exit 0
|
||||||
|
@ -72,7 +84,7 @@ define Package/privoxy/preinst
|
||||||
exit 0 # supress errors from stop command
|
exit 0 # supress errors from stop command
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/privoxy/install
|
define Package/$(PKG_NAME)/install
|
||||||
$(INSTALL_DIR) $(1)/usr/sbin
|
$(INSTALL_DIR) $(1)/usr/sbin
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/privoxy $(1)/usr/sbin/
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/privoxy $(1)/usr/sbin/
|
||||||
$(INSTALL_DIR) $(1)/etc/init.d
|
$(INSTALL_DIR) $(1)/etc/init.d
|
||||||
|
@ -92,7 +104,7 @@ define Package/privoxy/install
|
||||||
$(INSTALL_CONF) ./files/privoxy.config $(1)/etc/config/privoxy
|
$(INSTALL_CONF) ./files/privoxy.config $(1)/etc/config/privoxy
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/privoxy/postinst
|
define Package/$(PKG_NAME)/postinst
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# if fresh install we don't need old config file in privoxy directory
|
# if fresh install we don't need old config file in privoxy directory
|
||||||
|
@ -163,4 +175,4 @@ define Package/privoxy/postinst
|
||||||
chmod 644 /etc/privoxy/templates/*
|
chmod 644 /etc/privoxy/templates/*
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,privoxy))
|
$(eval $(call BuildPackage,$(PKG_NAME)))
|
||||||
|
|
Loading…
Reference in a new issue