X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/27ff368270555c56478cca1ac22b817108c2a492..8d05a2ae7e488f74b0203eebe580aab3bae53ca6:/package/ppp/Makefile diff --git a/package/ppp/Makefile b/package/ppp/Makefile index b893b1ec5..ed692103b 100644 --- a/package/ppp/Makefile +++ b/package/ppp/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2010 OpenWrt.org +# Copyright (C) 2006-2011 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,12 +9,14 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=ppp -PKG_VERSION:=2.4.4 -PKG_RELEASE:=12 +PKG_VERSION:=2.4.5 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=ftp://ftp.samba.org/pub/ppp/ -PKG_MD5SUM:=183800762e266132218b204dfb428d29 +PKG_MD5SUM:=4621bc56167b6953ec4071043fe0ec57 + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION) PKG_BUILD_DEPENDS:=libpcap @@ -33,7 +35,14 @@ define Package/ppp $(call Package/ppp/Default) DEPENDS:=+kmod-ppp TITLE:=PPP daemon - MENU:=1 + VARIANT:=default +endef + +define Package/ppp-multilink +$(call Package/ppp/Default) + DEPENDS:=+kmod-ppp + TITLE:=PPP daemon (with multilink support) + VARIANT:=multilink endef define Package/ppp/description @@ -52,7 +61,7 @@ endef define Package/ppp-mod-pppoa $(call Package/ppp/Default) - DEPENDS:=ppp +linux-atm +kmod-pppoa + DEPENDS:=@(PACKAGE_ppp||PACKAGE_ppp-multilink) +linux-atm +kmod-pppoa TITLE:=PPPoA plugin endef @@ -62,7 +71,7 @@ endef define Package/ppp-mod-pppoe $(call Package/ppp/Default) - DEPENDS:=ppp +kmod-pppoe + DEPENDS:=@(PACKAGE_ppp||PACKAGE_ppp-multilink) +kmod-pppoe TITLE:=PPPoE plugin endef @@ -72,7 +81,7 @@ endef define Package/ppp-mod-radius $(call Package/ppp/Default) - DEPENDS:=ppp + DEPENDS:=@(PACKAGE_ppp||PACKAGE_ppp-multilink) TITLE:=RADIUS plugin endef @@ -88,7 +97,7 @@ endef define Package/chat $(call Package/ppp/Default) - DEPENDS:=ppp + DEPENDS:=@(PACKAGE_ppp||PACKAGE_ppp-multilink) TITLE:=Establish conversation with a modem endef @@ -99,7 +108,7 @@ endef define Package/pppdump $(call Package/ppp/Default) - DEPENDS:=ppp + DEPENDS:=@(PACKAGE_ppp||PACKAGE_ppp-multilink) TITLE:=Read PPP record file endef @@ -109,7 +118,7 @@ endef define Package/pppstats $(call Package/ppp/Default) - DEPENDS:=ppp + DEPENDS:=@(PACKAGE_ppp||PACKAGE_ppp-multilink) TITLE:=Report PPP statistics endef @@ -135,6 +144,13 @@ MAKE_FLAGS += COPTS="$(TARGET_CFLAGS)" \ PRECOMPILED_FILTER=1 \ STAGING_DIR="$(STAGING_DIR)" +ifeq ($(BUILD_VARIANT),multilink) + MAKE_FLAGS += HAVE_MULTILINK=y +else + MAKE_FLAGS += HAVE_MULTILINK= +endif + + define Build/InstallDev $(INSTALL_DIR) $(1)/usr/include $(CP) $(PKG_INSTALL_DIR)/include/pppd $(1)/usr/include/ @@ -158,6 +174,7 @@ define Package/ppp/install $(INSTALL_DATA) ./files/etc/ppp/options $(1)/etc/ppp/ ln -sf /tmp/resolv.conf.ppp $(1)/etc/ppp/resolv.conf endef +Package/ppp-multilink/install=$(Package/ppp/install) define Package/ppp-mod-pppoa/install $(INSTALL_DIR) $(1)/usr/lib/pppd/$(PKG_VERSION) @@ -206,6 +223,7 @@ define Package/pppstats/install endef $(eval $(call BuildPackage,ppp)) +$(eval $(call BuildPackage,ppp-multilink)) $(eval $(call BuildPackage,ppp-mod-pppoa)) $(eval $(call BuildPackage,ppp-mod-pppoe)) $(eval $(call BuildPackage,ppp-mod-radius))