From d6dd9bf94175ae66f871ca5cc8dbbca11aabbc98 Mon Sep 17 00:00:00 2001 From: Nicolas Thill Date: Thu, 19 May 2005 00:03:33 +0000 Subject: [PATCH] Convert pptpd to new packaging style SVN-Revision: 942 --- openwrt/package/pptpd/Config.in | 9 +- openwrt/package/pptpd/Makefile | 104 +++++++++--------- .../options.pptpd} | 0 .../pptpd/{ipkg/etc => files}/pptpd.conf | 0 openwrt/package/pptpd/files/pptpd.init | 25 +++++ openwrt/package/pptpd/ipkg/CONTROL/conffiles | 2 - openwrt/package/pptpd/ipkg/pptpd.conffiles | 2 + .../package/pptpd/{ => ipkg}/pptpd.control | 0 8 files changed, 84 insertions(+), 58 deletions(-) rename openwrt/package/pptpd/{ipkg/etc/ppp/pptp-server-options => files/options.pptpd} (100%) rename openwrt/package/pptpd/{ipkg/etc => files}/pptpd.conf (100%) create mode 100644 openwrt/package/pptpd/files/pptpd.init delete mode 100644 openwrt/package/pptpd/ipkg/CONTROL/conffiles create mode 100644 openwrt/package/pptpd/ipkg/pptpd.conffiles rename openwrt/package/pptpd/{ => ipkg}/pptpd.control (100%) diff --git a/openwrt/package/pptpd/Config.in b/openwrt/package/pptpd/Config.in index 6915029164..ab495f0642 100644 --- a/openwrt/package/pptpd/Config.in +++ b/openwrt/package/pptpd/Config.in @@ -1,7 +1,12 @@ config BR2_PACKAGE_PPTPD - tristate "PPTP Server" + prompt "pptpd - a PPTP (Point-to-Point Tunneling Protocol) server" + tristate default m if CONFIG_DEVEL select BR2_PACKAGE_KMOD_GRE select BR2_PACKAGE_PPP help - A Point-to-Point Tunneling Protocol Server + A Point-to-Point Tunneling Protocol server + + http://poptop.sourceforge.net/ + + diff --git a/openwrt/package/pptpd/Makefile b/openwrt/package/pptpd/Makefile index 31608f95ea..5880799fa3 100644 --- a/openwrt/package/pptpd/Makefile +++ b/openwrt/package/pptpd/Makefile @@ -9,65 +9,61 @@ PKG_MD5SUM:=a521e40ca304b0c125cc25f9b9d03324 PKG_SOURCE_URL:=@SF/poptop PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) PKG_CAT:=zcat -PKG_IPK:=$(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk -PKG_IPK_DIR:=$(PKG_BUILD_DIR)/ipkg -$(DL_DIR)/$(PKG_SOURCE): - $(SCRIPT_DIR)/download.pl $(DL_DIR) $(PKG_SOURCE) $(PKG_MD5SUM) $(PKG_SOURCE_URL) +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install + +include $(TOPDIR)/package/rules.mk -$(PKG_BUILD_DIR)/.unpacked: $(DL_DIR)/$(PKG_SOURCE) - $(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - - touch $(PKG_BUILD_DIR)/.unpacked +$(eval $(call PKG_template,PPTPD,pptpd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) -$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.unpacked - (cd $(PKG_BUILD_DIR) ; \ - $(TARGET_CONFIGURE_OPTS) \ - CFLAGS="$(TARGET_CFLAGS)" \ - ./configure \ - --target=$(GNU_TARGET_NAME) \ - --host=$(GNU_TARGET_NAME) \ - --build=$(GNU_HOST_NAME) \ - --prefix=/usr \ - --exec-prefix=/usr \ - --bindir=/usr/bin \ - --sbindir=/usr/sbin \ - --libexecdir=/usr/lib \ - --datadir=/usr/share \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - --localstatedir=/var \ - --sysconfdir=/etc \ - $(DISABLE_NLS) \ - --with-pppd-ip-alloc) +$(PKG_BUILD_DIR)/.configured: + (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status}; \ + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS)" \ + ./configure \ + --target=$(GNU_TARGET_NAME) \ + --host=$(GNU_TARGET_NAME) \ + --build=$(GNU_HOST_NAME) \ + --program-prefix="" \ + --program-suffix="" \ + --prefix=/usr \ + --exec-prefix=/usr \ + --bindir=/usr/bin \ + --datadir=/usr/share \ + --includedir=/usr/include \ + --infodir=/usr/share/info \ + --libdir=/usr/lib \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --mandir=/usr/share/man \ + --sbindir=/usr/sbin \ + --sysconfdir=/etc \ + $(DISABLE_LARGEFILE) \ + $(DISABLE_NLS) \ + --with-pppd-ip-alloc \ + ) touch $(PKG_BUILD_DIR)/.configured -$(PKG_BUILD_DIR)/$(PKG_NAME): $(PKG_BUILD_DIR)/.configured +$(PKG_BUILD_DIR)/.built: $(MAKE) -C $(PKG_BUILD_DIR) \ - CC=$(TARGET_CC) \ - CFLAGS="$(TARGET_CFLAGS) -DSBINDIR=\\\"/usr/sbin\\\"" \ - all - -$(PKG_IPK): $(PKG_BUILD_DIR)/$(PKG_NAME) - mkdir -p $(PKG_IPK_DIR)/usr/sbin - cp -a ./ipkg/* $(PKG_IPK_DIR)/ - $(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH) - cp $(PKG_BUILD_DIR)/pptpd $(PKG_IPK_DIR)/usr/sbin/ - cp $(PKG_BUILD_DIR)/pptpctrl $(PKG_IPK_DIR)/usr/sbin/ - $(STRIP) $(PKG_IPK_DIR)/usr/sbin/* - mkdir -p $(PACKAGE_DIR) - find $(PKG_IPK_DIR) -name CVS | xargs rm -rf - $(IPKG_BUILD) $(PKG_IPK_DIR) $(PACKAGE_DIR) - -$(IPKG_STATE_DIR)/info/pptpd.list: $(PKG_IPK) - $(IPKG) install $(PKG_IPK) - -source: $(DL_DIR)/$(PKG_SOURCE) -prepare: $(PKG_BUILD_DIR)/.unpacked -compile: $(PKG_IPK) -install: $(IPKG_STATE_DIR)/info/pptpd.list + CC=$(TARGET_CC) \ + CFLAGS="$(TARGET_CFLAGS) -DSBINDIR=\\\"/usr/sbin\\\"" \ + DESTDIR="$(PKG_INSTALL_DIR)" \ + INSTALL="install" \ + all install + touch $(PKG_BUILD_DIR)/.built -clean: - rm -rf $(PKG_BUILD_DIR) - rm -f $(PKG_IPK) +$(IPKG_PPTPD): + install -d -m0755 $(IDIR_PPTPD)/etc + install -m0644 ./files/pptpd.conf $(IDIR_PPTPD)/etc/ + install -d -m0755 $(IDIR_PPTPD)/etc/init.d + install -m0644 ./files/pptpd.init $(IDIR_PPTPD)/etc/init.d/pptpd + install -d -m0755 $(IDIR_PPTPD)/etc/ppp + install -m0644 ./files/options.pptpd $(IDIR_PPTPD)/etc/ppp/ + install -d -m0755 $(IDIR_PPTPD)/usr/sbin + cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/pptpd $(IDIR_PPTPD)/usr/sbin/ + cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/pptpctrl $(IDIR_PPTPD)/usr/sbin/ + $(RSTRIP) $(IDIR_PPTPD) + $(IPKG_BUILD) $(IDIR_PPTPD) $(PACKAGE_DIR) diff --git a/openwrt/package/pptpd/ipkg/etc/ppp/pptp-server-options b/openwrt/package/pptpd/files/options.pptpd similarity index 100% rename from openwrt/package/pptpd/ipkg/etc/ppp/pptp-server-options rename to openwrt/package/pptpd/files/options.pptpd diff --git a/openwrt/package/pptpd/ipkg/etc/pptpd.conf b/openwrt/package/pptpd/files/pptpd.conf similarity index 100% rename from openwrt/package/pptpd/ipkg/etc/pptpd.conf rename to openwrt/package/pptpd/files/pptpd.conf diff --git a/openwrt/package/pptpd/files/pptpd.init b/openwrt/package/pptpd/files/pptpd.init new file mode 100644 index 0000000000..79db864f98 --- /dev/null +++ b/openwrt/package/pptpd/files/pptpd.init @@ -0,0 +1,25 @@ +#!/bin/sh + +BIN=pptpd +DEFAULT=/etc/default/$BIN +RUN_D=/var/run +PID_F=$RUN_D/$BIN.pid +[ -f $DEFAULT ] && . $DEFAULT + +case $1 in + start) + mkdir -p $RUN_D + for m in arc4 sha1 shlc ppp_generic ppp_async ppp_mppe_mppc; do + insmod $m >/dev/null 2>&1 + done + $BIN $OPTIONS + ;; + stop) + [ -f $PID_F ] && kill $(cat $PID_F) + ;; + *) + echo "usage: $0 (start|stop)" + exit 1 +esac + +exit $? diff --git a/openwrt/package/pptpd/ipkg/CONTROL/conffiles b/openwrt/package/pptpd/ipkg/CONTROL/conffiles deleted file mode 100644 index 34a387ba43..0000000000 --- a/openwrt/package/pptpd/ipkg/CONTROL/conffiles +++ /dev/null @@ -1,2 +0,0 @@ -/etc/ppp/pptp-server-options -/etc/pptpd.conf diff --git a/openwrt/package/pptpd/ipkg/pptpd.conffiles b/openwrt/package/pptpd/ipkg/pptpd.conffiles new file mode 100644 index 0000000000..c5afda91fb --- /dev/null +++ b/openwrt/package/pptpd/ipkg/pptpd.conffiles @@ -0,0 +1,2 @@ +/etc/ppp/options.pptpd +/etc/pptpd.conf diff --git a/openwrt/package/pptpd/pptpd.control b/openwrt/package/pptpd/ipkg/pptpd.control similarity index 100% rename from openwrt/package/pptpd/pptpd.control rename to openwrt/package/pptpd/ipkg/pptpd.control -- 2.30.2