summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Joldasov <bratishkaerik@getgoogleoff.me>2022-11-25 15:29:20 +0600
committerViorel Munteanu <ceamac@gentoo.org>2022-12-13 20:28:29 +0200
commit946fca84b45df78ea568f6b14512745a2144af73 (patch)
tree1b5be5ec50bd21f41b3dfe1190d1ed65d0dcbc64 /net-p2p/ncdc
parentnet-p2p/ncdc: add myself as a maintainer (diff)
downloadgentoo-946fca84b45df78ea568f6b14512745a2144af73.tar.gz
gentoo-946fca84b45df78ea568f6b14512745a2144af73.tar.bz2
gentoo-946fca84b45df78ea568f6b14512745a2144af73.zip
net-p2p/ncdc: drop 9999
Signed-off-by: Eric Joldasov <bratishkaerik@getgoogleoff.me> Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
Diffstat (limited to 'net-p2p/ncdc')
-rw-r--r--net-p2p/ncdc/ncdc-9999.ebuild59
1 files changed, 0 insertions, 59 deletions
diff --git a/net-p2p/ncdc/ncdc-9999.ebuild b/net-p2p/ncdc/ncdc-9999.ebuild
deleted file mode 100644
index e001c6590371..000000000000
--- a/net-p2p/ncdc/ncdc-9999.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-DESCRIPTION="ncurses directconnect client"
-HOMEPAGE="https://dev.yorhel.nl/ncdc"
-if [[ ${PV} == *9999 ]] ; then
- inherit autotools git-r3
- EGIT_REPO_URI="git://g.blicky.net/ncdc.git"
-else
- SRC_URI="https://dev.yorhel.nl/download/${P}.tar.gz"
- KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="geoip"
-
-RDEPEND="
- app-arch/bzip2
- dev-db/sqlite:3
- >=dev-libs/glib-2.32:2
- net-libs/gnutls:=
- sys-libs/ncurses:=[unicode(+)]
- sys-libs/zlib:=
- geoip? (
- dev-libs/geoip
- dev-libs/libmaxminddb
- )"
-DEPEND="${RDEPEND}"
-BDEPEND="
- dev-util/makeheaders
- virtual/pkgconfig
-"
-
-src_prepare() {
- default
-
- [[ ${PV} == *9999 ]] && eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_with geoip)
- )
-
- if [[ ${PV} == *9999 ]] ; then
- myeconfargs+=( --enable-git-version )
- fi
-
- econf "${myeconfargs[@]}"
-}
-
-src_compile() {
- emake AR="$(tc-getAR)"
-}