diff options
author | Chris Larson <clarson@kergoth.com> | 2004-08-06 00:31:57 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-08-06 00:31:57 +0000 |
commit | 50fff50cf240a7639f4d8377a13ffd684dd6710e (patch) | |
tree | 013899230106ecc262d6678a53133e0479c65ccb /prismstumbler | |
parent | c42c34733d43c429dff3ddfee739add3ed592bf1 (diff) |
Merge openembedded@openembedded.bkbits.net:packages
into handhelds.org:/home/kergoth/code/projects/packages
2004/08/05 19:30:39-05:00 handhelds.org!kergoth
Fix some DEPENDS.
2004/08/05 19:24:27-05:00 handhelds.org!kergoth
Update the gcc 3.4.1 uclibc patches.
2004/08/05 19:21:54-05:00 handhelds.org!kergoth
Correct urls to old versions of cyrus-sasl.
2004/08/05 19:15:55-05:00 handhelds.org!kergoth
Make the uclibc builds pull down some pregenerated locale data for ARM, which was given us by David Meggy.
BKrev: 4112d17dNUTpR1zZlxzIcY9nS5DtVw
Diffstat (limited to 'prismstumbler')
-rw-r--r-- | prismstumbler/prismstumbler_0.7.2.oe | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/prismstumbler/prismstumbler_0.7.2.oe b/prismstumbler/prismstumbler_0.7.2.oe index e69de29bb2..68c35c2056 100644 --- a/prismstumbler/prismstumbler_0.7.2.oe +++ b/prismstumbler/prismstumbler_0.7.2.oe @@ -0,0 +1,56 @@ +PR = "r1" + +PACKAGES = "prismstumbler prismstumbler-frontend" +DESCRIPTION = "Prismstumbler wireless LAN scanner" +LICENSE = "GPL" +MAINTAINER = "Florian Boor <florian.boor@kernelconcepts.de>" +DEPENDS = "libpcap gtk+ wireless-tools sqlite" + + +SRC_URI = "${SOURCEFORGE_MIRROR}/prismstumbler/${PN}-${PV}.tar.bz2" + +S = "${WORKDIR}/${PN}-${PV}" + +inherit autotools pkgconfig + +EXTRA_OECONF = "" + +FILES_${PN} = "${bindir}/prismstumbler" + +FILES_prismstumbler-frontend = "${bindir}/psfront ${bindir}/pst \ + ${datadir}/applications \ + ${datadir}/pixmaps ${datadir}/doc/prismstumbler/help.txt \ + ${sysconfdir}" + +do_configure() { + cd ${S}; + oe_runconf; + cd ${S}/src/gpsd; + rm Makefile; + rm config.log; + rm config.cache; + ${S}/src/gpsd/configure \ + --build=${BUILD_SYS} \ + --host=${HOST_SYS} \ + --target=${TARGET_SYS} \ + --prefix=${prefix} \ + --exec_prefix=${exec_prefix} \ + --bindir=${bindir} \ + --sbindir=${sbindir} \ + --libexecdir=${libexecdir} \ + --datadir=${datadir} \ + --sysconfdir=${sysconfdir} \ + --sharedstatedir=${sharedstatedir} \ + --localstatedir=${localstatedir} \ + --libdir=${libdir} \ + --includedir=${includedir} \ + --oldincludedir=${oldincludedir} \ + --infodir=${infodir} \ + --mandir=${mandir} \ + ${EXTRA_OECONF} \ + $@; +} + +do_install_append() { + chmod a+s ${D}/${bindir}/prismstumbler +} |