From b6535652562d71224641c398e42223e0491d3155 Mon Sep 17 00:00:00 2001
From: nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Date: Sat, 9 Apr 2005 13:53:20 +0000
Subject: Add libgcc package

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@599 3c298f89-4303-0410-b956-a3cf2f4a3e73
---
 openwrt/package/libgcc/Config.in      |  9 +++++++++
 openwrt/package/libgcc/Makefile       | 35 +++++++++++++++++++++++++++++++++++
 openwrt/package/libgcc/libgcc.control |  6 ++++++
 3 files changed, 50 insertions(+)
 create mode 100644 openwrt/package/libgcc/Config.in
 create mode 100644 openwrt/package/libgcc/Makefile
 create mode 100644 openwrt/package/libgcc/libgcc.control

diff --git a/openwrt/package/libgcc/Config.in b/openwrt/package/libgcc/Config.in
new file mode 100644
index 000000000..727cf1081
--- /dev/null
+++ b/openwrt/package/libgcc/Config.in
@@ -0,0 +1,9 @@
+config BR2_PACKAGE_LIBGCC
+	tristate "libgcc (GCC support library)"
+	default m
+	help
+	  Shared version of the support library, a library of 
+	  internal subroutines that GCC uses to overcome 
+	  shortcomings of particular machines, or special needs 
+	  for some languages.
+	  
diff --git a/openwrt/package/libgcc/Makefile b/openwrt/package/libgcc/Makefile
new file mode 100644
index 000000000..0d71a62d8
--- /dev/null
+++ b/openwrt/package/libgcc/Makefile
@@ -0,0 +1,35 @@
+# $Id$
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME := libgcc
+PKG_VERSION := $(BR2_GCC_VERSION)
+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/libgcc_s.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/libgcc/libgcc.control b/openwrt/package/libgcc/libgcc.control
new file mode 100644
index 000000000..0d68fbf8c
--- /dev/null
+++ b/openwrt/package/libgcc/libgcc.control
@@ -0,0 +1,6 @@
+Package: libgcc
+Priority: optional
+Section: libs
+Maintainer: Nico <nthill@free.fr>
+Source: buildroot internal
+Description: GCC support library
-- 
cgit v1.2.3