diff options
-rw-r--r-- | conf/bitbake.conf | 1 | ||||
-rw-r--r-- | packages/pax-utils/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/pax-utils/pax-utils-native_0.1.9.bb | 7 | ||||
-rw-r--r-- | packages/pax-utils/pax-utils_0.1.9.bb | 16 |
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 +} + |