42582ae223
Old pptpd 1.3.4 suffers from an old bug that gcc 4.8 has apparently brought
to surface (analysed in bug #12909).
The problem has been fixed upstream and is included in 1.4.0 release from
October 2013.
http://sourceforge.net/p/poptop/mailman/message/30453437/
db9a847936
/
http://sourceforge.net/projects/poptop/
The patch bumps pptpd from 6-year old 1.3.4 to 1.4.0.
Related bugs #15428, #15635, #12909, #15490.
https://dev.openwrt.org/ticket/12909
https://dev.openwrt.org/ticket/15428 (AA12.09)
https://dev.openwrt.org/ticket/15490
https://dev.openwrt.org/ticket/15635
I have compiled and briefly tested on ar71xx/wndr3700 with trunk.
signed-off-by: hannu.nyman@iki.fi
git-svn-id: svn://svn.openwrt.org/openwrt/packages@40671 3c298f89-4303-0410-b956-a3cf2f4a3e73
67 lines
1.5 KiB
Makefile
67 lines
1.5 KiB
Makefile
#
|
|
# Copyright (C) 2006-2014 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=pptpd
|
|
PKG_VERSION:=1.4.0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=@SF/poptop
|
|
PKG_MD5SUM:=36f9f45c6ffa92bc3b6e24ae2d053505
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/pptpd
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+kmod-ppp +kmod-gre +kmod-mppe +ppp
|
|
TITLE:=PopTop pptp server
|
|
URL:=http://www.poptop.org/
|
|
SUBMENU:=VPN
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--enable-bcrelay \
|
|
|
|
CONFIGURE_VARS += \
|
|
ac_cv_header_libintl_h=no \
|
|
|
|
MAKE_FLAGS += \
|
|
COPTS="$(TARGET_CFLAGS)" \
|
|
INSTALL="install" \
|
|
|
|
define Package/pptpd/conffiles
|
|
/etc/pptpd.conf
|
|
/etc/ppp/options.pptpd
|
|
/etc/config/pptpd
|
|
endef
|
|
|
|
define Package/pptpd/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(CP) \
|
|
$(PKG_INSTALL_DIR)/usr/sbin/bcrelay \
|
|
$(PKG_INSTALL_DIR)/usr/sbin/pptpctrl \
|
|
$(PKG_INSTALL_DIR)/usr/sbin/pptpd \
|
|
$(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/usr/lib/pptpd
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pptpd/* $(1)/usr/lib/pptpd/
|
|
$(INSTALL_DIR) $(1)/etc
|
|
$(INSTALL_DATA) ./files/pptpd.conf $(1)/etc/
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/pptpd.init $(1)/etc/init.d/pptpd
|
|
$(INSTALL_DIR) $(1)/etc/ppp
|
|
$(INSTALL_DATA) ./files/options.pptpd $(1)/etc/ppp/
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_DATA) ./files/pptpd.config $(1)/etc/config/pptpd
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,pptpd))
|