summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2021-01-07 11:21:46 +0000
committerSam James <sam@gentoo.org>2021-01-07 11:33:15 +0000
commit63ba5a24824757a21e46b4a3069a87982e34c850 (patch)
treec6ec5527e1ff739635c348c269485685d9dc783d /net-p2p/ncdc
parentapp-forensics/afflib: cleanup old (diff)
downloadgentoo-63ba5a24824757a21e46b4a3069a87982e34c850.tar.gz
gentoo-63ba5a24824757a21e46b4a3069a87982e34c850.tar.bz2
gentoo-63ba5a24824757a21e46b4a3069a87982e34c850.zip
net-p2p/ncdc: cleanup old
Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-p2p/ncdc')
-rw-r--r--net-p2p/ncdc/Manifest1
-rw-r--r--net-p2p/ncdc/files/ncdc-1.21-tinfo.patch53
-rw-r--r--net-p2p/ncdc/ncdc-1.21.ebuild60
3 files changed, 0 insertions, 114 deletions
diff --git a/net-p2p/ncdc/Manifest b/net-p2p/ncdc/Manifest
index 6d3f20791f16..e3553ce01161 100644
--- a/net-p2p/ncdc/Manifest
+++ b/net-p2p/ncdc/Manifest
@@ -1,2 +1 @@
-DIST ncdc-1.21.tar.gz 370452 BLAKE2B 55ee9943a7adec4c60d17a8782ed9b2337796c0875c3c316e4f1627015520c5b8b23673b183a0f1d7e4c7a367eac5d908fb30e6b2d08caa324d19caf93efc7a4 SHA512 de182e190e3fb26451aad403975ec232b14ce908633cb2d9713582e2af8555fb55e2ea7de160b5b7faa05558f25dac0700dabbf5b7d1acd1aaa26d1bfe033c0c
DIST ncdc-1.22.1.tar.gz 371572 BLAKE2B 22125062a42f77e8a7a8afc699523b27a2b7ec566891676ca13b415e93cdae8e2d8d38f303070c7f098408f537266404a875b9ed7f9931a39933916a0ba576ab SHA512 b084ee28a799705009600c450016719ebb992cb0bf7e026513f4cd7e93b2566e7bf8e352eec92f3d69612ce06c930587759d7f7d20d14ee9fe1d5c4b8c4393af
diff --git a/net-p2p/ncdc/files/ncdc-1.21-tinfo.patch b/net-p2p/ncdc/files/ncdc-1.21-tinfo.patch
deleted file mode 100644
index 0e5acac59d50..000000000000
--- a/net-p2p/ncdc/files/ncdc-1.21-tinfo.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-From 16466392884a623fd93907f4d1071211e8ba48a4 Mon Sep 17 00:00:00 2001
-From: Lars Wendler <polynomial-c@gentoo.org>
-Date: Mon, 8 Apr 2019 13:58:42 +0200
-Subject: [PATCH] Fix build against ncurses with separate libtinfo
-
-by using PKG_CHECK_MODULES instead of AC_CHECK_LIB
-
-Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
----
- configure.ac | 20 +++++---------------
- 1 file changed, 5 insertions(+), 15 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index c774316..d0c0430 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -30,12 +30,6 @@ AM_CONDITIONAL([HAVE_MH], [test "x$have_mh" = "xyes"])
- # Check for header files.
- AC_CHECK_HEADERS([zlib.h bzlib.h],[], AC_MSG_ERROR([Required header file not found]))
-
--have_nch=no
--AC_CHECK_HEADERS([ncursesw/ncurses.h ncurses/ncurses.h ncurses.h],[have_nch=yes])
--if test "x$have_nch" = "xno"; then
-- AC_MSG_ERROR([Could not find a header files for ncurses.])
--fi
--
-
- # Check for posix_fadvise()
- AC_CHECK_FUNCS([posix_fadvise])
-@@ -95,15 +89,11 @@ esac
-
-
- # Check for ncurses
--AC_CHECK_LIB([ncursesw], [get_wch], [
-- AC_SUBST([NCURSES_LIBS],[-lncursesw])
-- ], [
-- AC_CHECK_LIB([ncurses],
-- [get_wch],
-- [AC_SUBST([NCURSES_LIBS],[-lncurses])],
-- [AC_MSG_ERROR(ncursesw library is required)])
-- ]
--)
-+PKG_CHECK_MODULES(NCURSES, ncursesw,,[
-+ PKG_CHECK_MODULES(NCURSES, ncurses,,[
-+ AC_MSG_ERROR(ncurses library is required)
-+ ])
-+])
-
- # Check for zlib
- AC_CHECK_LIB([z],
---
-2.21.0
-
diff --git a/net-p2p/ncdc/ncdc-1.21.ebuild b/net-p2p/ncdc/ncdc-1.21.ebuild
deleted file mode 100644
index 33a396fa7dc8..000000000000
--- a/net-p2p/ncdc/ncdc-1.21.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools toolchain-funcs
-
-DESCRIPTION="ncurses directconnect client"
-HOMEPAGE="https://dev.yorhel.nl/ncdc"
-if [[ "${PV}" == *9999 ]] ; then
- inherit 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
- net-libs/gnutls:=
- sys-libs/ncurses:0=[unicode]
- sys-libs/zlib:=
- geoip? (
- dev-libs/geoip
- dev-libs/libmaxminddb
- )"
-DEPEND="${RDEPEND}"
-BDEPEND="
- dev-util/makeheaders
- virtual/pkgconfig
-"
-
-PATCHES=(
- "${FILESDIR}/${PN}-1.21-tinfo.patch"
-)
-
-src_prepare() {
- default
- 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)"
-}