summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHolger Freyther <zecke@selfish.org>2006-02-12 19:05:23 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2006-02-12 19:05:23 +0000
commit04ce57337c0f088103ae35ae83f13bb4ded27066 (patch)
treeff1021197f777e68f1020a05dee6f13ba712aaf1
parentd5d57e4f3efb894ef45120981a2de17993d4a2b7 (diff)
parent2e1c29f22ce2c7815a0b129712908706ea1f1140 (diff)
merge of 18e058971e016e73900c603bff12aec32123910b
and e1bf3143b97e45cbce12c763db9522aba9e6e488
-rw-r--r--conf/bitbake.conf1
-rw-r--r--packages/pax-utils/.mtn2git_empty0
-rw-r--r--packages/pax-utils/pax-utils-native_0.1.9.bb7
-rw-r--r--packages/pax-utils/pax-utils_0.1.9.bb16
4 files changed, 24 insertions, 0 deletions
diff --git a/conf/bitbake.conf b/conf/bitbake.conf
index 89ab4ff924..c28e3a7e22 100644
--- a/conf/bitbake.conf
+++ b/conf/bitbake.conf
@@ -304,6 +304,7 @@ XORG_MIRROR = "http://xorg.freedesktop.org/releases"
GNOME_MIRROR = "http://ftp.gnome.org/pub/GNOME/sources"
FREEBSD_MIRROR = "ftp://ftp.freebsd.org/pub/FreeBSD/"
HANDHELDS_CVS = "cvs://anoncvs:anoncvs@anoncvs.handhelds.org/cvs"
+GENTOO_MIRROR = "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles"
# You can use the mirror of your country to get faster downloads by putting
# export DEBIAN_MIRROR = "ftp://ftp.de.debian.org/debian/pool"
diff --git a/packages/pax-utils/.mtn2git_empty b/packages/pax-utils/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/pax-utils/.mtn2git_empty
diff --git a/packages/pax-utils/pax-utils-native_0.1.9.bb b/packages/pax-utils/pax-utils-native_0.1.9.bb
new file mode 100644
index 0000000000..d586dcb29e
--- /dev/null
+++ b/packages/pax-utils/pax-utils-native_0.1.9.bb
@@ -0,0 +1,7 @@
+inherit native
+
+require pax-utils_${PV}.bb
+
+do_stage() {
+ oe_runmake PREFIX=${STAGING_DIR}/${HOST_SYS} install
+}
diff --git a/packages/pax-utils/pax-utils_0.1.9.bb b/packages/pax-utils/pax-utils_0.1.9.bb
new file mode 100644
index 0000000000..3aa6b22ee8
--- /dev/null
+++ b/packages/pax-utils/pax-utils_0.1.9.bb
@@ -0,0 +1,16 @@
+DESCRIPTION = "Various ELF utilities"
+HOMEPAGE = "http://www.gentoo.org/proj/en/hardened/pax-utils.xml"
+LICENSE = "GPLv2"
+MAINTAINER = "freyther@handhelds.org"
+
+SRC_URI = "${GENTOO_MIRROR}/pax-utils-${PV}.tar.bz2;md5sum=71e8d13d072efcbc4123960211a34d4f"
+S = "${WORKDIR}/pax-utils-${PV}"
+
+do_compile() {
+ oe_runmake
+}
+
+do_install() {
+ oe_runmake DESTDIR=${D} install
+}
+