summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorOyvind Repvik <nail@nslu2-linux.org>2005-08-05 16:07:16 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-08-05 16:07:16 +0000
commite62597937dea0ff0f6e55b8d73e34f6a19c1a23f (patch)
tree0774ae8f93c3a0dc18f169221b8ecfae17af686b /packages
parentd2ab6b4d3b26d87624a1b5039e03f7592e9a2580 (diff)
parent0b342ab3010c244b2f5a6a84901b35cbd8dad45e (diff)
propagate from branch 'org.openembedded.dev' (head 15f551f6c01721f6885a48d2227e2211eaea3a0c)
to branch 'org.openembedded.nslu2-linux' (head 46d57b1afb6a0c0939707ca827bf4abc67945f1a)
Diffstat (limited to 'packages')
-rw-r--r--packages/altboot/files/altboot.rc/.mtn2git_empty0
-rw-r--r--packages/altboot/files/altboot.rc/Readme.txt2
-rw-r--r--packages/xev/xev_cvs.bb18
3 files changed, 9 insertions, 11 deletions
diff --git a/packages/altboot/files/altboot.rc/.mtn2git_empty b/packages/altboot/files/altboot.rc/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/altboot/files/altboot.rc/.mtn2git_empty
diff --git a/packages/altboot/files/altboot.rc/Readme.txt b/packages/altboot/files/altboot.rc/Readme.txt
new file mode 100644
index 0000000000..985e1fe7d0
--- /dev/null
+++ b/packages/altboot/files/altboot.rc/Readme.txt
@@ -0,0 +1,2 @@
+Scripts (*.sh) in this folder are run by altboot before printing the menu.
+Note: The rootfs is still mounted ro at this point.
diff --git a/packages/xev/xev_cvs.bb b/packages/xev/xev_cvs.bb
index 4d47df9e7a..7dccdaad3c 100644
--- a/packages/xev/xev_cvs.bb
+++ b/packages/xev/xev_cvs.bb
@@ -1,25 +1,21 @@
+PV = "0.0cvs${CVSDATE}"
DESCRIPTION = "X Event Viewer"
-HOMEPAGE = "http://www.xfree86.org/current/xev.1.html"
-LICENSE = "GPLv2"
+HOMEPAGE = "http://freedesktop.org/wiki/Software_2fxapps"
+LICENSE = "MIT"
MAINTAINER = "Justin Patrin <papercrane@reversefold.com>"
-SECTION = "x11/utils"
+SECTION = "x11/base"
DEPENDS = "x11 xau"
-PR = "r0"
+PR = "r1"
SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xapps;module=xev \
file://diet-x11.patch;patch=1"
S = "${WORKDIR}/xev"
-inherit autotools
-
do_compile() {
${CC} -o xev xev.c -lX11 -lXau -I${STAGING_INCDIR} -L${STAGING_LIBDIR}
}
do_install() {
- install -d ${D}/usr/bin/
- install -m 755 ${PN} ${D}/usr/bin/${PN}
+ install -d ${D}${bindir}
+ install -m 755 ${PN} ${D}${bindir}
}
-
-FILES = "/usr/bin/xev"
-