mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 22:44:27 -05:00 
			
		
		
		
	Convert pptpd to new packaging style
SVN-Revision: 942
This commit is contained in:
		
							parent
							
								
									ad8d8e100e
								
							
						
					
					
						commit
						d6dd9bf941
					
				@ -1,7 +1,12 @@
 | 
				
			|||||||
config BR2_PACKAGE_PPTPD
 | 
					config BR2_PACKAGE_PPTPD
 | 
				
			||||||
	tristate "PPTP Server"
 | 
						prompt "pptpd - a PPTP (Point-to-Point Tunneling Protocol) server"
 | 
				
			||||||
 | 
						tristate
 | 
				
			||||||
	default m if CONFIG_DEVEL
 | 
						default m if CONFIG_DEVEL
 | 
				
			||||||
	select BR2_PACKAGE_KMOD_GRE
 | 
						select BR2_PACKAGE_KMOD_GRE
 | 
				
			||||||
	select BR2_PACKAGE_PPP
 | 
						select BR2_PACKAGE_PPP
 | 
				
			||||||
	help
 | 
						help
 | 
				
			||||||
	  A Point-to-Point Tunneling Protocol Server 
 | 
						  A Point-to-Point Tunneling Protocol server
 | 
				
			||||||
 | 
						  
 | 
				
			||||||
 | 
						  http://poptop.sourceforge.net/
 | 
				
			||||||
 | 
						  
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -9,65 +9,61 @@ PKG_MD5SUM:=a521e40ca304b0c125cc25f9b9d03324
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
PKG_SOURCE_URL:=@SF/poptop
 | 
					PKG_SOURCE_URL:=@SF/poptop
 | 
				
			||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
 | 
					PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
 | 
				
			||||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
 | 
					 | 
				
			||||||
PKG_CAT:=zcat
 | 
					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):
 | 
					PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
 | 
				
			||||||
	 $(SCRIPT_DIR)/download.pl $(DL_DIR) $(PKG_SOURCE) $(PKG_MD5SUM) $(PKG_SOURCE_URL)
 | 
					PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
 | 
				
			||||||
 | 
					
 | 
				
			||||||
$(PKG_BUILD_DIR)/.unpacked: $(DL_DIR)/$(PKG_SOURCE)
 | 
					include $(TOPDIR)/package/rules.mk
 | 
				
			||||||
	$(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
 | 
					 | 
				
			||||||
	touch $(PKG_BUILD_DIR)/.unpacked
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.unpacked
 | 
					$(eval $(call PKG_template,PPTPD,pptpd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
 | 
				
			||||||
	(cd $(PKG_BUILD_DIR) ; \
 | 
					
 | 
				
			||||||
	$(TARGET_CONFIGURE_OPTS) \
 | 
					$(PKG_BUILD_DIR)/.configured:
 | 
				
			||||||
	CFLAGS="$(TARGET_CFLAGS)" \
 | 
						(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status}; \
 | 
				
			||||||
	./configure \
 | 
							$(TARGET_CONFIGURE_OPTS) \
 | 
				
			||||||
	  --target=$(GNU_TARGET_NAME) \
 | 
							CFLAGS="$(TARGET_CFLAGS)" \
 | 
				
			||||||
	  --host=$(GNU_TARGET_NAME) \
 | 
							./configure \
 | 
				
			||||||
	  --build=$(GNU_HOST_NAME) \
 | 
							  --target=$(GNU_TARGET_NAME) \
 | 
				
			||||||
	  --prefix=/usr \
 | 
							  --host=$(GNU_TARGET_NAME) \
 | 
				
			||||||
	  --exec-prefix=/usr \
 | 
							  --build=$(GNU_HOST_NAME) \
 | 
				
			||||||
	  --bindir=/usr/bin \
 | 
							  --program-prefix="" \
 | 
				
			||||||
	  --sbindir=/usr/sbin \
 | 
							  --program-suffix="" \
 | 
				
			||||||
	  --libexecdir=/usr/lib \
 | 
							  --prefix=/usr \
 | 
				
			||||||
	  --datadir=/usr/share \
 | 
							  --exec-prefix=/usr \
 | 
				
			||||||
	  --infodir=/usr/share/info \
 | 
							  --bindir=/usr/bin \
 | 
				
			||||||
	  --mandir=/usr/share/man \
 | 
							  --datadir=/usr/share \
 | 
				
			||||||
	  --localstatedir=/var \
 | 
							  --includedir=/usr/include \
 | 
				
			||||||
	  --sysconfdir=/etc \
 | 
							  --infodir=/usr/share/info \
 | 
				
			||||||
	  $(DISABLE_NLS) \
 | 
							  --libdir=/usr/lib \
 | 
				
			||||||
	  --with-pppd-ip-alloc)
 | 
							  --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
 | 
						touch $(PKG_BUILD_DIR)/.configured
 | 
				
			||||||
 | 
					
 | 
				
			||||||
$(PKG_BUILD_DIR)/$(PKG_NAME): $(PKG_BUILD_DIR)/.configured
 | 
					$(PKG_BUILD_DIR)/.built:
 | 
				
			||||||
	$(MAKE) -C $(PKG_BUILD_DIR) \
 | 
						$(MAKE) -C $(PKG_BUILD_DIR) \
 | 
				
			||||||
	 CC=$(TARGET_CC) \
 | 
							CC=$(TARGET_CC) \
 | 
				
			||||||
	 CFLAGS="$(TARGET_CFLAGS) -DSBINDIR=\\\"/usr/sbin\\\"" \
 | 
							CFLAGS="$(TARGET_CFLAGS) -DSBINDIR=\\\"/usr/sbin\\\"" \
 | 
				
			||||||
	 all
 | 
							DESTDIR="$(PKG_INSTALL_DIR)" \
 | 
				
			||||||
 | 
							INSTALL="install" \
 | 
				
			||||||
 | 
							all install
 | 
				
			||||||
 | 
						touch $(PKG_BUILD_DIR)/.built
 | 
				
			||||||
 | 
					
 | 
				
			||||||
$(PKG_IPK): $(PKG_BUILD_DIR)/$(PKG_NAME)
 | 
					$(IPKG_PPTPD):
 | 
				
			||||||
	mkdir -p $(PKG_IPK_DIR)/usr/sbin
 | 
						install -d -m0755 $(IDIR_PPTPD)/etc
 | 
				
			||||||
	cp -a ./ipkg/* $(PKG_IPK_DIR)/
 | 
						install -m0644 ./files/pptpd.conf $(IDIR_PPTPD)/etc/
 | 
				
			||||||
	$(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH)
 | 
						install -d -m0755 $(IDIR_PPTPD)/etc/init.d
 | 
				
			||||||
	cp $(PKG_BUILD_DIR)/pptpd $(PKG_IPK_DIR)/usr/sbin/
 | 
						install -m0644 ./files/pptpd.init $(IDIR_PPTPD)/etc/init.d/pptpd
 | 
				
			||||||
	cp $(PKG_BUILD_DIR)/pptpctrl $(PKG_IPK_DIR)/usr/sbin/
 | 
						install -d -m0755 $(IDIR_PPTPD)/etc/ppp
 | 
				
			||||||
	$(STRIP) $(PKG_IPK_DIR)/usr/sbin/*
 | 
						install -m0644 ./files/options.pptpd $(IDIR_PPTPD)/etc/ppp/
 | 
				
			||||||
	mkdir -p $(PACKAGE_DIR)
 | 
						install -d -m0755 $(IDIR_PPTPD)/usr/sbin
 | 
				
			||||||
	find $(PKG_IPK_DIR) -name CVS | xargs rm -rf
 | 
						cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/pptpd $(IDIR_PPTPD)/usr/sbin/
 | 
				
			||||||
	$(IPKG_BUILD) $(PKG_IPK_DIR) $(PACKAGE_DIR)
 | 
						cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/pptpctrl $(IDIR_PPTPD)/usr/sbin/
 | 
				
			||||||
 | 
						$(RSTRIP) $(IDIR_PPTPD)
 | 
				
			||||||
$(IPKG_STATE_DIR)/info/pptpd.list: $(PKG_IPK)
 | 
						$(IPKG_BUILD) $(IDIR_PPTPD) $(PACKAGE_DIR)
 | 
				
			||||||
	$(IPKG) install $(PKG_IPK)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
source: $(DL_DIR)/$(PKG_SOURCE)
 | 
					 | 
				
			||||||
prepare: $(PKG_BUILD_DIR)/.unpacked
 | 
					 | 
				
			||||||
compile: $(PKG_IPK)
 | 
					 | 
				
			||||||
install: $(IPKG_STATE_DIR)/info/pptpd.list
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
clean:
 | 
					 | 
				
			||||||
	rm -rf $(PKG_BUILD_DIR)
 | 
					 | 
				
			||||||
	rm -f $(PKG_IPK)
 | 
					 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										25
									
								
								openwrt/package/pptpd/files/pptpd.init
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								openwrt/package/pptpd/files/pptpd.init
									
									
									
									
									
										Normal file
									
								
							@ -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 $?
 | 
				
			||||||
@ -1,2 +0,0 @@
 | 
				
			|||||||
/etc/ppp/pptp-server-options
 | 
					 | 
				
			||||||
/etc/pptpd.conf
 | 
					 | 
				
			||||||
							
								
								
									
										2
									
								
								openwrt/package/pptpd/ipkg/pptpd.conffiles
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								openwrt/package/pptpd/ipkg/pptpd.conffiles
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,2 @@
 | 
				
			|||||||
 | 
					/etc/ppp/options.pptpd
 | 
				
			||||||
 | 
					/etc/pptpd.conf
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user