diff options
author | Matthias Hentges <oe@hentges.net> | 2004-10-11 11:36:10 +0000 |
---|---|---|
committer | Matthias Hentges <oe@hentges.net> | 2004-10-11 11:36:10 +0000 |
commit | a26d3c8de667748085908f234a61404892c345e4 (patch) | |
tree | ad83490c98f49d5be7a848bd7385b55a041ffa76 /vsftpd | |
parent | 03d159c18473037056d7009d45f14e08aacc5a61 (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into mhcln01.hentges.local:/home/mhentges/OpenEmbedded/packages
2004/10/11 13:35:43+02:00 local!CoreDump
base section fixes
2004/10/11 13:21:10+02:00 local!CoreDump
x11 section fixes
2004/10/11 13:01:40+02:00 local!CoreDump
Section fixes: replace net with console/net
BKrev: 416a702ahGepUmVenzmpZ_GI8n7joA
Diffstat (limited to 'vsftpd')
-rw-r--r-- | vsftpd/vsftpd_2.0.1.oe | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/vsftpd/vsftpd_2.0.1.oe b/vsftpd/vsftpd_2.0.1.oe index e69de29bb2..9ea32cba49 100644 --- a/vsftpd/vsftpd_2.0.1.oe +++ b/vsftpd/vsftpd_2.0.1.oe @@ -0,0 +1,22 @@ +DESCRIPTION = "Secure ftp daemon" +SECTION = "console/network" +DEPENDS = "openssl" +PR = "r1" + +SRC_URI = "ftp://vsftpd.beasts.org/users/cevans/vsftpd-2.0.1.tar.gz \ + file://makefile.patch;patch=1 \ + file://nopam.patch;patch=1" + +do_compile() { + oe_runmake "LIBS=-lssl -lcrypto -lcrypt -L${STAGING_LIBDIR}" +} + +do_install() { + install -d ${D}/usr/sbin + install -d ${D}/usr/share/man/man8 + install -d ${D}/usr/share/man/man5 + oe_runmake 'DESTDIR=${D}' install + install -d ${D}/${sysconfdir} + install -m 0755 ${S}/vsftpd.conf ${D}${sysconfdir}/vsftpd.conf +} + |