diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-04-18 06:33:29 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-04-18 06:33:29 +0000 |
commit | d1f57a6a03fb3a4566e561b9db03d92cea887aa4 (patch) | |
tree | 3d3457fe92beaf91b68c9e033c6549895da70ad6 /package/pcre/ipkg | |
parent | de6f4c48f9f0739d06b107990a3a14d710e95052 (diff) | |
download | upstream-d1f57a6a03fb3a4566e561b9db03d92cea887aa4.tar.gz upstream-d1f57a6a03fb3a4566e561b9db03d92cea887aa4.tar.bz2 upstream-d1f57a6a03fb3a4566e561b9db03d92cea887aa4.zip |
Use common rules and templates, uniformize package Makefile, move ipkg related files to ./ipkg
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@664 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/pcre/ipkg')
-rw-r--r-- | package/pcre/ipkg/libpcre-dev/CONTROL/control | 8 | ||||
-rw-r--r-- | package/pcre/ipkg/libpcre.control (renamed from package/pcre/ipkg/libpcre/CONTROL/control) | 0 | ||||
-rw-r--r-- | package/pcre/ipkg/rules | 141 | ||||
-rw-r--r-- | package/pcre/ipkg/version | 1 |
4 files changed, 0 insertions, 150 deletions
diff --git a/package/pcre/ipkg/libpcre-dev/CONTROL/control b/package/pcre/ipkg/libpcre-dev/CONTROL/control deleted file mode 100644 index 17188856ce..0000000000 --- a/package/pcre/ipkg/libpcre-dev/CONTROL/control +++ /dev/null @@ -1,8 +0,0 @@ -Package: libpcre-dev -Priority: optional -Section: devel -Version: [TBDL] -Architecture: [TBDL] -Maintainer: Nico <nthill@free.fr> -Source: http://nthill.free.fr/openwrt/sources/pcre/ -Description: a Perl Compatible Regular Expression library (development) diff --git a/package/pcre/ipkg/libpcre/CONTROL/control b/package/pcre/ipkg/libpcre.control index 2bda390797..2bda390797 100644 --- a/package/pcre/ipkg/libpcre/CONTROL/control +++ b/package/pcre/ipkg/libpcre.control diff --git a/package/pcre/ipkg/rules b/package/pcre/ipkg/rules deleted file mode 100644 index ead5116d80..0000000000 --- a/package/pcre/ipkg/rules +++ /dev/null @@ -1,141 +0,0 @@ -#!/usr/bin/make -f - -ifneq ($(strip ${IPKG_RULES_INC}),) - include $(IPKG_RULES_INC) -endif - -## - -PKG_VERSION := $(shell cat ./ipkg/version) -CURRENT_DIR := $(shell pwd) -INSTALL_DIR ?= $(CURRENT_DIR)/ipkg-install - -unexport INSTALL_DIR - -I_LIBPCRE := ipkg/libpcre -I_LIBPCRE_DEV := ipkg/libpcre-dev - -BUILD_DEPS := \ - -CONFIGURE_OPTS = \ - --enable-shared \ - --enable-static \ - --enable-utf8 \ - -## - -all: package - - -.stamp-configured: $(BUILD_DEPS) - - 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 \ - --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_LARGEFILE) \ - $(DISABLE_NLS) \ - $(CONFIGURE_OPTS) \ - - touch .stamp-configured - - -.stamp-built: .stamp-configured - - $(MAKE) \ - CC_FOR_BUILD="$(HOSTCC)" \ - LINK_FOR_BUILD="$(HOSTCC)" \ - CFLAGS_FOR_BUILD="" \ - dftables - - $(MAKE) \ - $(TARGET_CONFIGURE_OPTS) \ - CFLAGS="$(TARGET_CFLAGS)" \ - - touch .stamp-built - - -$(INSTALL_DIR)/usr/include/pcre.h: .stamp-built - - mkdir -p $(INSTALL_DIR) - - $(MAKE) \ - DESTDIR="$(INSTALL_DIR)" \ - install - - rm -f $(INSTALL_DIR)/usr/lib/libpcre*.la - - -configure: .stamp-configured - - -build: .stamp-built - - -install: $(INSTALL_DIR)/usr/include/pcre.h - - -package: $(INSTALL_DIR)/usr/include/pcre.h - - mkdir -p $(I_LIBPCRE)/usr/lib - cp -fpR $(INSTALL_DIR)/usr/lib/libpcre*.so.* $(I_LIBPCRE)/usr/lib/ - $(STRIP) $(I_LIBPCRE)/usr/lib/lib*.so.* - - mkdir -p $(I_LIBPCRE_DEV)/usr/bin - cp -fpR $(INSTALL_DIR)/usr/bin/pcre-config $(I_LIBPCRE_DEV)/usr/bin/ - mkdir -p $(I_LIBPCRE_DEV)/usr/include - cp -fpR $(INSTALL_DIR)/usr/include/pcre*.h $(I_LIBPCRE_DEV)/usr/include/ - mkdir -p $(I_LIBPCRE_DEV)/usr/lib - cp -fpR $(INSTALL_DIR)/usr/lib/libpcre*.a $(I_LIBPCRE_DEV)/usr/lib/ - cp -fpR $(INSTALL_DIR)/usr/lib/libpcre*.so* $(I_LIBPCRE_DEV)/usr/lib/ - - chmod 0755 ipkg/*/CONTROL/ - chmod 0644 ipkg/*/CONTROL/control - - perl -pi -e "s/^Arch.*:.*/Architecture: $(ARCH)/g" ipkg/*/CONTROL/control -ifneq ($(strip $(PKG_VERSION)),) - perl -pi -e "s/^Vers.*:.*/Version: $(PKG_VERSION)/g" ipkg/*/CONTROL/control -endif - - $(IPKG_BUILD) $(I_LIBPCRE) $(IPKG_TARGET_DIR) - $(IPKG_BUILD) $(I_LIBPCRE_DEV) $(IPKG_TARGET_DIR) - - -clean: - - -$(MAKE) clean - - rm -rf .stamp-* \ - $(INSTALL_DIR)/usr/bin/pcre* \ - $(INSTALL_DIR)/usr/include/pcre* \ - $(INSTALL_DIR)/usr/lib/libpcre* \ - $(INSTALL_DIR)/usr/lib/pkgconfig/libpcre.pc \ - $(INSTALL_DIR)/usr/share/man/man*/pcre* \ - $(I_LIBPCRE)/usr \ - $(I_LIBPCRE_DEV)/usr \ - - -control: - - @cat $(I_LIBPCRE)/CONTROL/control - @echo - @cat $(I_LIBPCRE_DEV)/CONTROL/control - @echo - - -.PHONY: configure build install package clean control diff --git a/package/pcre/ipkg/version b/package/pcre/ipkg/version deleted file mode 100644 index 2f5e55b185..0000000000 --- a/package/pcre/ipkg/version +++ /dev/null @@ -1 +0,0 @@ -5.0-3 |