summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2010-08-06 16:02:58 +0000
committerMichał Górny <mgorny@gentoo.org>2010-08-06 16:02:58 +0000
commitb841d44d5545564de7ef1420b65b6c85446155a4 (patch)
treeed8ab91228c868d2363ba747e4c50148a3843bef /dev-util/debug/debug-0.0.21.ebuild
parentdev-perl/perl-xyne-arch: Regenerate manifest. (diff)
downloadsunrise-b841d44d5545564de7ef1420b65b6c85446155a4.tar.gz
sunrise-b841d44d5545564de7ef1420b65b6c85446155a4.tar.bz2
sunrise-b841d44d5545564de7ef1420b65b6c85446155a4.zip
dev-embedded/s51dude, dev-php5/php-xmlsec, dev-util/debug, games-engines/dagii, net-misc/mugshot, sci-libs/candystore, x11-misc/gestikk: Remove a set of packages for which neither SRC_URI nor HOMEPAGE is reachable any longer.
svn path=/sunrise/; revision=11097
Diffstat (limited to 'dev-util/debug/debug-0.0.21.ebuild')
-rw-r--r--dev-util/debug/debug-0.0.21.ebuild44
1 files changed, 0 insertions, 44 deletions
diff --git a/dev-util/debug/debug-0.0.21.ebuild b/dev-util/debug/debug-0.0.21.ebuild
deleted file mode 100644
index c56e87b53..000000000
--- a/dev-util/debug/debug-0.0.21.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-inherit toolchain-funcs
-
-KEYWORDS="~x86"
-
-DESCRIPTION="Assembly level debugger"
-HOMEPAGE="http://www.modest-proposals.com/Furball.htm"
-SRC_URI="http://www.modest-proposals.com/binary/${P}.tgz"
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="ncurses readline"
-
-DEPEND="ncurses? ( sys-libs/ncurses )
- readline? ( sys-libs/readline )"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i \
- -e 's/ald/debug/g' \
- -e 's#$(BINDIR)#$(DESTDIR)/$(BINDIR)#' \
- -e 's#$(MANDIR)#$(DESTDIR)/$(MANDIR)#' \
- -e 's/\($(INSTALL_BIN)\)/\1 -D /' \
- -e 's/\($(INSTALL_DATA)\)/\1 -D /' \
- -e 's/-s//' \
- Makefile.in || die "sed failed"
-}
-
-src_compile() {
- CC=$(tc-getCC) econf \
- $(use_enable ncurses curses) \
- $(use_enable readline) \
- || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc ChangeLog README
-}