From: nico Date: Thu, 19 May 2005 02:58:14 +0000 (+0000) Subject: Convert l2tpd to new packaging style X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=4fe3808f789027384631800aa186c50d491f5fca;p=openwrt.git Convert l2tpd to new packaging style git-svn-id: svn://svn.openwrt.org/openwrt/trunk@943 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/openwrt/package/l2tpd/Config.in b/openwrt/package/l2tpd/Config.in index 5dd4a74add..297bbcae08 100644 --- a/openwrt/package/l2tpd/Config.in +++ b/openwrt/package/l2tpd/Config.in @@ -1,5 +1,5 @@ config BR2_PACKAGE_L2TPD - tristate "l2tpd" + tristate "l2tpd - L2TP (Layer 2 Tunneling Protocol) daemon" default m if CONFIG_DEVEL help A layer 2 tunneling protocol implementation. diff --git a/openwrt/package/l2tpd/Makefile b/openwrt/package/l2tpd/Makefile index 4cae74e44a..ac80e0b09f 100644 --- a/openwrt/package/l2tpd/Makefile +++ b/openwrt/package/l2tpd/Makefile @@ -13,40 +13,25 @@ PKG_SOURCE:=$(PKG_NAME)_$(PKG_UPSTREAM_VERSION).orig.tar.gz PKG_CAT:=zcat PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_UPSTREAM_VERSION).orig +PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install -IPKG_L2TPD:=$(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk -IDIR_L2TPD:=$(PKG_BUILD_DIR)/ipkg/$(PKG_NAME) -INFO_L2TPD:=$(IPKG_STATE_DIR)/info/$(PKG_NAME).list +include $(TOPDIR)/package/rules.mk -$(DL_DIR)/$(PKG_SOURCE): - $(SCRIPT_DIR)/download.pl $(DL_DIR) $(PKG_SOURCE) $(PKG_MD5SUM) $(PKG_SOURCE_URL) +$(eval $(call PKG_template,L2TPD,l2tpd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) -$(PKG_BUILD_DIR)/.prepared: $(DL_DIR)/$(PKG_SOURCE) - $(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - - $(PATCH) $(PKG_BUILD_DIR) ./patches - touch $(PKG_BUILD_DIR)/.prepared +$(PKG_BUILD_DIR)/.configured: + touch $@ -$(PKG_BUILD_DIR)/$(PKG_NAME): $(PKG_BUILD_DIR)/.prepared +$(PKG_BUILD_DIR)/.built: $(MAKE) -C $(PKG_BUILD_DIR) \ $(TARGET_CONFIGURE_OPTS) \ CC=$(TARGET_CC) \ CFLAGS="$(TARGET_CFLAGS) -I. -DLINUX -DSANITY -DIP_ALLOCATION" + touch $@ -$(IPKG_L2TPD): $(PKG_BUILD_DIR)/$(PKG_NAME) - $(SCRIPT_DIR)/make-ipkg-dir.sh $(IDIR_L2TPD) $(PKG_NAME).control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH) - mkdir -p $(IDIR_L2TPD)/usr/sbin - cp $(PKG_BUILD_DIR)/$(PKG_NAME) $(IDIR_L2TPD)/usr/sbin/ - $(STRIP) $(IDIR_L2TPD)/usr/sbin/* - mkdir -p $(PACKAGE_DIR) +$(IPKG_L2TPD): + install -d -m0755 $(IDIR_L2TPD)/usr/sbin + install -m0755 $(PKG_BUILD_DIR)/$(PKG_NAME) $(IDIR_L2TPD)/usr/sbin/ + $(RSTRIP) $(IDIR_L2TPD) $(IPKG_BUILD) $(IDIR_L2TPD) $(PACKAGE_DIR) -$(INFO_L2TPD): $(IPKG_L2TPD) - $(IPKG) install $(IPKG_L2TPD) - -source: $(DL_DIR)/$(PKG_SOURCE) -prepare: $(PKG_BUILD_DIR)/.prepared -compile: $(IPKG_L2TPD) -install: $(INFO_L2TPD) - -clean: - rm -rf $(PKG_BUILD_DIR) $(IPKG_L2TPD) diff --git a/openwrt/package/l2tpd/ipkg/l2tpd.control b/openwrt/package/l2tpd/ipkg/l2tpd.control new file mode 100644 index 0000000000..57d60a15b2 --- /dev/null +++ b/openwrt/package/l2tpd/ipkg/l2tpd.control @@ -0,0 +1,10 @@ +Package: l2tpd +Priority: optional +Section: net +Maintainer: Felix Fietkau +Source: buildroot internal +Description: A layer 2 tunneling protocol implementation. + l2tpd is the open source implementation of the L2TP tunneling + protocol (RFC2661). It does implement both LAC and LNS role + in a L2TP networking architecture. The main goal of this protocol is + to tunnel PPP frame trough an ip network. diff --git a/openwrt/package/l2tpd/l2tpd.control b/openwrt/package/l2tpd/l2tpd.control deleted file mode 100644 index 57d60a15b2..0000000000 --- a/openwrt/package/l2tpd/l2tpd.control +++ /dev/null @@ -1,10 +0,0 @@ -Package: l2tpd -Priority: optional -Section: net -Maintainer: Felix Fietkau -Source: buildroot internal -Description: A layer 2 tunneling protocol implementation. - l2tpd is the open source implementation of the L2TP tunneling - protocol (RFC2661). It does implement both LAC and LNS role - in a L2TP networking architecture. The main goal of this protocol is - to tunnel PPP frame trough an ip network.