blob: dfb32b9ed1aca62fc28e3c533e9c4e6ea13516ac (
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
45
46
47
48
49
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/ftpbase/ftpbase-0.01-r2.ebuild,v 1.7 2010/09/30 20:38:25 ranger Exp $
inherit eutils pam
DESCRIPTION="FTP layout package"
HOMEPAGE="http://www.gentoo.org/"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE="pam"
DEPEND="pam? ( virtual/pam )
!<net-ftp/proftpd-1.2.10-r6
!<net-ftp/pure-ftpd-1.0.20-r2
!<net-ftp/vsftpd-2.0.3-r1"
S=${WORKDIR}
pkg_setup() {
# Check if home exists
local exists=false
[[ -d "${ROOT}home/ftp" ]] && exists=true
# Add our default ftp user
enewgroup ftp 21
enewuser ftp 21 -1 /home/ftp ftp
# If home did not exist and does now then we created it in the enewuser
# command. Now we have to change it's permissions to something sane.
if [[ ${exists} == "false" && -d "${ROOT}home/ftp" ]] ; then
chown root:ftp "${ROOT}"home/ftp
fi
}
src_install() {
# The ftpusers file is a list of people who are NOT allowed
# to use the ftp service.
insinto /etc
doins "${FILESDIR}/ftpusers" || die
# Ideally we would create the home directory here with a dodir.
# But we cannot until bug #9849 is solved - so we kludge in pkg_postinst()
newpamd "${FILESDIR}/ftp-pamd-include" ftp
}
|