diff options
author | mbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2004-08-24 23:50:14 +0000 |
---|---|---|
committer | mbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2004-08-24 23:50:14 +0000 |
commit | 097635b79bc6ddd6066a8369db6e298a25daa96e (patch) | |
tree | db8218863c9124ae287832ccd846ad4d96c2e05e /obsolete-buildroot/make/pptp-server.mk | |
parent | 54da0f9e4ba892d2613d4f0d0c4bf4eecdcfd0a4 (diff) |
massive changes
- sstrip cleanup from mjn3
- various patches from nico and others: http://openwrt.org/forum/viewtopic.php?t=368
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@145 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'obsolete-buildroot/make/pptp-server.mk')
-rw-r--r-- | obsolete-buildroot/make/pptp-server.mk | 105 |
1 files changed, 105 insertions, 0 deletions
diff --git a/obsolete-buildroot/make/pptp-server.mk b/obsolete-buildroot/make/pptp-server.mk new file mode 100644 index 000000000..d394c2686 --- /dev/null +++ b/obsolete-buildroot/make/pptp-server.mk @@ -0,0 +1,105 @@ +## pptp-server + +PPTPD_VERSION := 1.1.3 +PPTPD_RELEASE := 1 + +PPTPD_SOURCE := pptpd-1.1.3-20030409.tar.gz +PPTPD_SITE := http://unc.dl.sourceforge.net/sourceforge/poptop/ +PPTPD_DIR := $(BUILD_DIR)/poptop +PPTPD_CAT := zcat + +PPTPD_PATCH_DIR := $(SOURCE_DIR)/openwrt/patches/pptp-server + +PPTPD_BUILD_DIR := $(BUILD_DIR)/pptp-server_$(PPTPD_VERSION)-$(PPTPD_RELEASE) +PPTPD_IPK_DIR := $(OPENWRT_IPK_DIR)/pptp-server +PPTPD_IPK := $(PPTPD_BUILD_DIR)_$(ARCH).ipk + + +$(DL_DIR)/$(PPTPD_SOURCE): + $(WGET) -P $(DL_DIR) $(PPTPD_SITE)/$(PPTPD_SOURCE) + + +$(PPTPD_DIR)/.stamp-unpacked: $(DL_DIR)/$(PPTPD_SOURCE) + $(PPTPD_CAT) $(DL_DIR)/$(PPTPD_SOURCE) | tar -C $(BUILD_DIR) -xvf - + + touch $(PPTPD_DIR)/.stamp-unpacked + + +$(PPTPD_DIR)/.stamp-patched: $(PPTPD_DIR)/.stamp-unpacked + $(SOURCE_DIR)/patch-kernel.sh $(PPTPD_DIR) $(PPTPD_PATCH_DIR) + + touch $(PPTPD_DIR)/.stamp-patched + + +$(PPTPD_DIR)/.stamp-configured: $(PPTPD_DIR)/.stamp-patched + cd $(PPTPD_DIR) ; \ + rm -rf config.cache ; \ + aclocal ; \ + autoconf ; \ + $(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 \ + + touch $(PPTPD_DIR)/.stamp-configured + + +$(PPTPD_DIR)/.stamp-built: $(PPTPD_DIR)/.stamp-configured + cd $(PPTPD_DIR) ; \ + touch config.guess ; \ + touch config.sub ; \ + $(MAKE) \ + CC=$(TARGET_CC) \ + COPTS="$(TARGET_CFLAGS)" \ + all + + touch $(PPTPD_DIR)/.stamp-built + + +$(PPTPD_BUILD_DIR)/CONTROL/control: $(PPTPD_DIR)/.stamp-built + rm -rf $(PPTPD_BUILD_DIR) + mkdir -p $(PPTPD_BUILD_DIR)/usr/sbin + cp -a $(PPTPD_DIR)/pptpctrl $(PPTPD_BUILD_DIR)/usr/sbin/ + cp -a $(PPTPD_DIR)/pptpd $(PPTPD_BUILD_DIR)/usr/sbin/ + $(STRIP) $(PPTPD_BUILD_DIR)/usr/sbin/* + cp -a $(PPTPD_IPK_DIR)/root/* $(PPTPD_BUILD_DIR)/ + chmod 0755 $(PPTPD_BUILD_DIR)/etc + chmod 0755 $(PPTPD_BUILD_DIR)/etc/init.d + chmod 0755 $(PPTPD_BUILD_DIR)/etc/init.d/* + chmod 0755 $(PPTPD_BUILD_DIR)/etc/ppp + chmod 0644 $(PPTPD_BUILD_DIR)/etc/ppp/pptp-server-options + chmod 0644 $(PPTPD_BUILD_DIR)/etc/pptpd.conf + chmod 0755 $(PPTPD_BUILD_DIR)/usr + chmod 0755 $(PPTPD_BUILD_DIR)/usr/sbin + chmod 0755 $(PPTPD_BUILD_DIR)/usr/sbin/* + cp -a $(PPTPD_IPK_DIR)/CONTROL $(PPTPD_BUILD_DIR)/ + perl -pi -e "s/^Vers.*:.*$$/Version: $(PPTPD_VERSION)-$(PPTPD_RELEASE)/" $(PPTPD_BUILD_DIR)/CONTROL/control + perl -pi -e "s/^Arch.*:.*$$/Architecture: $(ARCH)/" $(PPTPD_BUILD_DIR)/CONTROL/control + + touch $(PPTPD_BUILD_DIR)/CONTROL/control + + +$(PPTPD_IPK): $(PPTPD_BUILD_DIR)/CONTROL/control + cd $(BUILD_DIR); $(IPKG_BUILD) $(PPTPD_BUILD_DIR) + + +pptp-server-ipk: ipkg-utils $(PPTPD_IPK) + +pptp-server-clean: + rm -rf $(PPTPD_IPK) + rm -rf $(PPTPD_BUILD_DIR) + rm -rf $(PPTPD_DIR) |