aboutsummaryrefslogtreecommitdiffstats
path: root/vpnc
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2003-11-17 23:23:38 +0000
committerChris Larson <clarson@kergoth.com>2003-11-17 23:23:38 +0000
commit682601ce02e92f548a484b5ee3572ff4b126d024 (patch)
treec66886436860b7e7859b283dd483dae9e7fc2b2e /vpnc
parenta81146a4a6d051965d1ed53df1762e06ec4d87f0 (diff)
downloadopenembedded-682601ce02e92f548a484b5ee3572ff4b126d024.tar.gz
BUGFIXES for vpnc: 1) dont strip an ARM binary with an x86 strip if you plan on it actually being useful, 2) dont call make, call oe_runmake.
BKrev: 3fb9587akH1kafTlAUwhgzhi-OZpyA
Diffstat (limited to 'vpnc')
-rw-r--r--vpnc/vpnc_0.2-rm+zomb-pre6.oe13
1 files changed, 13 insertions, 0 deletions
diff --git a/vpnc/vpnc_0.2-rm+zomb-pre6.oe b/vpnc/vpnc_0.2-rm+zomb-pre6.oe
index e69de29bb2..5202df8d01 100644
--- a/vpnc/vpnc_0.2-rm+zomb-pre6.oe
+++ b/vpnc/vpnc_0.2-rm+zomb-pre6.oe
@@ -0,0 +1,13 @@
+DEPENDS=virtual/libc virtual/libgcrypt
+
+SRC_URI = http://www.unix-ag.uni-kl.de/~massar/vpnc/${PN}-${PV}.tar.gz \
+ file://${FILESDIR}/attribute.patch;patch=1
+
+do_compile () {
+ oe_runmake 'CC=${CC}' 'LDFLAGS=${LDFLAGS} -g $(shell libgcrypt-config --libs) -static'
+}
+
+do_install () {
+ install -d ${D}/${sbindir}
+ install -m 0755 vpnc ${D}/${sbindir}
+}