blob: 5c25c43e1ed66210909111ed88f11c71ec03c5ae (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/freepops/freepops-0.0.16.ebuild,v 1.2 2004/09/17 20:56:59 mr_bones_ Exp $
DESCRIPTION="WebMail->POP3 converter and more"
HOMEPAGE="http://freepops.sourceforge.net/"
SRC_URI="mirror://sourceforge/freepops/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc"
DEPEND=" doc? ( >=app-doc/doxygen-1.3* )
>=net-misc/curl-7.10.8 "
src_compile() {
./configure.sh linux || die "configure failed"
emake -j1 all WHERE=/usr/ || die "make failed"
if use doc ; then
make doc || die "make doc failed"
fi
}
src_install() {
make install DESTDIR=${D} WHERE=/usr/ || die
dodoc AUTHORS README ChangeLog TODO \
${D}/usr/share/doc/${PN}/MANUAL.txt
rm -rf ${D}/usr/share/doc/${PN}
exeinto /etc/init.d ; newexe buildfactory/freePOPsd.initd freepopsd
insinto /etc/conf.d ; newins buildfactory/freePOPsd.confd freepopsd
}
|