diff options
author | Agostino Sarubbo <ago@gentoo.org> | 2012-02-11 11:54:25 +0000 |
---|---|---|
committer | Agostino Sarubbo <ago@gentoo.org> | 2012-02-11 11:54:25 +0000 |
commit | b4e2d138e1dbd2810fb6b7d798ff9c19490a9307 (patch) | |
tree | 174e5cfcc06c03b7f056edaff7f7145c69b37246 /net-nntp | |
parent | Mask skypetab-ng as it's a library for x86-only skype (synced with amd64/no-m... (diff) | |
download | historical-b4e2d138e1dbd2810fb6b7d798ff9c19490a9307.tar.gz historical-b4e2d138e1dbd2810fb6b7d798ff9c19490a9307.tar.bz2 historical-b4e2d138e1dbd2810fb6b7d798ff9c19490a9307.zip |
Fixed dodoc failure, convert src_install to emake, port to EAPI4
Package-Manager: portage-2.1.10.44/cvs/Linux x86_64
Diffstat (limited to 'net-nntp')
-rw-r--r-- | net-nntp/leafnode/ChangeLog | 7 | ||||
-rw-r--r-- | net-nntp/leafnode/leafnode-1.11.8.ebuild | 19 |
2 files changed, 13 insertions, 13 deletions
diff --git a/net-nntp/leafnode/ChangeLog b/net-nntp/leafnode/ChangeLog index cbcdb387f873..786a34357c42 100644 --- a/net-nntp/leafnode/ChangeLog +++ b/net-nntp/leafnode/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-nntp/leafnode -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-nntp/leafnode/ChangeLog,v 1.35 2011/07/31 12:34:45 patrick Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-nntp/leafnode/ChangeLog,v 1.36 2012/02/11 11:54:25 ago Exp $ + + 11 Feb 2012; Agostino Sarubbo <ago@gentoo.org> leafnode-1.11.8.ebuild: + Fixed dodoc failure, convert src_install to emake, port to EAPI4 *leafnode-1.11.8 (31 Jul 2011) diff --git a/net-nntp/leafnode/leafnode-1.11.8.ebuild b/net-nntp/leafnode/leafnode-1.11.8.ebuild index a1d180a6b6ed..d2218e2eef99 100644 --- a/net-nntp/leafnode/leafnode-1.11.8.ebuild +++ b/net-nntp/leafnode/leafnode-1.11.8.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-nntp/leafnode/leafnode-1.11.8.ebuild,v 1.1 2011/07/31 12:34:45 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-nntp/leafnode/leafnode-1.11.8.ebuild,v 1.2 2012/02/11 11:54:25 ago Exp $ + +EAPI=4 DESCRIPTION="A USENET software package designed for small sites" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" @@ -13,19 +15,18 @@ IUSE="ipv6" DEPEND=">=dev-libs/libpcre-3.9" RDEPEND="${DEPEND} virtual/inetd" +DOCS=( CREDITS ChangeLog FAQ.txt FAQ.pdf INSTALL NEWS README-daemontools UNINSTALL-daemontools README README-MAINTAINER README-FQDN ) -src_compile() { +src_configure() { econf \ --sysconfdir=/etc/leafnode \ --localstatedir=/var \ --with-spooldir=/var/spool/news \ - $(use_with ipv6) \ - || die "econf failed" - emake || die "emake failed" + $(use_with ipv6) } src_install() { - make DESTDIR="${D}" install || die "make install failed" + default keepdir \ /var/lock/news \ @@ -43,9 +44,5 @@ src_install() { exeinto /etc/cron.daily newexe "${FILESDIR}"/texpire.cron texpire - dodoc \ - CREDITS ChangeLog FAQ.txt FAQ.pdf INSTALL NEWS \ - README.FIRST README-daemontools UNINSTALL-daemontools \ - README README-MAINTAINER README-FQDN dohtml FAQ.html FAQ.xml README-FQDN.html } |