From f91ad632ade1b5cf7173e6ede53c2e88a0cb5f6b Mon Sep 17 00:00:00 2001 From: Matt Housh Date: Thu, 25 Jun 2020 11:18:05 -0500 Subject: [PATCH] bin86: moved to opt --- bin86/.footprint | 12 ------------ bin86/.signature | 6 ------ bin86/Pkgfile | 17 ----------------- bin86/bin86-x86_64.patch | 14 -------------- 4 files changed, 49 deletions(-) delete mode 100644 bin86/.footprint delete mode 100644 bin86/.signature delete mode 100644 bin86/Pkgfile delete mode 100644 bin86/bin86-x86_64.patch diff --git a/bin86/.footprint b/bin86/.footprint deleted file mode 100644 index 4da5fc07..00000000 --- a/bin86/.footprint +++ /dev/null @@ -1,12 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/as86 --rwxr-xr-x root/root usr/bin/ld86 -lrwxrwxrwx root/root usr/bin/nm86 -> objdump86 --rwxr-xr-x root/root usr/bin/objdump86 -lrwxrwxrwx root/root usr/bin/size86 -> objdump86 -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/as86.1.gz --rw-r--r-- root/root usr/share/man/man1/ld86.1.gz diff --git a/bin86/.signature b/bin86/.signature deleted file mode 100644 index 76d92509..00000000 --- a/bin86/.signature +++ /dev/null @@ -1,6 +0,0 @@ -untrusted comment: verify with /etc/ports/core.pub -RWRJc1FUaeVeqhMDWeRFv6fvzY80w/knth3bn3TfLlZKM4lw7mNJ54ewIz2S9cHw0jgoBzzWoV/11Lj4MC4dfrsBEyKiccdQGAA= -SHA256 (Pkgfile) = 3560887dfc179de986c659d2d2da88ba9a45f05bc8f427fff92d36f3b31d3528 -SHA256 (.footprint) = 2991bc460e6ed6ee8256816fde768cb9f463b0dbe8d10e016501c10820f3035f -SHA256 (bin86-0.16.21.tar.gz) = 021e37cde3a20632c4c9000993cb4aa9f58cb82b1d3c26b9aeb62d6566925738 -SHA256 (bin86-x86_64.patch) = 3b41a07f6b31de8124d015f4526b9c1427771c3d7c9bd3bcbf888992f966bb47 diff --git a/bin86/Pkgfile b/bin86/Pkgfile deleted file mode 100644 index 1456a630..00000000 --- a/bin86/Pkgfile +++ /dev/null @@ -1,17 +0,0 @@ -# Description: 8086 assembler and loader which can generate 32-bit code for the 386+ processors -# URL: https://github.com/lkundrak/dev86/tree/master/bin86 -# Maintainer: CRUX System Team, core-ports at crux dot nu - -name=bin86 -version=0.16.21 -release=1 -source=(https://mirror.netcologne.de/gentoo/distfiles/$name-$version.tar.gz \ - $name-x86_64.patch) - -build() { - cd $name-$version - patch -p1 -i $SRC/$name-x86_64.patch - make -j1 CFLAGS="$CFLAGS -D_POSIX_SOURCE" PREFIX=/usr - install -d $PKG/usr/{bin,share/man/man1} - make PREFIX=$PKG/usr MANDIR=$PKG/usr/share/man/man1 install -} diff --git a/bin86/bin86-x86_64.patch b/bin86/bin86-x86_64.patch deleted file mode 100644 index aec13e22..00000000 --- a/bin86/bin86-x86_64.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff -urN bin86-0.16.14-orig/ld/x86_aout.h bin86-0.16.14/ld/x86_aout.h ---- bin86-0.16.14-orig/ld/x86_aout.h 2004-11-07 20:07:31.506442000 +0100 -+++ bin86-0.16.14/ld/x86_aout.h 2004-11-07 20:07:41.106982496 +0100 -@@ -12,6 +12,9 @@ - #if defined(i386) || defined(__BCC__) || defined(MSDOS) - typedef long Long; - #define __OUT_OK 1 -+#elif defined(__x86_64__) -+typedef int Long; -+#define __OUT_OK 1 - #else - typedef char Long[4]; - #endif -