summaryrefslogtreecommitdiff
path: root/sysutils/wiimms
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/wiimms')
-rw-r--r--sysutils/wiimms/Makefile48
-rw-r--r--sysutils/wiimms/distinfo2
-rw-r--r--sysutils/wiimms/files/patch-Makefile31
-rw-r--r--sysutils/wiimms/files/patch-setup-load-titles.sh20
-rw-r--r--sysutils/wiimms/files/patch-setup.sh38
-rw-r--r--sysutils/wiimms/pkg-descr2
-rw-r--r--sysutils/wiimms/pkg-plist20
7 files changed, 0 insertions, 161 deletions
diff --git a/sysutils/wiimms/Makefile b/sysutils/wiimms/Makefile
deleted file mode 100644
index da85ae0c329c..000000000000
--- a/sysutils/wiimms/Makefile
+++ /dev/null
@@ -1,48 +0,0 @@
-PORTNAME= wiimms
-DISTVERSION= 2.23a
-PORTREVISION= 10
-CATEGORIES= sysutils
-MASTER_SITES= http://gugus69.free.fr/wiimms/ \
- LOCAL/martymac
-DISTNAME= wit-${DISTVERSION}
-
-MAINTAINER= olivier@FreeBSD.org
-COMMENT= Wiimms ISO Tools
-WWW= https://wit.wiimm.de/
-
-LICENSE= GPLv2+
-LICENSE_FILE= ${WRKSRC}/gpl-2.0.txt
-
-BUILD_DEPENDS= bash:shells/bash
-RUN_DEPENDS= bash:shells/bash
-
-WRKSRC= ${WRKDIR}/wiimms-iso-tools
-USES+= gmake
-USE_GCC= yes
-
-post-patch:
- @${REINPLACE_CMD} -e 's|/bin/bash|${LOCALBASE}/bin/bash|g' \
- ${WRKSRC}/*.sh \
- ${WRKSRC}/scripts/*.sh \
- ${WRKSRC}/setup/*.sh \
- ${WRKSRC}/Makefile
- @${REINPLACE_CMD} -e 's|/share/wit|/share/wiimms|g' \
- ${WRKSRC}/Makefile
-
-pre-configure:
- @${CHMOD} +x ${WRKSRC}/setup.sh
-
-do-configure:
- @cd ${WRKSRC} && ./setup.sh
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/wit ${STAGEDIR}${PREFIX}/bin
- ${INSTALL_PROGRAM} ${WRKSRC}/wwt ${STAGEDIR}${PREFIX}/bin
- ${INSTALL_PROGRAM} ${WRKSRC}/wdf ${STAGEDIR}${PREFIX}/bin
- ${LN} -sf wdf ${STAGEDIR}${PREFIX}/bin/wdf-cat
- ${LN} -sf wdf ${STAGEDIR}${PREFIX}/bin/wdf-dump
- @${MKDIR} ${STAGEDIR}${DATADIR}
- ${INSTALL_DATA} ${WRKSRC}/share/* ${STAGEDIR}${DATADIR}
- ${INSTALL_SCRIPT} ${WRKSRC}/load-titles.sh ${STAGEDIR}${DATADIR}
-
-.include <bsd.port.mk>
diff --git a/sysutils/wiimms/distinfo b/sysutils/wiimms/distinfo
deleted file mode 100644
index c52060c299ed..000000000000
--- a/sysutils/wiimms/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (wit-2.23a.tar.gz) = b49e1f161cb4cb7da9db7b8a3447cbd94b8d9ac15d088097c7e47c39c7808b6e
-SIZE (wit-2.23a.tar.gz) = 1810162
diff --git a/sysutils/wiimms/files/patch-Makefile b/sysutils/wiimms/files/patch-Makefile
deleted file mode 100644
index 4b9e7c7ad124..000000000000
--- a/sysutils/wiimms/files/patch-Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
---- Makefile.orig 2013-07-12 20:59:10.000000000 +0200
-+++ Makefile 2013-09-12 21:36:58.340976359 +0200
-@@ -27,7 +27,7 @@
- #-------------------------------------------------------------------------------
- # global settings
-
--#SHELL = /bin/bash
-+#SHELL = /usr/local/bin/bash
- SHELL = /usr/bin/env bash
-
- AUTHOR = Dirk Clemens
-@@ -99,8 +99,8 @@
- # compiler settings
-
- PRE ?=
--CC = $(PRE)gcc
--CPP = $(PRE)g++
-+#CC = $(PRE)cc
-+#CPP = $(PRE)cpp
- STRIP = $(PRE)strip
-
- #-------------------------------------------------------------------------------
-@@ -248,7 +248,7 @@
-
- #-------------------------------------------------------------------------------
-
--SHARE_PATH = $(INSTALL_PATH)/share/wit
-+SHARE_PATH = $(INSTALL_PATH)/share/wiimms
- INSTALL_SCRIPTS = install.sh load-titles.sh
- RM_FILES += $(INSTALL_SCRIPTS)
- SCRIPTS = ./scripts
diff --git a/sysutils/wiimms/files/patch-setup-load-titles.sh b/sysutils/wiimms/files/patch-setup-load-titles.sh
deleted file mode 100644
index 5e3634ac6c99..000000000000
--- a/sysutils/wiimms/files/patch-setup-load-titles.sh
+++ /dev/null
@@ -1,20 +0,0 @@
---- setup/load-titles.sh.orig 2011-08-04 07:50:20.000000000 +0200
-+++ setup/load-titles.sh 2011-08-04 07:51:47.000000000 +0200
-@@ -28,7 +28,7 @@
-
- #------------------------------------------------------------------------------
-
--NEEDED="wit wget tr"
-+NEEDED="wit tr"
-
- BASE_PATH="@@INSTALL-PATH@@"
- SHARE_PATH="@@SHARE-PATH@@"
-@@ -68,7 +68,7 @@
-
- echo "*** load $DEST from $URI"
-
-- if wget -q -O- "$URI" | wit titles / - >"$DEST.tmp" && test -s "$DEST.tmp"
-+ if fetch -q -o- "$URI" | wit titles / - >"$DEST.tmp" && test -s "$DEST.tmp"
- then
- if [[ $ADD != "" ]]
- then
diff --git a/sysutils/wiimms/files/patch-setup.sh b/sysutils/wiimms/files/patch-setup.sh
deleted file mode 100644
index 1eebb19b806a..000000000000
--- a/sysutils/wiimms/files/patch-setup.sh
+++ /dev/null
@@ -1,38 +0,0 @@
---- setup.sh.orig 2013-02-09 21:55:43.000000000 +0100
-+++ setup.sh 2013-09-12 21:34:08.051742488 +0200
-@@ -19,8 +19,9 @@
- tim=($(date '+%s %Y-%m-%d %T'))
-
- have_fuse=0
--[[ $NO_FUSE != 1 && -r /usr/include/fuse.h || -r /usr/local/include/fuse.h ]] \
-- && have_fuse=1
-+# TO DO: Fix fuse compilation (need to add a dependency to the port Makefile too
-+#[[ $NO_FUSE != 1 && -r /usr/include/fuse.h || -r /usr/local/include/fuse.h ]] \
-+# && have_fuse=1
-
- if [[ $M32 = 1 ]]
- then
-@@ -38,9 +39,13 @@
- && grep -qw fallocate /usr/include/bits/fcntl.h \
- && defines="$defines -DHAVE_FALLOCATE=1"
-
--[[ -r /usr/include/fcntl.h ]] \
-- && grep -qw posix_fallocate /usr/include/fcntl.h \
-- && defines="$defines -DHAVE_POSIX_FALLOCATE=1"
-+# Wrong test: FreeBSD fcntl.h include a comment with string "posix_fallocate"
-+#[[ -r /usr/include/fcntl.h ]] \
-+# && grep -qw posix_fallocate /usr/include/fcntl.h \
-+# && defines="$defines -DHAVE_POSIX_FALLOCATE=1"
-+
-+# FreeBSD didn't support Pre-alloc
-+defines="$defines -DNO_PREALLOC"
-
- [[ -r /usr/include/linux/fiemap.h ]] \
- && grep -qw fiemap_extent /usr/include/linux/fiemap.h \
-@@ -110,6 +115,6 @@
-
- ---EOT---
-
--gcc $xflags system.c -o system.tmp && ./system.tmp >>Makefile.setup
-+${CC} $xflags system.c -o system.tmp && ./system.tmp >>Makefile.setup
- rm -f system.tmp
diff --git a/sysutils/wiimms/pkg-descr b/sysutils/wiimms/pkg-descr
deleted file mode 100644
index d29c7bf13322..000000000000
--- a/sysutils/wiimms/pkg-descr
+++ /dev/null
@@ -1,2 +0,0 @@
-Wiimms ISO Tools is a set of command line tools to manipulate Wii and GameCube
-ISO images and WBFS containers.
diff --git a/sysutils/wiimms/pkg-plist b/sysutils/wiimms/pkg-plist
deleted file mode 100644
index 9012295761fc..000000000000
--- a/sysutils/wiimms/pkg-plist
+++ /dev/null
@@ -1,20 +0,0 @@
-bin/wdf
-bin/wdf-cat
-bin/wdf-dump
-bin/wit
-bin/wwt
-%%DATADIR%%/load-titles.sh
-%%DATADIR%%/magic.txt
-%%DATADIR%%/system-menu.txt
-%%DATADIR%%/titles-de.txt
-%%DATADIR%%/titles-es.txt
-%%DATADIR%%/titles-fr.txt
-%%DATADIR%%/titles-it.txt
-%%DATADIR%%/titles-ja.txt
-%%DATADIR%%/titles-ko.txt
-%%DATADIR%%/titles-nl.txt
-%%DATADIR%%/titles-pt.txt
-%%DATADIR%%/titles-ru.txt
-%%DATADIR%%/titles-zhcn.txt
-%%DATADIR%%/titles-zhtw.txt
-%%DATADIR%%/titles.txt