diff options
Diffstat (limited to 'net-nntp/slrn/slrn-0.9.8.1.ebuild')
-rw-r--r-- | net-nntp/slrn/slrn-0.9.8.1.ebuild | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/net-nntp/slrn/slrn-0.9.8.1.ebuild b/net-nntp/slrn/slrn-0.9.8.1.ebuild new file mode 100644 index 000000000000..71c03d9a4069 --- /dev/null +++ b/net-nntp/slrn/slrn-0.9.8.1.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-nntp/slrn/slrn-0.9.8.1.ebuild,v 1.1 2005/01/17 20:11:08 swegener Exp $ + +inherit eutils + +# Upstream patches from http://slrn.sourceforge.net/patches/ +# ${FILESDIR}/${PV}/${P}-<name>.diff +SLRN_PATCHES="fetch lastchar2" + +DESCRIPTION="s-lang Newsreader" +HOMEPAGE="http://slrn.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 sparc ~ppc x86" +IUSE="ssl nls unicode uudeview" + +RDEPEND="virtual/mta + >=app-arch/sharutils-4.2.1 + >=sys-libs/slang-1.4.9-r1 + ssl? ( >=dev-libs/openssl-0.9.6 )" +DEPEND="${RDEPEND} + uudeview? ( dev-libs/uulib ) + nls? ( sys-devel/gettext )" + +pkg_setup() ( + if use unicode && ! built_with_use sys-libs/slang unicode + then + eerror "For USE=\"unicode\" support you need to have your sys-libs/slang also compiled" + eerror "with USE=\"unicode\" support." + die "sys-libs/slang with USE=\"unicode\" support needed" + fi +) + +src_unpack() { + unpack ${A} + cd ${S} + + for i in ${SLRN_PATCHES} + do + epatch ${FILESDIR}/${PV}/${P}-${i}.diff + done + + use unicode && epatch ${FILESDIR}/0.9.8.0/slrn-0.9.8.0-utf8.patch +} + +src_compile() { + econf \ + --with-docdir=/usr/share/doc/${PF} \ + --with-slrnpull \ + $(use_enable nls) \ + $(use_with ssl) \ + $(use_with uudeview) \ + || die "econf failed" + emake || die "emake failed" +} + +src_install () { + make DESTDIR=${D} install || die "make install failed" +} |