blob: 833025b70ff0f45fda955172352de30f08abef0c (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
S=${WORKDIR}
SLOT="0"
DESCRIPTION="MTA layout package"
SRC_URI=""
HOMEPAGE="http://www.gentoo.org/"
LICENSE="GPL-2"
DEPEND=""
RDEPEND=""
src_install() {
dodir /etc/mail
insinto /etc/mail
doins ${FILESDIR}/aliases
insinto /etc/
doins ${FILESDIR}/mailcap
dodir /var/spool/mail
chown root.mail ${D}/var/spool/mail
touch ${D}/var/spool/mail/.keep
dosym /var/spool/mail /var/mail
}
pkg_postinst() {
if [ ! -d ${ROOT}/var/spool/mail ]
then
mkdir -p ${ROOT}/var/spool/mail
chown root.mail ${ROOT}/var/spool/mail
fi
}
|