Root/package/ppp/Makefile

1#
2# Copyright (C) 2006-2010 OpenWrt.org
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8include $(TOPDIR)/rules.mk
9include $(INCLUDE_DIR)/kernel.mk
10
11PKG_NAME:=ppp
12PKG_VERSION:=2.4.4
13PKG_RELEASE:=9
14
15PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16PKG_SOURCE_URL:=ftp://ftp.samba.org/pub/ppp/
17PKG_MD5SUM:=183800762e266132218b204dfb428d29
18
19PKG_BUILD_DEPENDS:=libpcap
20
21PKG_INSTALL:=1
22
23include $(INCLUDE_DIR)/package.mk
24
25define Package/ppp/Default
26  SECTION:=net
27  CATEGORY:=Network
28  URL:=http://ppp.samba.org/
29endef
30
31define Package/ppp
32$(call Package/ppp/Default)
33  DEPENDS:=+kmod-ppp
34  TITLE:=PPP daemon
35  MENU:=1
36endef
37
38define Package/ppp/description
39This package contains the PPP (Point-to-Point Protocol) daemon.
40endef
41
42define Package/ppp-mod-pppoa
43$(call Package/ppp/Default)
44  DEPENDS:=ppp +linux-atm +kmod-pppoa
45  TITLE:=PPPoA plugin
46endef
47
48define Package/ppp-mod-pppoa/description
49This package contains a PPPoA (PPP over ATM) plugin for ppp.
50endef
51
52define Package/ppp-mod-pppoe
53$(call Package/ppp/Default)
54  DEPENDS:=ppp +kmod-pppoe
55  TITLE:=PPPoE plugin
56endef
57
58define Package/ppp-mod-pppoe/description
59This package contains a PPPoE (PPP over Ethernet) plugin for ppp.
60endef
61
62define Package/ppp-mod-radius
63$(call Package/ppp/Default)
64  DEPENDS:=ppp
65  TITLE:=RADIUS plugin
66endef
67
68define Package/ppp-mod-radius/description
69This package contains a RADIUS (Remote Authentication Dial-In User Service)
70plugin for ppp.
71endef
72
73define Package/chat
74$(call Package/ppp/Default)
75  DEPENDS:=ppp
76  TITLE:=Establish conversation with a modem
77endef
78
79define Package/chat/description
80This package contains an utility to establish conversation with other PPP servers
81(via a modem).
82endef
83
84define Package/pppdump
85$(call Package/ppp/Default)
86  DEPENDS:=ppp
87  TITLE:=Read PPP record file
88endef
89
90define Package/pppdump/description
91This package contains an utility to read PPP record file.
92endef
93
94define Package/pppstats
95$(call Package/ppp/Default)
96  DEPENDS:=ppp
97  TITLE:=Report PPP statistics
98endef
99
100define Package/pppstats/description
101This package contains an utility to report PPP statistics.
102endef
103
104
105define Build/Configure
106$(call Build/Configure/Default,, \
107    UNAME_S="Linux" \
108    UNAME_R="$(LINUX_VERSION)" \
109    UNAME_M="$(ARCH)" \
110)
111    mkdir -p $(PKG_BUILD_DIR)/pppd/plugins/pppoatm/linux
112    cp \
113        $(LINUX_DIR)/include/linux/compiler.h \
114        $(LINUX_DIR)/include/linux/atm*.h \
115        $(PKG_BUILD_DIR)/pppd/plugins/pppoatm/linux/
116endef
117
118MAKE_FLAGS += COPTS="$(TARGET_CFLAGS)" \
119        PRECOMPILED_FILTER=1 \
120        STAGING_DIR="$(STAGING_DIR)"
121
122define Build/InstallDev
123    $(INSTALL_DIR) $(1)/usr/include
124    $(CP) $(PKG_INSTALL_DIR)/include/pppd $(1)/usr/include/
125endef
126
127define Package/ppp/install
128    $(INSTALL_DIR) $(1)/usr/lib/pppd/$(PKG_VERSION)
129    $(INSTALL_DIR) $(1)/usr/sbin
130    $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/pppd $(1)/usr/sbin/
131    $(INSTALL_DIR) $(1)/lib/network
132    $(INSTALL_BIN) ./files/ppp.sh $(1)/lib/network/
133    $(INSTALL_DIR) $(1)/etc/ppp
134    $(INSTALL_CONF) ./files/etc/ppp/chap-secrets $(1)/etc/ppp/
135    $(INSTALL_DATA) ./files/etc/ppp/filter $(1)/etc/ppp/
136    $(INSTALL_BIN) ./files/etc/ppp/ip-up $(1)/etc/ppp/
137    $(INSTALL_DIR) $(1)/etc/ppp/ip-up.d
138    $(INSTALL_BIN) ./files/etc/ppp/ip-down $(1)/etc/ppp/
139    $(INSTALL_DIR) $(1)/etc/ppp/ip-down.d
140    $(INSTALL_BIN) ./files/etc/ppp/ipv6-up $(1)/etc/ppp/
141    $(INSTALL_BIN) ./files/etc/ppp/ipv6-down $(1)/etc/ppp/
142    $(INSTALL_DATA) ./files/etc/ppp/options $(1)/etc/ppp/
143    ln -sf /tmp/resolv.conf.ppp $(1)/etc/ppp/resolv.conf
144endef
145    
146define Package/ppp-mod-pppoa/install
147    $(INSTALL_DIR) $(1)/usr/lib/pppd/$(PKG_VERSION)
148    $(INSTALL_BIN) $(PKG_INSTALL_DIR)/lib/pppd/$(PKG_VERSION)/pppoatm.so \
149        $(1)/usr/lib/pppd/$(PKG_VERSION)/
150    $(INSTALL_DIR) $(1)/lib/network
151    $(INSTALL_BIN) ./files/pppoa.sh $(1)/lib/network/
152    $(INSTALL_DIR) $(1)/etc/hotplug.d/atm
153    $(INSTALL_DATA) ./files/etc/hotplug.d/atm/20-atm-modem $(1)/etc/hotplug.d/atm/
154endef
155
156define Package/ppp-mod-pppoe/install
157    $(INSTALL_DIR) $(1)/usr/lib/pppd/$(PKG_VERSION)
158    $(INSTALL_BIN) $(PKG_INSTALL_DIR)/lib/pppd/$(PKG_VERSION)/rp-pppoe.so \
159        $(1)/usr/lib/pppd/$(PKG_VERSION)/
160    $(INSTALL_DIR) $(1)/lib/network
161    $(INSTALL_BIN) ./files/pppoe.sh $(1)/lib/network/
162endef
163
164define Package/ppp-mod-radius/install
165    $(INSTALL_DIR) $(1)/usr/lib/pppd/$(PKG_VERSION)
166    $(INSTALL_BIN) $(PKG_INSTALL_DIR)/lib/pppd/$(PKG_VERSION)/radius.so \
167        $(1)/usr/lib/pppd/$(PKG_VERSION)/
168    $(INSTALL_DIR) $(1)/etc/ppp
169    $(INSTALL_DATA) ./files/etc/ppp/radius.conf $(1)/etc/ppp/
170    $(INSTALL_DIR) $(1)/etc/ppp/radius
171    $(INSTALL_DATA) ./files/etc/ppp/radius/dictionary* \
172        $(1)/etc/ppp/radius/
173    $(INSTALL_CONF) ./files/etc/ppp/radius/servers \
174        $(1)/etc/ppp/radius/
175endef
176
177define Package/chat/install
178    $(INSTALL_DIR) $(1)/usr/sbin
179    $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/chat $(1)/usr/sbin/
180endef
181
182define Package/pppdump/install
183    $(INSTALL_DIR) $(1)/usr/sbin
184    $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/pppdump $(1)/usr/sbin/
185endef
186
187define Package/pppstats/install
188    $(INSTALL_DIR) $(1)/usr/sbin
189    $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/pppstats $(1)/usr/sbin/
190endef
191
192$(eval $(call BuildPackage,ppp))
193$(eval $(call BuildPackage,ppp-mod-pppoa))
194$(eval $(call BuildPackage,ppp-mod-pppoe))
195$(eval $(call BuildPackage,ppp-mod-radius))
196$(eval $(call BuildPackage,chat))
197$(eval $(call BuildPackage,pppdump))
198$(eval $(call BuildPackage,pppstats))
199

Archive Download this file



interactive