blob: cecd8b77c97873f2be8426e48bf3af64fb807256 (
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
50
51
52
53
54
55
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/vm-pop3d/vm-pop3d-1.1.6.ebuild,v 1.6 2002/12/09 04:33:15 manson Exp $
S=${WORKDIR}/${P}
DESCRIPTION="vm-pop3d - vm-pop3d is a POP3 server"
SRC_URI="http://www.ibiblio.org/pub/Linux/system/mail/pop/${P}.tar.gz"
HOMEPAGE="http://www.reedmedia.net/software/virtualmail-pop3d/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc "
DEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cd ${S}
patch -p1 < ${FILESDIR}/makefile.in.diff || die "patch failed"
}
src_compile() {
local myconf
use pam && myconf="${myconf} --enable-pam" \
|| myconf="${myconf} --disable-pam "
if [ -n "$DEBUG" ]; then
myconf="${myconf} --enable-debug"
else
myconf="${myconf} --disable-debug"
fi
econf ${myconf} || die "configure failed"
emake || die "make failed"
}
src_install () {
einstall || die "make install failed"
dodoc AUTHORS CHANGES COPYING FAQ INSTALL README TODO
exeinto /etc/init.d
newexe ${FILESDIR}/vm-pop3d.rc3 vm-pop3d
insinto /etc/conf.d
newins ${FILESDIR}/vm-pop3d.confd vm-pop3d
}
|