diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-22 22:37:29 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-22 22:37:29 +0000 |
commit | f249735ad71fd5f13bfd295c55e1e0d596a1dbff (patch) | |
tree | 93735f3e25beab7ac8bf066c504df17b244db4eb /dsniff | |
parent | 11ebfcef190cf217f67fa2b79adee0f58f9718f3 (diff) |
Another pass of .oe cleanups.
BKrev: 405f6aa92YDm0pQN4padj00WWayDrQ
Diffstat (limited to 'dsniff')
-rw-r--r-- | dsniff/dsniff_2.3.oe | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/dsniff/dsniff_2.3.oe b/dsniff/dsniff_2.3.oe index 5f71f8eb3f..a25135b4e1 100644 --- a/dsniff/dsniff_2.3.oe +++ b/dsniff/dsniff_2.3.oe @@ -1,17 +1,17 @@ -DESCRIPTION = 'dsniff is a collection of tools for network auditing and penetration testing.' +DESCRIPTION = "dsniff is a collection of tools for network auditing and penetration testing." DEPENDS = "virtual/libc db3 libpcap libnet libnids openssl" RDEPENDS = "libc6 db3 libpcap openssl" -SRC_URI = http://www.monkey.org/~dugsong/dsniff/dsniff-${PV}.tar.gz \ - file://${FILESDIR}/configure.patch;patch=1 +SRC_URI = "http://www.monkey.org/~dugsong/dsniff/dsniff-${PV}.tar.gz \ + file://${FILESDIR}/configure.patch;patch=1" inherit autotools -EXTRA_OECONF='--without-x --with-db=${STAGING_DIR}/target \ - --with-libpcap=${STAGING_DIR}/target \ - --with-libnet=${STAGING_DIR}/target \ - --with-libnids=${STAGING_DIR}/target \ - --with-openssl=${STAGING_DIR}/target' -EXTRA_OEMAKE='"install_prefix=${D}"' -CFLAGS_prepend=' -I${S}/missing ' +EXTRA_OECONF = "--without-x --with-db=${STAGING_LIBDIR}/.. \ + --with-libpcap=${STAGING_LIBDIR}/.. \ + --with-libnet=${STAGING_LIBDIR}/.. \ + --with-libnids=${STAGING_LIBDIR}/.. \ + --with-openssl=${STAGING_LIBDIR}/.." +EXTRA_OEMAKE = "'install_prefix=${D}'" +CFLAGS_prepend = " -I${S}/missing " |