summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-cdr/uif2iso')
-rw-r--r--app-cdr/uif2iso/files/0.1.7-Makefile10
-rw-r--r--app-cdr/uif2iso/uif2iso-0.1.7c.ebuild31
2 files changed, 0 insertions, 41 deletions
diff --git a/app-cdr/uif2iso/files/0.1.7-Makefile b/app-cdr/uif2iso/files/0.1.7-Makefile
deleted file mode 100644
index 0b8a2bd95355..000000000000
--- a/app-cdr/uif2iso/files/0.1.7-Makefile
+++ /dev/null
@@ -1,10 +0,0 @@
-# We replace the makefile since the upstream one is not suitable for
-# us :(
-
-OBJS := $(patsubst %.c,%.o,$(wildcard *.c))
-
-CFLAGS += -DMAGICISO_IS_SHIT
-
-LDLIBS = -lz
-
-uif2iso: $(OBJS)
diff --git a/app-cdr/uif2iso/uif2iso-0.1.7c.ebuild b/app-cdr/uif2iso/uif2iso-0.1.7c.ebuild
deleted file mode 100644
index 9d43caee44c3..000000000000
--- a/app-cdr/uif2iso/uif2iso-0.1.7c.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Converts MagicISO CD-images to iso"
-HOMEPAGE="http://aluigi.org/mytoolz.htm#uif2iso"
-SRC_URI="mirror://gentoo/${P}.zip"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="sys-libs/zlib"
-DEPEND="${RDEPEND}
- app-arch/unzip"
-
-S="${WORKDIR}/src"
-
-src_compile() {
- # Yes we use our own makefile, I'll try to explain this to
- # upstream _again_.
- emake CC="$(tc-getCC)" -f "${FILESDIR}/0.1.7-Makefile" || die "emake failed"
-}
-
-src_install() {
- dobin ${PN} || die "failed to install"
-
- dodoc "${WORKDIR}"/${PN}.txt "${WORKDIR}"/README
-}