blob: 152f6872b0c464f1cc6d061a4e3aa00499b8c324 (
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
56
57
58
59
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/freepops/freepops-0.0.97-r1.ebuild,v 1.1 2006/02/09 11:04:40 dragonheart Exp $
inherit eutils
DESCRIPTION="WebMail->POP3 converter and more"
HOMEPAGE="http://freepops.sourceforge.net/"
SRC_URI="mirror://sourceforge/freepops/${P}.tar.gz
http://diludovico.org/freepops/plugins/hotmail.lua"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc gnutls"
RDEPEND=">=net-misc/curl-7.10.8
gnutls? ( net-libs/gnutls )
!gnutls? ( dev-libs/openssl )
dev-lang/lua"
DEPEND="${RDEPEND}
doc? (
>=app-doc/doxygen-1.3
app-text/tetex
virtual/ghostscript
)"
src_unpack() {
unpack "${P}.tar.gz"
epatch "${FILESDIR}/${P}-system-lua.patch"
cp "${DISTDIR}/hotmail.lua" "${S}/src/lua"
}
src_compile() {
# note fbsd and Darwin and osx targets exist here too
if use gnutls; then
./configure.sh linux-gnutls || die "configure gnutls failed"
else
./configure.sh linux || die "configure openssl failed"
fi
sed -i -e '/^WHERE=/s/=.*$/=\/usr\//' config
emake -j1 all || die "make failed"
if use doc ; then
emake -j1 doc || die "make doc failed"
fi
}
src_install() {
make install DESTDIR="${D}" || 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
}
|