app-misc/hexcompare: Remove old
authorManuel Rüger <mrueg@gentoo.org>
Wed, 15 Feb 2017 00:17:10 +0000 (01:17 +0100)
committerManuel Rüger <mrueg@gentoo.org>
Wed, 15 Feb 2017 00:17:35 +0000 (01:17 +0100)
Package-Manager: portage-2.3.3

app-misc/hexcompare/Manifest
app-misc/hexcompare/hexcompare-1.0.1.ebuild [deleted file]

index c916b102200abef7632bde30512cbd68118ba0c0..30210d508444d142e5b57468db605d341a0c10cf 100644 (file)
@@ -1,2 +1 @@
 DIST hexcompare-1.0.4.tar.gz 9686 SHA256 a9609b28099d7578228f359a460a06f7fc1ae8cde614ea10e525b88eb04a9451 SHA512 847bf7e26f27aa0ff56e38b3fe95ad7940a0226e0c496963530fa405d8a3a50f8288a4c7f28d48d4cce05e52c1f69180917a7f10da0943cabf977f78b62eb5fe WHIRLPOOL 45925df7b39ccd9f27532f8148b70a106a50958bac0f129bb37b408b3916dbd801713fac790c0326489a4843b300bd0ccd0d55a62c832caefc0b8090fda15d1b
-DIST hexcompare-101.tar.gz 8718 SHA256 3aad559a1784aacd315109ebad47ab99364ad8c9ab6410463f3d457d5d7e7e76 SHA512 dacce9eefc37b139347452aaf1698f0f1c9fc9b6bca83487154aab840735cd3a46ddb333b76a268149b99d4ef786123cd1799dfb809c047ada62dd87d8dd5dc2 WHIRLPOOL b0979a4d6f8df3fce4530c9baf1d1dcaca39ed753fc81fe28443e30f43a11e56dcbb31e9519fa428a5bd7e6a3be2462c26056a8e0e8fa0f3e5578c3bd3adccf1
diff --git a/app-misc/hexcompare/hexcompare-1.0.1.ebuild b/app-misc/hexcompare/hexcompare-1.0.1.ebuild
deleted file mode 100644 (file)
index b05a75e..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=3
-
-inherit eutils toolchain-funcs versionator
-
-DESCRIPTION="ncurses-based visual comparison of binary files"
-HOMEPAGE="http://hexcompare.sourceforge.net/"
-MY_P=${PN}-$(replace_all_version_separators '')
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="sys-libs/ncurses"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-       epatch "${FILESDIR}"/${P}.patch
-}
-
-src_compile() {
-       $(tc-getCC) \
-               ${CFLAGS} $(/usr/bin/ncurses5-config --cflags) \
-               -o ${PN} main.c gui.c \
-               ${LDFLAGS} $(/usr/bin/ncurses5-config --libs) || die
-}
-
-src_install() {
-       dobin ${PN} || die
-       dodoc README || die
-}