diff options
author | Michael Weber <xmw@gentoo.org> | 2017-03-09 14:40:05 +0100 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2017-03-09 14:40:31 +0100 |
commit | f48b8346d7e3fb388829b7b599b4f630003445a0 (patch) | |
tree | 040ca2ea376322a32f45e283f04b45831801c1c2 /net-p2p | |
parent | net-p2p/ncdc: Remove old versions. (diff) | |
download | gentoo-f48b8346d7e3fb388829b7b599b4f630003445a0.tar.gz gentoo-f48b8346d7e3fb388829b7b599b4f630003445a0.tar.bz2 gentoo-f48b8346d7e3fb388829b7b599b4f630003445a0.zip |
net-p2p/ncdc: Version bump. EAPI=6.
Package-Manager: Portage-2.3.4, Repoman-2.3.2
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/ncdc/Manifest | 1 | ||||
-rw-r--r-- | net-p2p/ncdc/ncdc-1.20.ebuild | 35 | ||||
-rw-r--r-- | net-p2p/ncdc/ncdc-9999.ebuild | 10 |
3 files changed, 41 insertions, 5 deletions
diff --git a/net-p2p/ncdc/Manifest b/net-p2p/ncdc/Manifest index feb33b6ebc4a..01544e4a77fd 100644 --- a/net-p2p/ncdc/Manifest +++ b/net-p2p/ncdc/Manifest @@ -1 +1,2 @@ DIST ncdc-1.19.1.tar.gz 354308 SHA256 a6b23381434a47f7134d9ebdf5658fd06768f9b5de498c43e0fa00d1c7229d47 SHA512 36eda8c582ddb40ef732151ecc1654eae927a6a004430d8d27528b3c57ae5e1b06c23a867d8e1624ee4365031325fd7ced2888dd64ff129431bba9ff4171f189 WHIRLPOOL eec4f206ffc15c2389855215c17dada8004200c4eaa5d54bb175296dccccd1fa9518b6a12798c72751896645ea4f77bae58708dee4743bef50c5af98e97af36e +DIST ncdc-1.20.tar.gz 367688 SHA256 8a998857df6289b6bd44287fc06f705b662098189f2a8fe95b1a5fbc703b9631 SHA512 0f20d6584aab1e69bcb3a93271a8542c5968adee5fd198b375dc258996b60ee5f642eac5d5e91c5513e367bbfd42eda80ede9e6e93ab38279c33e8da557010a7 WHIRLPOOL 19452779f5c7559db27830cf64b079b4f98905fd9b64e98438745800a528867b444151d8d5c0f480083b1d59e73f120934d0a5bc091b815ee7b877158fe65572 diff --git a/net-p2p/ncdc/ncdc-1.20.ebuild b/net-p2p/ncdc/ncdc-1.20.ebuild new file mode 100644 index 000000000000..6868ec7cf02f --- /dev/null +++ b/net-p2p/ncdc/ncdc-1.20.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit toolchain-funcs + +DESCRIPTION="ncurses directconnect client" +HOMEPAGE="http://dev.yorhel.nl/ncdc" +SRC_URI="http://dev.yorhel.nl/download/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="geoip" + +RDEPEND="app-arch/bzip2 + dev-db/sqlite:3 + dev-libs/glib:2 + net-libs/gnutls + sys-libs/ncurses:0[unicode] + sys-libs/zlib + geoip? ( dev-libs/geoip )" +DEPEND="${RDEPEND} + dev-util/makeheaders + virtual/pkgconfig" + +src_configure() { + econf \ + $(use_with geoip) +} + +src_compile() { + emake AR="$(tc-getAR)" +} diff --git a/net-p2p/ncdc/ncdc-9999.ebuild b/net-p2p/ncdc/ncdc-9999.ebuild index 9994fd80c8f2..b140e9e32b3a 100644 --- a/net-p2p/ncdc/ncdc-9999.ebuild +++ b/net-p2p/ncdc/ncdc-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 -inherit autotools eutils git-2 toolchain-funcs +inherit autotools git-r3 toolchain-funcs DESCRIPTION="ncurses directconnect client" HOMEPAGE="http://dev.yorhel.nl/ncdc" @@ -26,13 +26,13 @@ DEPEND="${RDEPEND} virtual/pkgconfig" src_prepare() { - epatch_user + default eautoreconf } src_configure() { econf --enable-git-version \ - $(use_with geoip) + $(use_with geoip) } src_compile() { |