blob: 88fe06231ed91e54b7298a7a2597c14916fc19f4 (
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-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-mail/teapop/teapop-0.3.3.ebuild,v 1.4 2002/07/11 06:30:47 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Tiny POP3 server"
SRC_URI="ftp://ftp.toontown.org/pub/teapop/teapop-0.3.3.tar.gz"
HOMEPAGE="http://www.toontown.org/teapop/"
DEPEND=""
src_compile() {
local myconf
use mysql && myconf="$myconf --enable-mysql"
use postgres && myconf="$myconf --enable-pgsql"
./configure \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--sysconfdir=/etc \
--enable-lock=flock,dotlock \
--enable-homespool=mail \
--enable-mailsppol=/var/spool/mail \
--mandir=/usr/share/man \
--enable-apop \
$myconf || die "./configure failed"
emake || die
}
src_install () {
make \
prefix=${D}/usr \
mandir=${D}/usr/share/man \
infodir=${D}/usr/share/info \
sysconfdir=${D}/etc \
install || die
dodir /usr/sbin
mv ${D}/usr/libexec/teapop ${D}/usr/sbin/
dodoc doc/{CREDITS,ChangeLog,INSTALL,TODO}
docinto contrib
dodoc contrib/{README,popauther3.pl,teapop+exim.txt}
dohtml contrib/*.html
docinto rfc
dodoc rfc/rfc*.txt
}
|