summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2016-07-24 15:18:21 +0200
committerMichał Górny <mgorny@gentoo.org>2016-07-24 15:22:59 +0200
commiteb1c720066184529ba8fb0d608f249ca8c0eb410 (patch)
treea7845cc1cb7f2931d8b82a933070544b3b32a048 /dev-util
parentdev-util/ghh: Remove last-rited pkg (diff)
downloadgentoo-eb1c720066184529ba8fb0d608f249ca8c0eb410.tar.gz
gentoo-eb1c720066184529ba8fb0d608f249ca8c0eb410.tar.bz2
gentoo-eb1c720066184529ba8fb0d608f249ca8c0eb410.zip
dev-util/rec: Remove last-rited pkg
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/rec/Manifest1
-rw-r--r--dev-util/rec/metadata.xml5
-rw-r--r--dev-util/rec/rec-1.6.ebuild54
3 files changed, 0 insertions, 60 deletions
diff --git a/dev-util/rec/Manifest b/dev-util/rec/Manifest
deleted file mode 100644
index 72c54ac1b5b8..000000000000
--- a/dev-util/rec/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST rec16lx.zip 311993 SHA256 3f8f4c802b33352fe0114bbf7758d4f5510b3e435824539cf8b5a73eb0162a87 SHA512 180f17cedb76ac3474b6d23da648eee9efba13c0c7288759c624032aafdb6d49832b4059a2b96421c88d8138c5aba28a3b352e479963eea1c031e6df3d159271 WHIRLPOOL 9fe3fbe68f0bc9e175eea338bd8b0db5fc54703c39adc36030437db6f61e9a4734101d67b94ac60e65d2c8c1e8c15160960df64b4bb88c70b774bd04151e68a5
diff --git a/dev-util/rec/metadata.xml b/dev-util/rec/metadata.xml
deleted file mode 100644
index 6f49eba8f496..000000000000
--- a/dev-util/rec/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>
diff --git a/dev-util/rec/rec-1.6.ebuild b/dev-util/rec/rec-1.6.ebuild
deleted file mode 100644
index 1e251390cc0c..000000000000
--- a/dev-util/rec/rec-1.6.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit eutils
-
-DESCRIPTION="Reverse Engineering Compiler"
-HOMEPAGE="http://www.backerstreet.com/rec/rec.htm"
-SRC_URI="http://www.backerstreet.com/rec/rec16lx.zip"
-
-LICENSE="BSD-2 free-noncomm HPND"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
-IUSE=""
-
-RESTRICT="strip"
-
-DEPEND="app-arch/unzip"
-RDEPEND="
- sys-libs/ncurses
- sys-libs/gpm"
-
-S=${WORKDIR}
-
-QA_PREBUILT="/opt/bin/rec"
-
-src_unpack() {
- unzip -L -d "${S}" -q "${DISTDIR}/${A}" || die
-}
-
-src_prepare() {
- sed -i 's#\(^.*$\)#/opt/rec/\1#g' proto.lst || die
-}
-
-src_compile() { :; }
-
-src_install() {
- dodir /opt/rec
- into /opt
- dobin rec
-
- insinto /opt/rec
- doins proto.lst
- doins string.o stdio.o stdlib.o fcntl.o winbase.o winuser.o wingdi.o
- dodoc readme copyrite
-}
-
-pkg_postinst() {
- elog "/opt/rec/proto.lst should be copied into the working"
- elog "directory of new projects, this will make rec aware of common"
- elog "prototypes."
-}