From: Nicolas Thill Date: Fri, 13 May 2005 04:04:27 +0000 (+0000) Subject: Add libtool package X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=b1f754bc2eb49441c357c43e7550d0f87b416a9b Add libtool package SVN-Revision: 873 --- diff --git a/openwrt/package/Config.in b/openwrt/package/Config.in index 742541558c..bee6cb8440 100644 --- a/openwrt/package/Config.in +++ b/openwrt/package/Config.in @@ -86,6 +86,7 @@ source "package/libpng/Config.in" source "package/libgd/Config.in" source "package/cyrus-sasl/Config.in" source "package/openldap/Config.in" +source "package/libtool/Config.in" comment "Extra stuff" source "package/sdk/Config.in" diff --git a/openwrt/package/Makefile b/openwrt/package/Makefile index 2ab2bcb691..f9d161f718 100644 --- a/openwrt/package/Makefile +++ b/openwrt/package/Makefile @@ -81,6 +81,7 @@ package-$(BR2_PACKAGE_LIBPCAP) += libpcap package-$(BR2_PACKAGE_LIBPNG) += libpng package-$(BR2_PACKAGE_LIBPQ) += postgresql package-$(BR2_PACKAGE_LIBSASL2) += cyrus-sasl +package-$(BR2_PACKAGE_LIBLTDL) += libtool DEV_LIBS:=tcp_wrappers glib ncurses openssl pcre popt zlib libnet libpcap mysql postgresql iptables matrixssl lzo gmp fuse portmap libelf uclibc++ speex libpng libgd DEV_LIBS_COMPILE:=$(patsubst %,%-compile,$(DEV_LIBS)) diff --git a/openwrt/package/libtool/Config.in b/openwrt/package/libtool/Config.in new file mode 100644 index 0000000000..8c721166a2 --- /dev/null +++ b/openwrt/package/libtool/Config.in @@ -0,0 +1,7 @@ +config BR2_PACKAGE_LIBLTDL + tristate "libltdl (a generic dynamic object loading library)" + default m if CONFIG_DEVEL + help + A generic dynamic object loading library. + + http://www.gnu.org/software/libtool/ diff --git a/openwrt/package/libtool/Makefile b/openwrt/package/libtool/Makefile new file mode 100644 index 0000000000..a6710368d5 --- /dev/null +++ b/openwrt/package/libtool/Makefile @@ -0,0 +1,79 @@ +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=libtool +PKG_VERSION:=1.5.14 +PKG_RELEASE:=1 +PKG_MD5SUM:=049bf67de9b0eb75cd943dafe3d749ec + +PKG_SOURCE_URL:= \ + http://ftp.gnu.org/gnu/libtool/ \ + http://nthill.free.fr/openwrt/sources/$(PKG_NAME)/ +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_CAT:=zcat + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install + +include $(TOPDIR)/package/rules.mk + +$(eval $(call PKG_template,LIBLTDL,libltdl,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) + +$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared + (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \ + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS)" \ + ./configure \ + --target=$(GNU_TARGET_NAME) \ + --host=$(GNU_TARGET_NAME) \ + --build=$(GNU_HOST_NAME) \ + --program-prefix="" \ + --program-suffix="" \ + --prefix=/usr \ + --exec-prefix=/usr \ + --bindir=/usr/bin \ + --datadir=/usr/share \ + --includedir=/usr/include \ + --infodir=/usr/share/info \ + --libdir=/usr/lib \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --mandir=/usr/share/man \ + --sbindir=/usr/sbin \ + --sysconfdir=/etc \ + $(DISABLE_NLS) \ + $(DISABLE_LARGEFILE) \ + --enable-shared \ + --enable-static \ + ); + touch $(PKG_BUILD_DIR)/.configured + +$(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured + $(MAKE) -C $(PKG_BUILD_DIR) + mkdir -p $(PKG_INSTALL_DIR) + $(MAKE) -C $(PKG_BUILD_DIR) \ + DESTDIR="$(PKG_INSTALL_DIR)" \ + install + touch $(PKG_BUILD_DIR)/.built + +$(IPKG_LIBLTDL): + install -m0755 -d $(IDIR_LIBLTDL)/usr/lib + cp -fpR $(PKG_INSTALL_DIR)/usr/lib/libltdl.so.* $(IDIR_LIBLTDL)/usr/lib/ + $(RSTRIP) $(IDIR_LIBLTDL) + $(IPKG_BUILD) $(IDIR_LIBLTDL) $(PACKAGE_DIR) + +$(STAGING_DIR)/usr/lib/libltdl.so: $(PKG_BUILD_DIR)/.built + mkdir -p $(STAGING_DIR)/usr/include + cp -fpR $(PKG_INSTALL_DIR)/usr/include/ltdl.h $(STAGING_DIR)/usr/include/ + mkdir -p $(I_LIBLTDL_DEV)/usr/lib + cp -fpR $(PKG_INSTALL_DIR)/usr/lib/libltdl.{a,so*} $(STAGING_DIR)/usr/lib/ + +install-dev: $(STAGING_DIR)/usr/lib/libltdl.so + +uninstall-dev: + rm -rf $(STAGING_DIR)/usr/include/ltdl* + rm -rf $(STAGING_DIR)/usr/lib/libltdl.{a,so*} + +compile: install-dev +clean: uninstall-dev diff --git a/openwrt/package/libtool/ipkg/libltdl.control b/openwrt/package/libtool/ipkg/libltdl.control new file mode 100644 index 0000000000..55a3c8efd1 --- /dev/null +++ b/openwrt/package/libtool/ipkg/libltdl.control @@ -0,0 +1,8 @@ +Package: libltdl +Priority: optional +Section: libs +Version: [TBDL] +Architecture: [TBDL] +Maintainer: Nico +Source: http://nthill.free.fr/openwrt/sources/libtool/ +Description: a generic dynamic object loading library