From: blogic Date: Sun, 7 Oct 2007 00:49:11 +0000 (+0000) Subject: added a binutils package X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=98c2c1dd03effe4379d33fcca7601e8e3030c5bf;p=packages.git added a binutils package git-svn-id: svn://svn.openwrt.org/openwrt/packages@9169 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/utils/binutils/Makefile b/utils/binutils/Makefile new file mode 100644 index 000000000..37dd36b5c --- /dev/null +++ b/utils/binutils/Makefile @@ -0,0 +1,60 @@ +# +# Copyright (C) 2006 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:=binutils +PKG_VERSION:=$(strip $(subst ",, $(CONFIG_BINUTILS_VERSION))) +#")) +PKG_RELEASE:=1 +PKG_SOURCE_URL:=http://ftp.gnu.org/gnu/binutils/ \ + ftp://gatekeeper.dec.com/pub/GNU/ \ + ftp://ftp.uu.net/archive/systems/gnu/ \ + ftp://ftp.eu.uu.net/pub/gnu/ \ + ftp://ftp.funet.fi/pub/gnu/prep/ \ + ftp://ftp.leo.org/pub/comp/os/unix/gnu/ + +PKG_SOURCE:=binutils-$(PKG_VERSION).tar.bz2 +PATCH_DIR:=$(TOPDIR)/toolchain/binutils/patches/$(PKG_VERSION) + +include $(INCLUDE_DIR)/package.mk + +CONFIGURE_ARGS_XTRA+=--disable-werror \ + --disable-nls + +define Package/binutils + SECTION:=utils + CATEGORY:=Utilities + TITLE:=binutils +endef + +define Package/binutils/description + The Binutils package contains a linker, an assembler, and other tools for handling object files +endef + +define Build/Configure + (cd $(PKG_BUILD_DIR)/; \ + $(TARGET_CONFIGURE_OPTS) \ + $(CONFIGURE_VARS) \ + $(CONFIGURE_CMD) \ + $(CONFIGURE_ARGS_XTRA) \ + $(CONFIGURE_ARGS) \ + ); +endef + +define Build/Compile + make -C $(PKG_BUILD_DIR)/bfd/doc/ CFLAGS="-I$(PKG_BUILD_DIR)/include" chew + $(MAKE) -C $(PKG_BUILD_DIR) all + $(MAKE) -C $(PKG_BUILD_DIR) install DESTDIR=$(PKG_INSTALL_DIR) +endef + +define Package/binutils/install + $(INSTALL_DIR) $(1)/usr + $(CP) $(PKG_INSTALL_DIR)/usr/bin/ $(1)/usr + $(CP) $(PKG_INSTALL_DIR)/usr/*-linux $(1)/usr +endef + +$(eval $(call BuildPackage,binutils))