Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/cdircmp/
Date: Thu, 26 Jul 2018 20:25:06
Message-Id: 1532636697.731b4724f819b76738e9d8fee4a2fb669fa85e5b.zlogene@gentoo
1 commit: 731b4724f819b76738e9d8fee4a2fb669fa85e5b
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 26 20:24:43 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 26 20:24:57 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=731b4724
7
8 app-misc/cdircmp: Drop old
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 app-misc/cdircmp/cdircmp-0.3-r1.ebuild | 38 ----------------------------------
13 1 file changed, 38 deletions(-)
14
15 diff --git a/app-misc/cdircmp/cdircmp-0.3-r1.ebuild b/app-misc/cdircmp/cdircmp-0.3-r1.ebuild
16 deleted file mode 100644
17 index f7851f0207a..00000000000
18 --- a/app-misc/cdircmp/cdircmp-0.3-r1.ebuild
19 +++ /dev/null
20 @@ -1,38 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="2"
25 -
26 -inherit toolchain-funcs
27 -
28 -DESCRIPTION="Compare directories and select files to copy"
29 -HOMEPAGE="http://home.hccnet.nl/paul.schuurmans/"
30 -SRC_URI="http://home.hccnet.nl/paul.schuurmans/linux/download/${P}.tar.gz"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="amd64 ~ppc x86"
35 -IUSE=""
36 -
37 -RDEPEND=">=sys-libs/ncurses-5.4"
38 -DEPEND="${RDEPEND}
39 - >=sys-apps/sed-4"
40 -
41 -src_prepare() {
42 - sed -i Makefile \
43 - -e 's| -o | $(LDFLAGS)&|g' \
44 - || die "sed Makefile"
45 -}
46 -
47 -src_compile() {
48 - emake CC="$(tc-getCC)" \
49 - CFLAGS="${CFLAGS}" \
50 - LDFLAGS="${LDFLAGS}" \
51 - || die "emake failed"
52 -}
53 -
54 -src_install() {
55 - dodoc AUTHORS ChangeLog README
56 -
57 - dobin ${PN} || die "dobin failed"
58 -}