2006-08-07 12:47:31 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=rp-l2tp
|
|
|
|
PKG_VERSION:=0.4
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2006-10-30 13:51:50 +00:00
|
|
|
PKG_SOURCE_URL:=@SF/rp-l2tp
|
|
|
|
PKG_MD5SUM:=0e45d11cb4fa6c56cce6b1d119733ed9
|
2006-08-07 12:47:31 +00:00
|
|
|
PKG_CAT:=zcat
|
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2006-10-30 13:51:50 +00:00
|
|
|
define Package/rp-l2tpd/Default
|
2006-08-07 12:47:31 +00:00
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
2006-10-30 13:51:50 +00:00
|
|
|
TITLE:=Roaring Penguin L2TP
|
|
|
|
DESCRIPTION:=\
|
|
|
|
Roaring Penguin L2TP (Layer 2 Tunneling Protocol) implementation.
|
2006-08-07 12:47:31 +00:00
|
|
|
URL:=http://sourceforge.net/projects/rp-l2tp/
|
2006-10-30 13:51:50 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/rp-l2tpd
|
|
|
|
$(call Package/rp-l2tpd/Default)
|
|
|
|
TITLE+= daemon
|
2006-08-07 12:47:31 +00:00
|
|
|
MENU:=1
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/rp-l2tpd-mod-cmd
|
2006-10-30 13:51:50 +00:00
|
|
|
$(call Package/rp-l2tpd/Default)
|
2006-08-07 12:47:31 +00:00
|
|
|
DEPENDS:=rp-l2tpd
|
2006-10-30 13:51:50 +00:00
|
|
|
TITLE:=Simple command handler for the RR L2TP daemon
|
2006-08-07 12:47:31 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/rp-l2tpd-mod-ppp
|
2006-10-30 13:51:50 +00:00
|
|
|
$(call Package/rp-l2tpd/Default)
|
2006-08-07 12:47:31 +00:00
|
|
|
DEPENDS:=rp-l2tpd
|
2006-10-30 13:51:50 +00:00
|
|
|
TITLE:=PPP handler for the RR L2TP daeomon
|
2006-08-07 12:47:31 +00:00
|
|
|
endef
|
|
|
|
|
2006-10-30 13:51:50 +00:00
|
|
|
# uses GNU configure
|
|
|
|
|
2006-08-07 12:47:31 +00:00
|
|
|
define Build/Compile
|
2006-10-30 13:51:50 +00:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
all install
|
2006-08-07 12:47:31 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/rp-l2tpd/install
|
|
|
|
install -d -m0755 $(1)/etc
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/etc/l2tp.conf.example $(1)/etc/l2tp.conf
|
|
|
|
install -d -m0755 $(1)/usr/lib/l2tp
|
|
|
|
install -d -m0755 $(1)/usr/sbin
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/l2tpd $(1)/usr/sbin/
|
2006-10-30 13:51:50 +00:00
|
|
|
install -d -m0755 $(1)/etc/init.d
|
|
|
|
install -m0755 ./files/rp-l2tpd.init $(1)/etc/init.d/rp-l2tpd
|
2006-08-07 12:47:31 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/rp-l2tpd-mod-cmd/install
|
|
|
|
install -d -m0755 $(1)/usr/lib/l2tp
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/l2tp/cmd.so $(1)/usr/lib/l2tp/
|
|
|
|
install -d -m0755 $(1)/usr/sbin
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/l2tp-control $(1)/usr/sbin/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/rp-l2tpd-mod-ppp/install
|
|
|
|
install -d -m0755 $(1)/usr/lib/l2tp
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/l2tp/sync-pppd.so $(1)/usr/lib/l2tp/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,rp-l2tpd))
|
|
|
|
$(eval $(call BuildPackage,rp-l2tpd-mod-cmd))
|
|
|
|
$(eval $(call BuildPackage,rp-l2tpd-mod-ppp))
|