summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-04-09 13:53:37 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-04-09 13:53:37 +0000
commit461d05dcd4d6808026e3d298f3189f1e073b9b03 (patch)
tree93c5caeec611ef8eee16f3b10b1839389a1289e9
parentb6535652562d71224641c398e42223e0491d3155 (diff)
Add libpthread package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@600 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--openwrt/package/libpthread/Config.in6
-rw-r--r--openwrt/package/libpthread/Makefile36
-rw-r--r--openwrt/package/libpthread/libpthread.control6
3 files changed, 48 insertions, 0 deletions
diff --git a/openwrt/package/libpthread/Config.in b/openwrt/package/libpthread/Config.in
new file mode 100644
index 000000000..87d1a5d03
--- /dev/null
+++ b/openwrt/package/libpthread/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_LIBPTHREAD
+ tristate "libpthread (POSIX threads library)"
+ default m
+ help
+ POSIX threads library
+
diff --git a/openwrt/package/libpthread/Makefile b/openwrt/package/libpthread/Makefile
new file mode 100644
index 000000000..371245f33
--- /dev/null
+++ b/openwrt/package/libpthread/Makefile
@@ -0,0 +1,36 @@
+# $Id$
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME := libpthread
+PKG_VERSION := 0.9.27
+PKG_RELEASE := 1
+
+PKG_SOURCE_DIR := $(PKG_NAME)-$(PKG_VERSION)
+PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_SOURCE_DIR)
+PKG_IPK := $(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk
+PKG_IPK_DIR :=$(PKG_BUILD_DIR)/ipkg/
+
+.NOTPARALLEL:
+
+$(PKG_IPK): $(STAGING_DIR)/lib/libpthread.so
+ rm -rf $(PKG_BUILD_DIR)
+ $(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH)
+ mkdir -p $(PKG_IPK_DIR)/lib
+ cp -fp $(STAGING_DIR)/lib/libpthread.so.* $(PKG_IPK_DIR)/lib/
+ cp -fp $(STAGING_DIR)/lib/libpthread-*.so $(PKG_IPK_DIR)/lib/
+ $(STRIP) $(PKG_IPK_DIR)/lib/*
+ 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:
+prepare:
+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/libpthread/libpthread.control b/openwrt/package/libpthread/libpthread.control
new file mode 100644
index 000000000..7037493e8
--- /dev/null
+++ b/openwrt/package/libpthread/libpthread.control
@@ -0,0 +1,6 @@
+Package: libpthread
+Priority: optional
+Section: libs
+Maintainer: Nico <nthill@free.fr>
+Source: buildroot internal
+Description: POSIX threads library