blob: 2107f4c0d909b1d0860931bb812a66738ee55b29 (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/freepops/freepops-0.0.96.ebuild,v 1.1 2005/12/02 23:54:10 vapier Exp $
inherit eutils
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="~amd64 ~ppc ~x86"
IUSE="doc"
RDEPEND=">=net-misc/curl-7.10.8"
DEPEND="${RDEPEND}
doc? (
>=app-doc/doxygen-1.3
app-text/tetex
virtual/ghostscript
)"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-0.0.95-srcmake.patch
}
src_compile() {
./configure.sh linux || die "configure failed"
emake -j1 all WHERE=/usr/ || die "make failed"
if use doc ; then
emake -j1 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}/*
rm -rf "${D}"/usr/share/doc/${PN}
if use doc; then
mv doc/manual/html-manual "${D}/usr/share/doc/${PF}"
fi
newinitd buildfactory/freePOPsd.initd freepopsd
newconfd buildfactory/freePOPsd.confd freepopsd
}
|