diff options
author | 2014-05-30 12:53:02 +0000 | |
---|---|---|
committer | 2014-05-30 12:53:02 +0000 | |
commit | 941b48ace4806da51b17d9c04f0356c083f6b83e (patch) | |
tree | 916e0c54f671d756a01ba15ceb1e560aeac6e067 /net-p2p | |
parent | removed block media-plugins/ vdr-atscepg vdr-channelblocker vdr-iptv-0.3.2 (diff) | |
download | gentoo-2-941b48ace4806da51b17d9c04f0356c083f6b83e.tar.gz gentoo-2-941b48ace4806da51b17d9c04f0356c083f6b83e.tar.bz2 gentoo-2-941b48ace4806da51b17d9c04f0356c083f6b83e.zip |
add epatch_user and USE=geoip, as requested by carpet
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/ncdc/ChangeLog | 6 | ||||
-rw-r--r-- | net-p2p/ncdc/ncdc-1.19.1.ebuild | 11 | ||||
-rw-r--r-- | net-p2p/ncdc/ncdc-9999.ebuild | 16 |
3 files changed, 22 insertions, 11 deletions
diff --git a/net-p2p/ncdc/ChangeLog b/net-p2p/ncdc/ChangeLog index 347a8238475a..91314583667e 100644 --- a/net-p2p/ncdc/ChangeLog +++ b/net-p2p/ncdc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-p2p/ncdc # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/ncdc/ChangeLog,v 1.48 2014/04/23 13:48:47 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/ncdc/ChangeLog,v 1.49 2014/05/30 12:53:02 xmw Exp $ + + 30 May 2014; Michael Weber <xmw@gentoo.org> ncdc-1.19.1.ebuild, + ncdc-9999.ebuild: + add epatch_user and USE=geoip, as requested by carpet *ncdc-1.19.1 (23 Apr 2014) diff --git a/net-p2p/ncdc/ncdc-1.19.1.ebuild b/net-p2p/ncdc/ncdc-1.19.1.ebuild index de7a763002b0..44e138009c6d 100644 --- a/net-p2p/ncdc/ncdc-1.19.1.ebuild +++ b/net-p2p/ncdc/ncdc-1.19.1.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/ncdc/ncdc-1.19.1.ebuild,v 1.1 2014/04/23 13:48:47 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/ncdc/ncdc-1.19.1.ebuild,v 1.2 2014/05/30 12:53:02 xmw Exp $ EAPI=5 -inherit toolchain-funcs +inherit autotools eutils toolchain-funcs DESCRIPTION="ncurses directconnect client" HOMEPAGE="http://dev.yorhel.nl/ncdc" @@ -26,8 +26,13 @@ DEPEND="${RDEPEND} dev-util/makeheaders virtual/pkgconfig" +src_prepare() { + epatch_user && eautoreconf +} + src_configure() { - econf $(use_with geoip) + econf \ + $(use_with geoip) } src_compile() { diff --git a/net-p2p/ncdc/ncdc-9999.ebuild b/net-p2p/ncdc/ncdc-9999.ebuild index aa75e7691f83..493ce994df49 100644 --- a/net-p2p/ncdc/ncdc-9999.ebuild +++ b/net-p2p/ncdc/ncdc-9999.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/ncdc/ncdc-9999.ebuild,v 1.11 2013/06/23 21:32:33 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/ncdc/ncdc-9999.ebuild,v 1.12 2014/05/30 12:53:02 xmw Exp $ EAPI=5 -inherit autotools git-2 toolchain-funcs +inherit autotools eutils git-2 toolchain-funcs DESCRIPTION="ncurses directconnect client" HOMEPAGE="http://dev.yorhel.nl/ncdc" @@ -13,25 +13,27 @@ EGIT_REPO_URI="git://g.blicky.net/ncdc.git" LICENSE="MIT" SLOT="0" KEYWORDS="" -IUSE="" +IUSE="geoip" RDEPEND="app-arch/bzip2 dev-db/sqlite:3 dev-libs/glib:2 net-libs/gnutls sys-libs/ncurses:5[unicode] - sys-libs/zlib" + sys-libs/zlib + geoip? ( dev-libs/geoip )" DEPEND="${RDEPEND} - dev-lang/perl dev-util/makeheaders virtual/pkgconfig" src_prepare() { + epatch_user eautoreconf } src_configure() { - econf --enable-git-version + econf --enable-git-version \ + $(use_with geoip) } src_compile() { |