summaryrefslogtreecommitdiff
path: root/devel/elftoaout
diff options
context:
space:
mode:
Diffstat (limited to 'devel/elftoaout')
-rw-r--r--devel/elftoaout/Makefile29
-rw-r--r--devel/elftoaout/distinfo2
-rw-r--r--devel/elftoaout/files/patch-elftoaout.c20
-rw-r--r--devel/elftoaout/pkg-descr2
4 files changed, 0 insertions, 53 deletions
diff --git a/devel/elftoaout/Makefile b/devel/elftoaout/Makefile
deleted file mode 100644
index 094bdb62260c..000000000000
--- a/devel/elftoaout/Makefile
+++ /dev/null
@@ -1,29 +0,0 @@
-# Created by: kchowksey@hss.hns.com
-# $FreeBSD$
-
-PORTNAME= elftoaout
-PORTVERSION= 2.3
-CATEGORIES= devel
-MASTER_SITES= DEBIAN/pool/main/s/sparc-utils
-DISTNAME= sparc-utils_1.9.orig
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= ELF to a.out conversion tool by Jakub Jelinek and Pete Zaitcev
-
-LICENSE= GPLv2+
-LICENSE_FILE= ${WRKSRC}/COPYING
-
-BROKEN= unfetchable
-DEPRECATED= Unfetchable, unmaintained
-EXPIRATION_DATE= 2019-10-16
-
-WRKSRC= ${WRKDIR}/sparc-utils-1.9.orig/elftoaout-2.3
-MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}"
-PLIST_FILES= bin/elftoaout \
- man/man1/elftoaout.1.gz
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/elftoaout ${STAGEDIR}${PREFIX}/bin
- ${INSTALL_MAN} ${WRKSRC}/elftoaout.1 ${STAGEDIR}${PREFIX}/man/man1
-
-.include <bsd.port.mk>
diff --git a/devel/elftoaout/distinfo b/devel/elftoaout/distinfo
deleted file mode 100644
index 0853ac61bc55..000000000000
--- a/devel/elftoaout/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (sparc-utils_1.9.orig.tar.gz) = b652bc27f95dcf10a7626b1d2943a1084e1e0b7f9bd3a97f9a46b6688370fe4b
-SIZE (sparc-utils_1.9.orig.tar.gz) = 110080
diff --git a/devel/elftoaout/files/patch-elftoaout.c b/devel/elftoaout/files/patch-elftoaout.c
deleted file mode 100644
index f8555266639a..000000000000
--- a/devel/elftoaout/files/patch-elftoaout.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- elftoaout.c~ Thu Jul 10 16:48:06 1997
-+++ elftoaout.c Fri Jul 3 09:36:09 1998
-@@ -9,7 +9,16 @@
- #include <linux/elf.h>
- #define ELFDATA2MSB 2
- #else
--#include <sys/elf.h>
-+#include <elf.h>
-+#include <sys/elf32.h>
-+#include <sys/elf64.h>
-+#endif
-+
-+#ifndef PT_LOPROC
-+#define PT_LOPROC 0x70000000
-+#endif
-+#ifndef PT_HIPROC
-+#define PT_HIPROC 0x7fffffff
- #endif
-
- #define swab16(x) (((x)<<8&0xFF00)|((x)>>8&0x00FF))
diff --git a/devel/elftoaout/pkg-descr b/devel/elftoaout/pkg-descr
deleted file mode 100644
index c3f2a402f839..000000000000
--- a/devel/elftoaout/pkg-descr
+++ /dev/null
@@ -1,2 +0,0 @@
-A program that is used to convert static elf images to a.out format.
-The SUN OpenBoot PROM can only boot a.out images.