aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Hentges <oe@hentges.net>2004-10-13 23:03:50 +0000
committerMatthias Hentges <oe@hentges.net>2004-10-13 23:03:50 +0000
commit4f33868fc4343468fae5cdac44d23b9f57927526 (patch)
treee30e40997aac71d677ed1c61f1a9090ca3fb7fe2
parenta78c0def40146002e2e676cfb5d25fbd94f93296 (diff)
downloadopenembedded-4f33868fc4343468fae5cdac44d23b9f57927526.tar.gz
split_ipk_feeds.oeclass: Rebuild Packages before each run
BKrev: 416db456-4Y7PrIXeb8-tacCSQP3Sg
-rw-r--r--classes/split_ipk_feeds.oeclass8
-rw-r--r--fakeconnect/fakeconnect_1.2.1.oe9
-rw-r--r--ipac-ng/ipac-ng_1.30.oe19
-rw-r--r--linux/openzaurus-sa_2.4.18-rmk7-pxa3-embedix20030509.oe1
-rw-r--r--prism54/prism54-module_cvs.oe5
-rw-r--r--timezones/timezones_cvs.oe2
6 files changed, 40 insertions, 4 deletions
diff --git a/classes/split_ipk_feeds.oeclass b/classes/split_ipk_feeds.oeclass
index 2cf73a2717..4f349fd325 100644
--- a/classes/split_ipk_feeds.oeclass
+++ b/classes/split_ipk_feeds.oeclass
@@ -11,7 +11,10 @@ die () {
do_split_feed () {
test -z "$FEED_PATTERN" && die "No feed pattern in FEED_PATTERN"
test -z "$FEED_NAME" && die "No feed name in FEED_NAME"
- ! test -e ${DEPLOY_DIR_IPK}/Packages && die "[$DEPLOY_DIR_IPK/Packages] not found"
+ test -z "${DEPLOY_DIR_IPK}" && die "DEPLOY_DIR_IPK is empty, how do you do that?"
+
+ echo "Rebuilding [${DEPLOY_DIR_IPK}/Packages]"
+ ipkg-make-index -r ${DEPLOY_DIR_IPK}/Packages -p ${DEPLOY_DIR_IPK}/Packages -l ${DEPLOY_DIR_IPK}/Packages.filelist -m ${DEPLOY_DIR_IPK}
echo "Working on pattern [$FEED_PATTERN] for feed [$FEED_NAME]"
@@ -21,8 +24,7 @@ do_split_feed () {
if ! test -z "$EXCLUDE_FROM_FEED"
then
cat feed-content.tmp | egrep -iv -- "$EXCLUDE_FROM_FEED" > feed-content.tmp2
- rm feed-content.tmp
- mv feed-content.tmp2 feed-content.tmp
+ rm feed-content.tmp ; mv feed-content.tmp2 feed-content.tmp
fi
if ! test -d ${DEPLOY_DIR_IPK}/${FEED_NAME}
diff --git a/fakeconnect/fakeconnect_1.2.1.oe b/fakeconnect/fakeconnect_1.2.1.oe
index e69de29bb2..1dd6f91c95 100644
--- a/fakeconnect/fakeconnect_1.2.1.oe
+++ b/fakeconnect/fakeconnect_1.2.1.oe
@@ -0,0 +1,9 @@
+SECTION = "console/network"
+DESCRIPTION = "FakeConnect is a application/network stress-test program."
+LICENSE = "BSD"
+MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
+
+SRC_URI = "http://www.hostname.org/fake_connect/fakeconnect-${PV}.tar.gz"
+S = "${WORKDIR}/fakeconnect-${PV}"
+
+inherit autotools
diff --git a/ipac-ng/ipac-ng_1.30.oe b/ipac-ng/ipac-ng_1.30.oe
index e69de29bb2..47863252b2 100644
--- a/ipac-ng/ipac-ng_1.30.oe
+++ b/ipac-ng/ipac-ng_1.30.oe
@@ -0,0 +1,19 @@
+SECTION = "console/network"
+DESCRIPTION = "IPAC-NG is the iptables/ipchains based IP accounting package for Linux"
+HOMEPAGE = "http://ipac-ng.sourceforge.net/"
+MAINTAINER = "Bruno Randolf <bruno.randolf@4g-systems.biz>"
+SRC_URI = "${SOURCEFORGE_MIRROR}/ipac-ng/ipac-ng-${PV}.tar.bz2 \
+ file://makefile-build-cc.diff;patch=1;pnum=0"
+RDEPENDS = "perl libgd-perl"
+
+inherit autotools
+
+do_configure() {
+ oe_runconf
+}
+
+do_install_append() {
+ install -d ${D}/${sysconfdir}/ipac-ng
+ install -m 644 ${S}/doc/ipac.conf.sample ${D}/${sysconfdir}/ipac-ng
+ install -m 644 ${S}/doc/rules.conf.sample ${D}/${sysconfdir}/ipac-ng
+} \ No newline at end of file
diff --git a/linux/openzaurus-sa_2.4.18-rmk7-pxa3-embedix20030509.oe b/linux/openzaurus-sa_2.4.18-rmk7-pxa3-embedix20030509.oe
index 6cae9f563d..aa576243cf 100644
--- a/linux/openzaurus-sa_2.4.18-rmk7-pxa3-embedix20030509.oe
+++ b/linux/openzaurus-sa_2.4.18-rmk7-pxa3-embedix20030509.oe
@@ -1,3 +1,4 @@
+SECTION = "kernel"
PV = "2.4.18-rmk7-pxa3-embedix"
LICENSE = "GPL"
KV = "2.4.18"
diff --git a/prism54/prism54-module_cvs.oe b/prism54/prism54-module_cvs.oe
index e69de29bb2..58d1ab21c7 100644
--- a/prism54/prism54-module_cvs.oe
+++ b/prism54/prism54-module_cvs.oe
@@ -0,0 +1,5 @@
+SECTION = "base"
+include prism54-module_1.2.oe
+
+SRC_URI = "http://prism54.org/pub/linux/snapshot/tars/prism54-cvs-latest.tar.bz2"
+S = "${WORKDIR}/prism54-cvs-latest"
diff --git a/timezones/timezones_cvs.oe b/timezones/timezones_cvs.oe
index a64facf4b0..58f078f248 100644
--- a/timezones/timezones_cvs.oe
+++ b/timezones/timezones_cvs.oe
@@ -1,5 +1,5 @@
DESCRIPTION = "Timezone data"
-SECTION = "opie/base"
+SECTION = "base"
PRIORITY = "optional"
MAINTAINER = "Team Opie <opie@handhelds.org>
LICENSE = "GPL"