summaryrefslogtreecommitdiff
path: root/extra/proftpd/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/proftpd/PKGBUILD')
-rw-r--r--extra/proftpd/PKGBUILD22
1 files changed, 12 insertions, 10 deletions
diff --git a/extra/proftpd/PKGBUILD b/extra/proftpd/PKGBUILD
index 30d2b469f..81eaf4599 100644
--- a/extra/proftpd/PKGBUILD
+++ b/extra/proftpd/PKGBUILD
@@ -1,24 +1,25 @@
-# $Id: PKGBUILD 164987 2012-08-07 20:14:43Z eric $
+# $Id: PKGBUILD 165441 2012-08-19 15:31:22Z andrea $
# Maintainer:
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
pkgname=proftpd
pkgver=1.3.4b
-pkgrel=1
+pkgrel=2
epoch=1
pkgdesc="A high-performance, scalable FTP server"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.proftpd.org"
license=('GPL')
-depends=('libldap' 'libmysqlclient' 'postgresql-libs')
+depends=('libmysqlclient' 'postgresql-libs')
backup=('etc/proftpd.conf' 'etc/conf.d/proftpd')
source=(ftp://ftp.proftpd.org/distrib/source/${pkgname}-${pkgver}.tar.gz{,.asc}
- 'proftpd' 'proftpd.logrotate' 'proftpd.conf.d')
+ 'proftpd' 'proftpd.logrotate' 'proftpd.conf.d' 'proftpd.service')
md5sums=('0871e0b93c9c3c88ca950b6d9a04aed2'
'e5b9bd78029a15f82994efcb7ed2e9fb'
- '8177292919acb2f087ded0bb7b2dcc32'
+ 'c439a0a1dbc21b604d8382da87aa021b'
'ddb09eb13131becdf0e081eef413116b'
- '71d5932b0461c318ed68c2c0c2660736')
+ '71d5932b0461c318ed68c2c0c2660736'
+ '2c446f531948c8cc0a1e0fae28f8dfda')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
@@ -28,12 +29,13 @@ build() {
--disable-pam \
--with-modules=mod_quotatab:mod_quotatab_sql:mod_quotatab_file:mod_tls:mod_ldap:mod_sql:mod_sql_mysql:mod_sql_postgres \
--sysconfdir=/etc \
- --localstatedir=/var/run \
+ --localstatedir=/run/proftpd \
--enable-ctrls \
--enable-ipv6 \
--with-includes=/usr/include/mysql:/usr/include/postgresql \
--with-libraries=/usr/lib/mysql:/usr/lib/postgresql \
- --enable-nls
+ --enable-nls \
+ --with-systemd
make
}
@@ -49,6 +51,6 @@ package() {
install -Dm755 ../proftpd "${pkgdir}/etc/rc.d/proftpd"
install -Dm755 contrib/xferstats.holger-preiss "${pkgdir}/usr/bin/ftpstats"
- # /var/run is a symlink to /run now
- rm -rf "${pkgdir}/var"
+ install -d "${pkgdir}/usr/lib/systemd/system/"
+ install -m644 "${srcdir}"/proftpd.service "${pkgdir}/usr/lib/systemd/system/"
}