diff options
Diffstat (limited to 'openwrt/package/gmp')
-rw-r--r-- | openwrt/package/gmp/Config.in | 6 | ||||
-rw-r--r-- | openwrt/package/gmp/Makefile | 67 | ||||
-rw-r--r-- | openwrt/package/gmp/gmp.control | 8 |
3 files changed, 81 insertions, 0 deletions
diff --git a/openwrt/package/gmp/Config.in b/openwrt/package/gmp/Config.in new file mode 100644 index 0000000000..c70af8e3c7 --- /dev/null +++ b/openwrt/package/gmp/Config.in @@ -0,0 +1,6 @@ +config BR2_PACKAGE_GMP + tristate "libgmp" + default m + help + libgmp + diff --git a/openwrt/package/gmp/Makefile b/openwrt/package/gmp/Makefile new file mode 100644 index 0000000000..eb835c2f3f --- /dev/null +++ b/openwrt/package/gmp/Makefile @@ -0,0 +1,67 @@ +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=gmp +PKG_VERSION:=4.1.4 +PKG_RELEASE:=1 +PKG_MD5SUM:=0aa7d3b3f5b5ec5951e7dddd6f65e891 + +PKG_SOURCE_URL:=ftp://ftp.gnu.org/gnu/gmp/ +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_CAT:=bzcat +PKG_IPK:=$(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk +PKG_IPK_DIR:=$(PKG_BUILD_DIR)/ipkg + +$(DL_DIR)/$(PKG_SOURCE): + $(SCRIPT_DIR)/download.pl $(DL_DIR) $(PKG_SOURCE) $(PKG_MD5SUM) $(PKG_SOURCE_URL) + +$(PKG_BUILD_DIR)/.unpacked: $(DL_DIR)/$(PKG_SOURCE) + $(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 + (cd $(PKG_BUILD_DIR); rm -rf config.cache; \ + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS)" \ + ./configure \ + --target=$(GNU_TARGET_NAME) \ + --host=$(GNU_TARGET_NAME) \ + --build=$(GNU_HOST_NAME) \ + --prefix=/usr \ + --exec-prefix=/usr \ + --bindir=/usr/bin \ + --sbindir=/usr/sbin \ + --libexecdir=/usr/lib \ + --sysconfdir=/etc \ + --datadir=/usr/share \ + --localstatedir=/var \ + --mandir=/usr/man \ + --infodir=/usr/info \ + ); + touch $(PKG_BUILD_DIR)/.configured + +$(PKG_BUILD_DIR)/.libs/libgmp.so: $(PKG_BUILD_DIR)/.configured + $(MAKE) -C $(PKG_BUILD_DIR) + +$(PKG_IPK): $(PKG_BUILD_DIR)/.libs/libgmp.so + $(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH) + $(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_IPK_DIR)" install + rm $(PKG_IPK_DIR)/usr/lib/*.la + rm $(PKG_IPK_DIR)/usr/lib/*.a + $(STRIP) $(PKG_IPK_DIR)/usr/lib/*.so + mkdir -p $(PACKAGE_DIR) + $(IPKG_BUILD) $(PKG_IPK_DIR) $(PACKAGE_DIR) + +$(IPKG_STATE_DIR)/info/$(PKG_NAME).list: $(PKG_IPK) + $(IPKG) install $(PKG_IPK) + +source: $(DL_DIR)/$(PKG_SOURCE) +prepare: $(PKG_BUILD_DIR)/.unpacked +compile: $(PKG_IPK) +install: $(IPKG_STATE_DIR)/info/$(PKG_NAME).list + +clean: + rm -rf $(PKG_BUILD_DIR) + rm -f $(PKG_IPK) diff --git a/openwrt/package/gmp/gmp.control b/openwrt/package/gmp/gmp.control new file mode 100644 index 0000000000..43b569fbc2 --- /dev/null +++ b/openwrt/package/gmp/gmp.control @@ -0,0 +1,8 @@ +Package: gmp +Priority: optional +Section: net +Version: 4.1.4-1 +Architecture: mipsel +Maintainer: Waldemar Brodkorb <wbx@dass-it.de> +Source: buildroot internal +Description: GNU multiprecision library |