miniupnpd: update v1.8.20130426 (#12997)
[openwrt/svn-archive/archive.git] / net / radsecproxy / Makefile
1 #
2 # Copyright (C) 2008-2012 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=radsecproxy
11 PKG_VERSION:=1.6.2
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://software.uninett.no/radsecproxy/
16 PKG_MD5SUM:=dad5c696e4cfe80d606ba90c9a13118b
17
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/radsecproxy
23 SECTION:=net
24 CATEGORY:=Network
25 DEPENDS:=+libopenssl +libpthread
26 TITLE:=radsecproxy
27 URL:=http://software.uninett.no/radsecproxy
28 endef
29
30 define Package/radsecproxy/description
31 A generic radius proxy for UDP/TLS (RadSec)
32 endef
33
34 CONFIGURE_ARGS+= \
35 --with-ssl="$(STAGING_DIR)/usr"
36
37 #TARGET_CFLAGS += -ansi
38 #TARGET_CFLAGS += -std=c99
39 TARGET_CFLAGS += -Wno-long-long
40
41
42 define Package/radsecproxy/install
43 $(INSTALL_DIR) $(1)/usr/sbin/
44 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/radsecproxy $(1)/usr/sbin/
45 $(INSTALL_DIR) $(1)/etc/
46 $(CP) $(PKG_BUILD_DIR)/radsecproxy.conf-example $(1)/etc/radsecproxy.conf
47 $(INSTALL_DIR) $(1)/etc/init.d/
48 $(INSTALL_BIN) ./files/radsecproxy.init $(1)/etc/init.d/radsecproxy
49 endef
50
51 define Package/radsecproxy/conffiles
52 /etc/radsecproxy.conf
53 endef
54
55 $(eval $(call BuildPackage,radsecproxy))
56