bluez-utils: Fix dbus conf filename.
[openwrt/svn-archive/archive.git] / net / squid / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=squid
12 PKG_VERSION:=2.6.STABLE14
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=http://www.squid-cache.org/Versions/v2/2.6/
17 PKG_MD5SUM:=eadb138d48320df8b99349121159c6bf
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/squid/Default
22 SECTION:=net
23 CATEGORY:=Network
24 URL:=http://www.squid-cache.org/
25 endef
26
27 define Package/squid
28 $(call Package/squid/Default)
29 MENU:=1
30 DEPENDS:=+libopenssl +libpthread @LINUX_2_6
31 TITLE:=full-featured Web proxy cache
32 endef
33
34 define Package/squid/description
35 Squid is a high-performance proxy caching server for web clients,
36 supporting FTP, gopher, and HTTP data objects. Unlike traditional
37 caching software, Squid handles all requests in a single,
38 non-blocking, I/O-driven process.
39 endef
40
41 define Package/squid/conffiles
42 /etc/squid/mime.conf
43 /etc/squid/squid.conf
44 endef
45
46 define Package/squid-mod-cachemgr
47 $(call Package/squid/Default)
48 DEPENDS:=squid
49 TITLE:=Web based proxy manager and reporting tool
50 endef
51
52 define Package/squid-mod-basic-auth-getpwnam
53 $(call Package/squid/Default)
54 DEPENDS:=squid
55 TITLE:=getpwnam basic authentication helper
56 endef
57
58 define Package/squid-mod-basic-auth-ncsa
59 $(call Package/squid/Default)
60 DEPENDS:=squid
61 TITLE:=NCSA basic authentication helper
62 endef
63
64 define Package/squid-mod-basic-auth-smb
65 $(call Package/squid/Default)
66 DEPENDS:=squid
67 TITLE:=Samba basic authentication helper
68 endef
69
70 define Package/squid-mod-digest-auth-password
71 $(call Package/squid/Default)
72 DEPENDS:=squid
73 TITLE:=Password digest authentication helper
74 endef
75
76 define Package/squid-mod-external-acl-ip-user
77 $(call Package/squid/Default)
78 DEPENDS:=squid
79 TITLE:=IP user external ACL helper
80 endef
81
82 define Package/squid-mod-external-acl-unix-group
83 $(call Package/squid/Default)
84 DEPENDS:=squid
85 TITLE:=Unix group external ACL helper
86 endef
87
88 define Package/squid-mod-ntlm-auth-fakeauth
89 $(call Package/squid/Default)
90 DEPENDS:=squid
91 TITLE:=Fakeauth NTLM authentication helper
92 endef
93
94 define Package/squid-mod-ntlm-auth-smb-auth
95 $(call Package/squid/Default)
96 DEPENDS:=squid
97 TITLE:=Samba NTLM authentication helper
98 endef
99
100 define Build/Configure
101 $(call Build/Configure/Default, \
102 --datadir=/usr/share/squid \
103 --libexecdir=/usr/lib/squid \
104 --sysconfdir=/etc/squid \
105 --enable-shared \
106 --enable-static \
107 --enable-x-accelerator-vary \
108 --with-pthreads \
109 --with-dl \
110 --enable-icmp \
111 --enable-kill-parent-hack \
112 --enable-arp-acl \
113 --enable-ssl \
114 --enable-htcp \
115 --enable-err-languages=English \
116 --enable-default-err-language=English \
117 --enable-linux-netfilter \
118 --enable-icmp \
119 --enable-external-acl-helpers="" \
120 --enable-underscores \
121 --enable-cache-digests \
122 --enable-referer-log \
123 --enable-delay-pools \
124 --enable-useragent-log \
125 --with-openssl=$(STAGING_DIR)/usr \
126 --enable-auth="basic digest ntlm" \
127 --enable-basic-auth-helpers="getpwnam NCSA SMB" \
128 --enable-ntlm-auth-helpers="fakeauth SMB" \
129 --enable-digest-auth-helpers="password" \
130 --enable-external-acl-helpers="ip_user unix_group" \
131 --enable-epoll \
132 --with-maxfd=4096 \
133 )
134 endef
135
136 define Build/Compile
137 # pass INCLUDES to compile host sources against our OpenSSL, not the host one
138 $(MAKE) -C $(PKG_BUILD_DIR)/lib \
139 INCLUDES="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
140 all
141 $(MAKE) -C $(PKG_BUILD_DIR) \
142 DESTDIR="$(PKG_INSTALL_DIR)" \
143 all install
144 endef
145
146 define BuildPlugin
147 define Package/$(1)/install
148 $(INSTALL_DIR) $$(1)/usr/lib/squid
149 $(CP) $(PKG_INSTALL_DIR)/usr/lib/squid/$(2) $$(1)/usr/lib/squid/
150 endef
151
152 $$(eval $$(call BuildPackage,$(1)))
153 endef
154
155 define Package/squid/install
156 $(INSTALL_DIR) $(1)/etc/squid
157 $(CP) $(PKG_INSTALL_DIR)/etc/squid/mime.conf $(1)/etc/squid/
158 $(CP) $(PKG_INSTALL_DIR)/etc/squid/squid.conf $(1)/etc/squid/
159 $(INSTALL_DIR) $(1)/usr/share/squid
160 $(CP) $(PKG_INSTALL_DIR)/usr/share/squid/* $(1)/usr/share/squid/
161 $(INSTALL_DIR) $(1)/usr/sbin
162 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/squid $(1)/usr/sbin/
163 $(INSTALL_DIR) $(1)/usr/lib/squid
164 $(CP) $(PKG_INSTALL_DIR)/usr/lib/squid/{unlinkd,pinger} $(1)/usr/lib/squid/
165 endef
166
167 define Package/squid-mod-cachemgr/install
168 $(INSTALL_DIR) $(1)/www/cgi-bin/
169 $(CP) $(PKG_INSTALL_DIR)/usr/lib/squid/cachemgr.cgi $(1)/www/cgi-bin/
170 endef
171
172 $(eval $(call BuildPackage,squid))
173 $(eval $(call BuildPackage,squid-mod-cachemgr))
174 $(eval $(call BuildPlugin,squid-mod-basic-auth-getpwnam,getpwname_auth))
175 $(eval $(call BuildPlugin,squid-mod-basic-auth-ncsa,ncsa_auth))
176 $(eval $(call BuildPlugin,squid-mod-basic-auth-smb,smb_auth))
177 $(eval $(call BuildPlugin,squid-mod-digest-auth-password,digest_pw_auth))
178 $(eval $(call BuildPlugin,squid-mod-external-acl-ip-user,ip_user_check))
179 $(eval $(call BuildPlugin,squid-mod-external-acl-unix-group,squid_unix_group))
180 $(eval $(call BuildPlugin,squid-mod-ntlm-auth-fakeauth,fakeauth_auth))
181 $(eval $(call BuildPlugin,squid-mod-ntlm-auth-smb-auth,ntlm_auth))
182
183 $(eval $(call RequireHeader,/usr/include/openssl/ssl.h, \
184 $(PKG_NAME) requires the openssl development (named like libssl-dev, \
185 depending of your package manager) package be installed on the host-system. \
186 ))