packages/rp-pppoe: use new service functions, use $(CP) instead of $(INSTALL_*) for packaging stuff installed by upstream Makefile
git-svn-id: svn://svn.openwrt.org/openwrt/packages@29082 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
7b8394f701
commit
26b1491d87
@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2006 OpenWrt.org
|
||||
# Copyright (C) 2006-2011 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=rp-pppoe
|
||||
PKG_VERSION:=3.10
|
||||
PKG_RELEASE:=1
|
||||
PKG_RELEASE:=2
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=http://roaringpenguin.com/files/download
|
||||
@ -39,7 +39,8 @@ define Package/rp-pppoe-client
|
||||
endef
|
||||
|
||||
define Package/rp-pppoe-client/description
|
||||
$(call Package/rp-pppoe/Default/description)
|
||||
$(call Package/rp-pppoe/Default/description)
|
||||
.
|
||||
This package contains pppoe-connect.
|
||||
endef
|
||||
|
||||
@ -49,7 +50,8 @@ define Package/rp-pppoe-relay
|
||||
endef
|
||||
|
||||
define Package/rp-pppoe-relay/description
|
||||
$(call Package/rp-pppoe/Default/description)
|
||||
$(call Package/rp-pppoe/Default/description)
|
||||
.
|
||||
This package contains pppoe-relay.
|
||||
endef
|
||||
|
||||
@ -64,7 +66,8 @@ define Package/rp-pppoe-server/conffiles
|
||||
endef
|
||||
|
||||
define Package/rp-pppoe-server/description
|
||||
$(call Package/rp-pppoe/Default/description)
|
||||
$(call Package/rp-pppoe/Default/description)
|
||||
.
|
||||
This package contains pppoe-server.
|
||||
endef
|
||||
|
||||
@ -74,7 +77,8 @@ define Package/rp-pppoe-sniff
|
||||
endef
|
||||
|
||||
define Package/rp-pppoe-sniff/description
|
||||
$(call Package/rp-pppoe/Default/description)
|
||||
$(call Package/rp-pppoe/Default/description)
|
||||
.
|
||||
This package contains pppoe-sniff.
|
||||
endef
|
||||
|
||||
@ -88,9 +92,9 @@ define Package/rp-pppoe-client/install
|
||||
$(INSTALL_DIR) $(1)/etc/init.d
|
||||
$(INSTALL_BIN) ./files/pppoe-client.init $(1)/etc/init.d/pppoe-client
|
||||
$(INSTALL_DIR) $(1)/etc/ppp
|
||||
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/etc/ppp/pppoe.conf $(1)/etc/ppp/
|
||||
$(CP) $(PKG_INSTALL_DIR)/etc/ppp/pppoe.conf $(1)/etc/ppp/
|
||||
$(INSTALL_DIR) $(1)/usr/sbin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/pppoe $(1)/usr/sbin/
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/pppoe $(1)/usr/sbin/
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/scripts/pppoe-connect $(1)/usr/sbin/
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/scripts/pppoe-start $(1)/usr/sbin/
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/scripts/pppoe-stop $(1)/usr/sbin/
|
||||
@ -103,7 +107,7 @@ define Package/rp-pppoe-relay/install
|
||||
$(INSTALL_DIR) $(1)/etc/init.d
|
||||
$(INSTALL_BIN) ./files/pppoe-relay.init $(1)/etc/init.d/pppoe-relay
|
||||
$(INSTALL_DIR) $(1)/usr/sbin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/pppoe-relay $(1)/usr/sbin/
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/pppoe-relay $(1)/usr/sbin/
|
||||
endef
|
||||
|
||||
define Package/rp-pppoe-server/install
|
||||
@ -113,15 +117,15 @@ define Package/rp-pppoe-server/install
|
||||
$(INSTALL_BIN) ./files/pppoe-server.init $(1)/etc/init.d/pppoe-server
|
||||
$(INSTALL_DIR) $(1)/etc/ppp
|
||||
$(INSTALL_DIR) $(1)/etc/ppp/plugins
|
||||
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/etc/ppp/pppoe-server-options $(1)/etc/ppp/
|
||||
$(CP) $(PKG_INSTALL_DIR)/etc/ppp/pppoe-server-options $(1)/etc/ppp/
|
||||
$(INSTALL_DIR) $(1)/usr/sbin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/pppoe-server $(1)/usr/sbin/
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/etc/ppp/plugins/rp-pppoe.so $(1)/etc/ppp/plugins/
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/pppoe-server $(1)/usr/sbin/
|
||||
$(CP) $(PKG_INSTALL_DIR)/etc/ppp/plugins/rp-pppoe.so $(1)/etc/ppp/plugins/
|
||||
endef
|
||||
|
||||
define Package/rp-pppoe-sniff/install
|
||||
$(INSTALL_DIR) $(1)/usr/sbin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/pppoe-sniff $(1)/usr/sbin/
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/pppoe-sniff $(1)/usr/sbin/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,rp-pppoe-client))
|
||||
|
@ -1,15 +1,15 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2006 OpenWrt.org
|
||||
# Copyright (C) 2006-2011 OpenWrt.org
|
||||
|
||||
START=50
|
||||
|
||||
DEFAULT=/etc/default/pppoe-relay
|
||||
|
||||
start() {
|
||||
[ -f $DEFAULT ] && . $DEFAULT
|
||||
pppoe-relay $OPTIONS
|
||||
service_start /usr/sbin/pppoe-relay $OPTIONS
|
||||
}
|
||||
|
||||
stop() {
|
||||
killall pppoe-relay
|
||||
service_stop /usr/sbin/pppoe-relay
|
||||
}
|
||||
|
||||
|
@ -1,14 +1,15 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2006 OpenWrt.org
|
||||
# Copyright (C) 2006-2011 OpenWrt.org
|
||||
|
||||
START=50
|
||||
|
||||
DEFAULT=/etc/default/pppoe-server
|
||||
|
||||
start() {
|
||||
[ -f $DEFAULT ] && . $DEFAULT
|
||||
pppoe-server $OPTIONS
|
||||
service_start /usr/sbin/pppoe-server $OPTIONS
|
||||
}
|
||||
|
||||
stop() {
|
||||
killall pppoe-server
|
||||
service_stop /usr/sbin/pppoe-server
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user