summaryrefslogtreecommitdiff
path: root/dev-util/cgdb/cgdb-0.6.8.ebuild
diff options
context:
space:
mode:
authorJakov Smolic <jakov.smolic@sartura.hr>2020-09-18 10:35:44 +0200
committerJoonas Niilola <juippis@gentoo.org>2020-10-02 16:57:11 +0300
commit36fd2eda9ecf10f17f5220f399f47da73382c97c (patch)
treef633fda318aa1572876cde2f4527cc71be8ca921 /dev-util/cgdb/cgdb-0.6.8.ebuild
parent7748f5744a5b61bf80b0e162a4ee6a6763de39f4 (diff)
downloadgentoo-36fd2eda9ecf10f17f5220f399f47da73382c97c.tar.gz
gentoo-36fd2eda9ecf10f17f5220f399f47da73382c97c.tar.bz2
gentoo-36fd2eda9ecf10f17f5220f399f47da73382c97c.zip
dev-util/cgdb: drop old
Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr> Closes: https://github.com/gentoo/gentoo/pull/17584 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-util/cgdb/cgdb-0.6.8.ebuild')
-rw-r--r--dev-util/cgdb/cgdb-0.6.8.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/dev-util/cgdb/cgdb-0.6.8.ebuild b/dev-util/cgdb/cgdb-0.6.8.ebuild
deleted file mode 100644
index 357b17b658a2..000000000000
--- a/dev-util/cgdb/cgdb-0.6.8.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-if [[ ${PV} = *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="
- https://github.com/cgdb/cgdb.git
- git@github.com:cgdb/cgdb.git"
-else
- SRC_URI="https://github.com/cgdb/cgdb/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 ~arm ppc ppc64 x86 ~amd64-linux ~x86-linux"
-fi
-
-inherit autotools multilib-minimal
-
-DESCRIPTION="A curses front-end for GDB, the GNU debugger"
-HOMEPAGE="https://cgdb.github.io/"
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-COMMONDEPEND="
- sys-libs/ncurses:0=
- sys-libs/readline:0="
-
-DEPEND="${COMMONDEPEND}
- test? ( dev-util/dejagnu )"
-
-RDEPEND="
- ${COMMONDEPEND}
- sys-devel/gdb"
-
-DOCS=( AUTHORS ChangeLog INSTALL NEWS README.md TODO )
-
-PATCHES=(
- # Bug: #724256
- "${FILESDIR}/${PN}-0.7.1-respect-AR.patch"
-)
-
-src_prepare() {
- default
- cp configure.{init,ac} || die "cp failed"
- AT_M4DIR="config" eautoreconf
-}
-
-multilib_src_configure() {
- ECONF_SOURCE="${S}" econf
-}