Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/uif2iso/files/, app-cdr/uif2iso/
Date: Sun, 07 Jan 2018 05:50:25
Message-Id: 1515304211.496a89618b0811ab2e55dbe381ea6b391079038d.kensington@gentoo
1 commit: 496a89618b0811ab2e55dbe381ea6b391079038d
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 7 05:47:39 2018 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 7 05:50:11 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=496a8961
7
8 app-cdr/uif2iso: remove 0.1.7c-r0
9
10 Package-Manager: Portage-2.3.14, Repoman-2.3.6
11
12 app-cdr/uif2iso/files/0.1.7-Makefile | 10 ----------
13 app-cdr/uif2iso/uif2iso-0.1.7c.ebuild | 31 -------------------------------
14 2 files changed, 41 deletions(-)
15
16 diff --git a/app-cdr/uif2iso/files/0.1.7-Makefile b/app-cdr/uif2iso/files/0.1.7-Makefile
17 deleted file mode 100644
18 index 0b8a2bd9535..00000000000
19 --- a/app-cdr/uif2iso/files/0.1.7-Makefile
20 +++ /dev/null
21 @@ -1,10 +0,0 @@
22 -# We replace the makefile since the upstream one is not suitable for
23 -# us :(
24 -
25 -OBJS := $(patsubst %.c,%.o,$(wildcard *.c))
26 -
27 -CFLAGS += -DMAGICISO_IS_SHIT
28 -
29 -LDLIBS = -lz
30 -
31 -uif2iso: $(OBJS)
32
33 diff --git a/app-cdr/uif2iso/uif2iso-0.1.7c.ebuild b/app-cdr/uif2iso/uif2iso-0.1.7c.ebuild
34 deleted file mode 100644
35 index 9d43caee44c..00000000000
36 --- a/app-cdr/uif2iso/uif2iso-0.1.7c.ebuild
37 +++ /dev/null
38 @@ -1,31 +0,0 @@
39 -# Copyright 1999-2011 Gentoo Foundation
40 -# Distributed under the terms of the GNU General Public License v2
41 -
42 -inherit eutils toolchain-funcs
43 -
44 -DESCRIPTION="Converts MagicISO CD-images to iso"
45 -HOMEPAGE="http://aluigi.org/mytoolz.htm#uif2iso"
46 -SRC_URI="mirror://gentoo/${P}.zip"
47 -
48 -LICENSE="GPL-2"
49 -SLOT="0"
50 -KEYWORDS="amd64 x86"
51 -IUSE=""
52 -
53 -RDEPEND="sys-libs/zlib"
54 -DEPEND="${RDEPEND}
55 - app-arch/unzip"
56 -
57 -S="${WORKDIR}/src"
58 -
59 -src_compile() {
60 - # Yes we use our own makefile, I'll try to explain this to
61 - # upstream _again_.
62 - emake CC="$(tc-getCC)" -f "${FILESDIR}/0.1.7-Makefile" || die "emake failed"
63 -}
64 -
65 -src_install() {
66 - dobin ${PN} || die "failed to install"
67 -
68 - dodoc "${WORKDIR}"/${PN}.txt "${WORKDIR}"/README
69 -}