You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

163 lines
5.4 KiB

  1. #
  2. # Copyright (C) 2006-2017 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=privoxy
  9. PKG_VERSION:=3.0.28
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=privoxy-$(PKG_VERSION)-stable-src.tar.gz
  12. PKG_SOURCE_URL:=@SF/ijbswa
  13. PKG_HASH:=b5d78cc036aaadb3b7cf860e9d598d7332af468926a26e2d56167f1cb6f2824a
  14. PKG_BUILD_DIR:=$(BUILD_DIR)/privoxy-$(PKG_VERSION)-stable
  15. PKG_FIXUP:=autoreconf
  16. PKG_INSTALL:=1
  17. PKG_LICENSE:=GPL-2.0
  18. PKG_LICENSE_FILES:=LICENSE
  19. PKG_MAINTAINER:=
  20. PKG_CONFIG_DEPENDS:= \
  21. CONFIG_IPV6 \
  22. \
  23. CONFIG_PRIVOXY_disable-pthread \
  24. CONFIG_PRIVOXY_disable-dynamic-pcre \
  25. CONFIG_PRIVOXY_disable-zlib \
  26. \
  27. CONFIG_PRIVOXY_disable-toggle \
  28. CONFIG_PRIVOXY_disable-force \
  29. CONFIG_PRIVOXY_disable-fast-redirects \
  30. CONFIG_PRIVOXY_disable-stats \
  31. CONFIG_PRIVOXY_enable-ie-images \
  32. CONFIG_PRIVOXY_disable-image-blocking \
  33. CONFIG_PRIVOXY_disable-acl-support \
  34. CONFIG_PRIVOXY_disable-trust-files \
  35. CONFIG_PRIVOXY_disable-editor \
  36. CONFIG_PRIVOXY_enable-no-gifs \
  37. CONFIG_PRIVOXY_enable-graceful-termination \
  38. CONFIG_PRIVOXY_enable-extended-host-patterns \
  39. CONFIG_PRIVOXY_enable-external-filters \
  40. CONFIG_PRIVOXY_enable-accept-filter \
  41. CONFIG_PRIVOXY_enable-strptime-sanity-checks \
  42. CONFIG_PRIVOXY_enable-compression
  43. include $(INCLUDE_DIR)/package.mk
  44. define Package/privoxy
  45. SECTION:=net
  46. CATEGORY:=Network
  47. SUBMENU:=Web Servers/Proxies
  48. TITLE:=Privoxy WEB Proxy
  49. URL:=http://www.privoxy.org/
  50. USERID:=privoxy=8118:privoxy=8118
  51. MENU:=1
  52. DEPENDS:=+!PRIVOXY_no_pcre:libpcre +!PRIVOXY_no_pthread:libpthread +!PRIVOXY_no_zlib:zlib
  53. endef
  54. # shown in LuCI package description
  55. define Package/privoxy/description
  56. $(TITLE) - Homepage: www.privoxy.org
  57. endef
  58. # shown in make menuconfig <Help>
  59. define Package/privoxy/config
  60. help
  61. Privoxy is a web proxy with advanced filtering capabilities for protecting
  62. privacy, modifying web page content, managing cookies, controlling access,
  63. and removing ads, banners, pop-ups and other obnoxious Internet junk.
  64. Privoxy has a very flexible configuration and can be customized to suit
  65. individual needs and tastes.
  66. Privoxy has application for both stand-alone systems and multi-user networks.
  67. Run as : $(USERID)
  68. Version: $(PKG_VERSION)-$(PKG_RELEASE)
  69. Home : $(URL)
  70. source "$(SOURCE)/Config.in"
  71. endef
  72. CONFIGURE_ARGS += \
  73. --sysconfdir=/etc/privoxy \
  74. $(if $(CONFIG_IPV6),,--disable-ipv6-support) \
  75. \
  76. $(if $(CONFIG_PRIVOXY_disable-pthread),--disable-pthread) \
  77. $(if $(CONFIG_PRIVOXY_disable-dynamic-pcre),--disable-dynamic-pcre) \
  78. $(if $(CONFIG_PRIVOXY_disable-zlib),--disable-zlib) \
  79. \
  80. $(if $(CONFIG_PRIVOXY_disable-toggle),--disable-toggle) \
  81. $(if $(CONFIG_PRIVOXY_disable-force),--disable-force) \
  82. $(if $(CONFIG_PRIVOXY_disable-fast-redirects),--disable-fast-redirects) \
  83. $(if $(CONFIG_PRIVOXY_disable-stats),--disable-stats) \
  84. $(if $(CONFIG_PRIVOXY_enable-ie-images),--enable-ie-images) \
  85. $(if $(CONFIG_PRIVOXY_disable-image-blocking),--disable-image-blocking) \
  86. $(if $(CONFIG_PRIVOXY_disable-acl-support),--disable-acl-support) \
  87. $(if $(CONFIG_PRIVOXY_disable-trust-files),--disable-trust-files) \
  88. $(if $(CONFIG_PRIVOXY_disable-editor),--disable-editor) \
  89. $(if $(CONFIG_PRIVOXY_enable-no-gifs),--enable-no-gifs) \
  90. $(if $(CONFIG_PRIVOXY_enable-graceful-termination),--enable-graceful-termination) \
  91. $(if $(CONFIG_PRIVOXY_enable-extended-host-patterns),--enable-extended-host-patterns) \
  92. $(if $(CONFIG_PRIVOXY_enable-external-filters),--enable-external-filters) \
  93. $(if $(CONFIG_PRIVOXY_enable-accept-filter),--enable-accept-filter) \
  94. $(if $(CONFIG_PRIVOXY_enable-strptime-sanity-checks),--enable-strptime-sanity-checks) \
  95. $(if $(CONFIG_PRIVOXY_enable-compression),--enable-compression)
  96. # needed otherwise errors during compile
  97. MAKE_FLAGS:=
  98. define Package/privoxy/conffiles
  99. /etc/config/privoxy
  100. /etc/privoxy/user.action
  101. /etc/privoxy/user.filter
  102. /etc/privoxy/user.trust
  103. endef
  104. define Package/privoxy/preinst
  105. #!/bin/sh
  106. [ -n "$${IPKG_INSTROOT}" ] && exit 0 # if run within buildroot exit
  107. # stop service if PKG_UPGRADE
  108. [ "$${PKG_UPGRADE}" = "1" ] && /etc/init.d/privoxy stop >/dev/null 2>&1
  109. exit 0 # suppress errors from stop command
  110. endef
  111. define Package/privoxy/install
  112. if [ -f $(PKG_INSTALL_DIR)/etc/privoxy/trust ]; then \
  113. mv -f $(PKG_INSTALL_DIR)/etc/privoxy/trust $(PKG_INSTALL_DIR)/etc/privoxy/user.trust; \
  114. fi
  115. if [ -f $(PKG_INSTALL_DIR)/etc/privoxy/config ]; then \
  116. rm -f $(PKG_INSTALL_DIR)/etc/privoxy/config; \
  117. fi
  118. $(INSTALL_DIR) \
  119. $(1)/usr/sbin\
  120. $(1)/etc/privoxy/templates
  121. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/privoxy $(1)/usr/sbin/
  122. find $(PKG_INSTALL_DIR)/etc/privoxy/templates -maxdepth 1 -type f \
  123. -exec $(INSTALL_DATA) -t $(1)/etc/privoxy/templates {} \;
  124. find $(PKG_INSTALL_DIR)/etc/privoxy -maxdepth 1 -type f \
  125. -exec install -m0664 -t $(1)/etc/privoxy {} \;
  126. $(INSTALL_DIR) \
  127. $(1)/lib/upgrade/keep.d \
  128. $(1)/etc/init.d \
  129. $(1)/etc/hotplug.d/iface \
  130. $(1)/etc/config
  131. $(INSTALL_DATA) ./files/privoxy.upgrade $(1)/lib/upgrade/keep.d/privoxy
  132. $(INSTALL_BIN) ./files/privoxy.init $(1)/etc/init.d/privoxy
  133. $(INSTALL_BIN) ./files/privoxy.hotplug $(1)/etc/hotplug.d/iface/95-privoxy
  134. $(INSTALL_CONF) ./files/privoxy.config $(1)/etc/config/privoxy
  135. endef
  136. define Package/privoxy/postinst
  137. #!/bin/sh
  138. grep -i privoxy $${IPKG_INSTROOT}/etc/services >/dev/null 2>&1 || \
  139. echo -e "privoxy\t8118" >> $${IPKG_INSTROOT}/etc/services
  140. endef
  141. $(eval $(call BuildPackage,privoxy))