X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=package%2Flinux-atm%2FMakefile;h=4edd362710821916e35191a0ddabd213de005b42;hb=704ec3531351d45a54ddb8a74b7d13476e54f477;hp=3745c7c87e63c34158d8500f17b856954882e962;hpb=5e8368aba49d428e6b733dea0fb8db925c5a3d9b;p=openwrt-10.03%2F.git diff --git a/package/linux-atm/Makefile b/package/linux-atm/Makefile index 3745c7c87..4edd36271 100644 --- a/package/linux-atm/Makefile +++ b/package/linux-atm/Makefile @@ -15,10 +15,6 @@ PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/l/linux-atm/ PKG_MD5SUM:=84fef49cc39ff2605204246666f65864 -PKG_CAT:=zcat - -PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) -PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install include $(INCLUDE_DIR)/package.mk @@ -35,27 +31,18 @@ define Package/linux-atm This package contains a library for accessing the Linux ATM subsystem. endef -define Package/br2684ctl - $(call Package/linux-atm/Default) - SECTION:=net - CATEGORY:=Network - DEPENDS:=+linux-atm - TITLE:=RFC2684 bridging utility - DESCRIPTION:=\ - This package contains an ATM RFC2684 bridging utility. -endef - define Build/Configure $(call Build/Configure/Default) # prevent autoheader invocation touch $(PKG_BUILD_DIR)/stamp-h.in endef +TARGET_CFLAGS := -I$(PKG_BUILD_DIR)/src/include $(TARGET_CFLAGS) define Build/Compile - $(call Build/Compile/Default, \ + $(MAKE) -C $(PKG_BUILD_DIR) \ + $(TARGET_CONFIGURE_OPTS) \ DESTDIR="$(PKG_INSTALL_DIR)" \ - all install \ - ) + all install endef define Build/InstallDev @@ -73,20 +60,12 @@ define Build/UninstallDev endef define Package/linux-atm/install - install -d -m0755 $(1)/usr/lib + $(INSTALL_DIR) $(1)/usr/lib cp -f $(PKG_INSTALL_DIR)/usr/lib/libatm.so.1 $(1)/usr/lib endef -define Package/br2684ctl/install - install -d -m0755 $(1)/usr/sbin - $(CP) $(PKG_INSTALL_DIR)/usr/sbin/br2684ctl $(1)/usr/sbin/ - install -d -m0755 $(1)/etc/hotplug.d/net - install -m0644 ./files/br2684.hotplug $(1)/etc/hotplug.d/net/30-br2684 -endef - $(eval $(call BuildPackage,linux-atm)) -$(eval $(call BuildPackage,br2684ctl)) -$(eval $(call RequireCommand,automake-1.4, \ - $(PKG_NAME) requires automake-1.4. \ +$(eval $(call RequireCommand,automake, \ + $(PKG_NAME) requires automake. \ ))