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.

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