summaryrefslogtreecommitdiffstats
path: root/base/vsftpd/Pkgfile
blob: 95fd6f2c31cdbc09a27108c0f7c6614f8074a2c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Description: Agent de service de messagerie electronique
# URL: http://vsftpd.beasts.org/
# Maintainer: Cobex4
# Packager: cobex4 at gmail dot com

name=vsftpd
version=2.3.2
release=1
source=ftp://vsftpd.beasts.org/users/cevans/$name-$version.tar.gz

build() {
  cd $name-$version
  # build-time config
  sed \
    -e 's|^#undef VSF_BUILD_TCPWRAPPERS$|#define VSF_BUILD_TCPWRAPPERS|' \
    -e 's|^#undef VSF_BUILD_SSL$|#define VSF_BUILD_SSL|' \
    -i builddefs.h
  make CFLAGS="${CFLAGS}"
  install -D -m755 vsftpd $PKG/usr/sbin/vsftpd
  install -D -m644 vsftpd.conf $PKG/etc/vsftpd.conf
  install -D -m644 vsftpd.8 $PKG/usr/share/man/man8/vsftpd.8
  install -D -m644 vsftpd.conf.5 $PKG/usr/share/man/man5/vsftpd.conf.5
  install -D -m755 vsftpd $PKG/etc/rc.d/init.d/vsftpd
  mkdir -p $PKG/usr/share/empty
  ex $PKG/etc/vsftpd.conf <<_EOF
2
i
#
# Use this to use vsftpd in standalone mode, otherwise it runs through (x)inetd
#listen=YES
.
w
q
_EOF
# Controle du service
        mkdir -v -p $PKG/etc/rc.d/rc{0,1,3,4,5,6}.d
        ln -svf ../init.d/vsftpd $PKG/etc/rc.d/rc3.d/S90vsftpd
	ln -svf ../init.d/vsftpd $PKG/etc/rc.d/rc5.d/S90vsftpd
        ln -svf ../init.d/vsftpd $PKG/etc/rc.d/rc4.d/S90vsftpd
        ln -svf ../init.d/vsftpd $PKG/etc/rc.d/rc0.d/K10vsftpd
        ln -svf ../init.d/vsftpd $PKG/etc/rc.d/rc1.d/K10vsftpd
        ln -svf ../init.d/vsftpd $PKG/etc/rc.d/rc6.d/K10vsftpd
}