2006-08-07 09:00:32 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=privoxy
|
2009-04-17 13:17:50 +00:00
|
|
|
PKG_VERSION:=3.0.12
|
|
|
|
PKG_RELEASE:=1
|
2006-08-07 09:00:32 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-stable-src.tar.gz
|
2007-01-08 11:19:08 +00:00
|
|
|
PKG_SOURCE_URL:=@SF/ijbswa
|
2009-04-17 13:17:50 +00:00
|
|
|
PKG_MD5SUM:=c973e608d27b248ef567b47664308da1
|
2006-08-07 09:00:32 +00:00
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)-stable
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/privoxy
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
2006-11-29 13:29:23 +00:00
|
|
|
DEPENDS:=+libpcre +libpthread
|
2006-08-07 09:00:32 +00:00
|
|
|
TITLE:=web proxy with advanced filtering capabilities
|
|
|
|
URL:=http://www.privoxy.org/
|
|
|
|
endef
|
|
|
|
|
2007-10-14 04:32:56 +00:00
|
|
|
define Package/privoxy/description
|
|
|
|
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.
|
|
|
|
endef
|
|
|
|
|
2006-08-07 09:00:32 +00:00
|
|
|
define Build/Configure
|
2007-03-26 04:23:10 +00:00
|
|
|
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
|
|
|
autoheader && autoconf \
|
|
|
|
);
|
|
|
|
$(call Build/Configure/Default, \
|
|
|
|
--sysconfdir=/etc/privoxy \
|
|
|
|
)
|
2006-08-07 09:00:32 +00:00
|
|
|
endef
|
|
|
|
|
2009-04-17 13:17:50 +00:00
|
|
|
define Build/Compile
|
2006-08-07 09:00:32 +00:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
SPECIAL_CFLAGS="-pthread -L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib"
|
|
|
|
mkdir -p $(PKG_INSTALL_DIR)
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
install
|
|
|
|
endef
|
|
|
|
|
2007-03-26 04:23:10 +00:00
|
|
|
define Package/privoxy/conffiles
|
|
|
|
/etc/privoxy/config
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/privoxy/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2007-12-09 18:59:01 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/privoxy $(1)/usr/sbin/
|
2007-03-26 04:23:10 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/privoxy
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/etc/privoxy/* $(1)/etc/privoxy/
|
|
|
|
$(INSTALL_CONF) ./files/privoxy.config $(1)/etc/privoxy/config
|
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/privoxy.init $(1)/etc/init.d/privoxy
|
2006-08-07 09:00:32 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,privoxy))
|