7d8e781f5f8f90c3f28c2103895a554a11390907
[vuplus_openembedded] / lsof / lsof_4.69.oe
1 DEPENDS = "virtual/libc"
2 RDEPENDS = "libc6"
3 DESCRIPTION = "Lsof is a Unix-specific diagnostic \
4 tool. Its name stands for LiSt Open Files, and it \
5 does just that."
6
7 SRC_URI = ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/OLD/lsof_${PV}.tar.gz
8 LOCALSRC = "file://${WORKDIR}/lsof_${PV}/lsof_${PV}_src.tar"
9 S = "${WORKDIR}/lsof_${PV}_src"
10
11 python do_unpack () {
12         oe.build.exec_func('base_do_unpack', d)
13         src_uri = oe.data.getVar('SRC_URI', d)
14         oe.data.setVar('SRC_URI', '${LOCALSRC}', d)
15         oe.build.exec_func('base_do_unpack', d)
16         oe.data.setVar('SRC_URI', src_uri, d)
17 }
18
19 do_configure () {
20         echo PWD is $PWD
21         ./Configure ${TARGET_OS}
22 }
23
24 export I=${STAGING_INCDIR}
25 export L=${STAGING_INCDIR}
26 export EXTRA_OEMAKE=
27
28 do_compile () {
29         oe_runmake 'CC=${CC}' 'CFGL=${LDFLAGS} -L./lib -llsof' 'DEBUG=' 'INCL=${CFLAGS}'
30 }
31
32 do_install () {
33         install -d ${D}/${sbindir} ${D}/${mandir}/man8
34         install -m 4755 lsof ${D}/${sbindir}/lsof
35         install -m 0644 lsof.8 ${D}/${mandir}/man8/lsof.8
36 }