summaryrefslogtreecommitdiff
path: root/packages/lsof/lsof_4.77.bb
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openembedded.org>2006-11-16 14:20:32 +0000
committerMarcin Juszkiewicz <hrw@openembedded.org>2006-11-16 14:20:32 +0000
commitda08c67762e7925da7c19ee199be31370a562788 (patch)
tree26a7043cb3f943aa84f7e5de6d37998bbc607d88 /packages/lsof/lsof_4.77.bb
parentf04cd3dee1dc4da9585d5ec099186c78157ea4f8 (diff)
parentff6659eeaa3d00b36e2181643b6ced59d606f4c4 (diff)
merge of '83560af206bd8bb934b62f0842171cd71f11387e'
and 'c4bb9c5cc658fec27d922fbfa89e108c32d4a842'
Diffstat (limited to 'packages/lsof/lsof_4.77.bb')
-rw-r--r--packages/lsof/lsof_4.77.bb38
1 files changed, 38 insertions, 0 deletions
diff --git a/packages/lsof/lsof_4.77.bb b/packages/lsof/lsof_4.77.bb
new file mode 100644
index 0000000000..ef82b6179f
--- /dev/null
+++ b/packages/lsof/lsof_4.77.bb
@@ -0,0 +1,38 @@
+DESCRIPTION = "Lsof is a Unix-specific diagnostic tool. \
+Its name stands for LiSt Open Files, and it does just that."
+SECTION = "devel"
+LICENSE = "BSD"
+
+SRC_URI = "ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/lsof_${PV}.tar.bz2"
+LOCALSRC = "file://${WORKDIR}/lsof_${PV}/lsof_${PV}_src.tar"
+S = "${WORKDIR}/lsof_${PV}_src"
+
+python do_unpack () {
+ bb.build.exec_func('base_do_unpack', d)
+ src_uri = bb.data.getVar('SRC_URI', d)
+ bb.data.setVar('SRC_URI', '${LOCALSRC}', d)
+ bb.build.exec_func('base_do_unpack', d)
+ bb.data.setVar('SRC_URI', src_uri, d)
+}
+
+LSOF_OS = "${TARGET_OS}"
+LSOF_OS_linux-uclibc = "linux"
+LSOF_OS_linux-gnueabi = "linux"
+
+do_configure () {
+ ./Configure ${LSOF_OS}
+}
+
+export I = "${STAGING_INCDIR}"
+export L = "${STAGING_INCDIR}"
+export EXTRA_OEMAKE = ""
+
+do_compile () {
+ oe_runmake 'CC=${CC}' 'CFGL=${LDFLAGS} -L./lib -llsof' 'DEBUG=' 'INCL=${CFLAGS}'
+}
+
+do_install () {
+ install -d ${D}${sbindir} ${D}${mandir}/man8
+ install -m 4755 lsof ${D}${sbindir}/lsof
+ install -m 0644 lsof.8 ${D}${mandir}/man8/lsof.8
+}