mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
Remove unmaintained ports which depends on Linux GTK1 libraries:
emulators/linux-ePSXe emulators/linux-peops-spu math/linux-relview No objections from: emulation@
This commit is contained in:
parent
b7afb4ed12
commit
3843ca5aed
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=330260
3
MOVED
3
MOVED
@ -5074,3 +5074,6 @@ www/node06||2013-10-11|Has expired: Unsupported upstream, not compatible with cu
|
||||
math/matrices||2013-10-12|Has expired: Unmaintained upstream
|
||||
games/nethack33-gnome|games/nethack33|2013-10-13|Has expired: Uses deprecated gnome 1.x libraries
|
||||
games/nethack34-gnome|games/nethack34|2013-10-13|Has expired: Uses deprecated gnome 1.x libraries
|
||||
emulators/linux-ePSXe||2013-10-13|Removed, uses Linux GTK1 libraries
|
||||
emulators/linux-peops-spu||2013-10-13|Removed, uses Linux GTK1 libraries
|
||||
math/linux-relview||2013-10-13|Removed, uses Linux GTK1 libraries
|
||||
|
@ -70,10 +70,8 @@
|
||||
SUBDIR += lib765
|
||||
SUBDIR += libdsk
|
||||
SUBDIR += libspectrum
|
||||
SUBDIR += linux-ePSXe
|
||||
SUBDIR += linux-geepee32
|
||||
SUBDIR += linux-peops-softgpu
|
||||
SUBDIR += linux-peops-spu
|
||||
SUBDIR += linux-pete-mesagpu
|
||||
SUBDIR += linux-pete-xgl2gpu
|
||||
SUBDIR += linux-systemsimcell
|
||||
|
@ -1,43 +0,0 @@
|
||||
# Created by: Jean-Yves Lefort <jylefort@brutele.be>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= epsxe
|
||||
PORTVERSION= 1.6.0
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= emulators linux
|
||||
MASTER_SITES= http://www.epsxe.com/files/
|
||||
PKGNAMEPREFIX= linux-
|
||||
DISTNAME= epsxe160lin
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= A Sony Playstation emulator (Linux version)
|
||||
|
||||
USE_LINUX= yes
|
||||
USE_LINUX_APPS= gtk xorglibs
|
||||
USE_ZIP= yes
|
||||
NO_WRKSUBDIR= yes
|
||||
NO_BUILD= yes
|
||||
ONLY_FOR_ARCHS= i386 amd64
|
||||
|
||||
SUB_FILES= epsxe-wrapper
|
||||
|
||||
NO_STAGE= yes
|
||||
do-install:
|
||||
${INSTALL_SCRIPT} ${WRKDIR}/epsxe-wrapper ${PREFIX}/bin/epsxe
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/epsxe ${PREFIX}/libexec
|
||||
|
||||
${MKDIR} ${DATADIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/keycodes.lst ${DATADIR}
|
||||
|
||||
${MKDIR} ${DATADIR}/cheats
|
||||
${INSTALL_DATA} ${WRKSRC}/cheats/* ${DATADIR}/cheats
|
||||
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/docs/* ${DOCSDIR}
|
||||
.endif
|
||||
|
||||
post-install:
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
|
||||
.include <bsd.port.mk>
|
@ -1,2 +0,0 @@
|
||||
SHA256 (epsxe160lin.zip) = a15f92c54b4d5813ac5257282efdbeeddbdbbf08dd45655770e5d5b268735fdd
|
||||
SIZE (epsxe160lin.zip) = 180407
|
@ -1,54 +0,0 @@
|
||||
#!/bin/sh
|
||||
# $FreeBSD$
|
||||
|
||||
EPSXE=%%PREFIX%%/libexec/epsxe
|
||||
DATADIR=%%DATADIR%%
|
||||
PSEMUPRO_PLUGINS_DIR=%%PREFIX%%/lib/psemupro/plugins
|
||||
PSEMUPRO_CFGBINS_DIR=%%PREFIX%%/libexec/psemupro/cfg
|
||||
PSEMUPRO_CFGFILES_DIR=%%PREFIX%%/share/psemupro/cfg
|
||||
|
||||
USERDIR=$HOME/.epsxe
|
||||
|
||||
remove_stale_symlinks () {
|
||||
dir="$1"
|
||||
|
||||
for f in $dir/*; do
|
||||
[ "x$f" = "x$dir/*" ] && break
|
||||
|
||||
target=`readlink $f`
|
||||
if [ -n "$target" ] && [ ! -e "$target" ]; then
|
||||
rm -f $f
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
### create $USERDIR hierarchy
|
||||
|
||||
for d in bios cfg cheats memcards patches plugins snap sstates; do
|
||||
mkdir -p $USERDIR/$d || exit 1
|
||||
done
|
||||
|
||||
### remove stale symlinks
|
||||
|
||||
for d in plugins cfg; do
|
||||
remove_stale_symlinks $USERDIR/$d || exit 1
|
||||
done
|
||||
|
||||
### populate $USERDIR
|
||||
|
||||
ln -sf $EPSXE $USERDIR/epsxe || exit 1
|
||||
|
||||
for f in keycodes.lst cheats/breath_of_fire_4_usa.cht \
|
||||
cheats/chrono_cross_ntsc.cht cheats/tarzan_pal.cht; do
|
||||
ln -sf $DATADIR/$f $USERDIR/$f || exit 1
|
||||
done
|
||||
|
||||
ln -sf $PSEMUPRO_PLUGINS_DIR/* $USERDIR/plugins 2>/dev/null
|
||||
ln -sf $PSEMUPRO_CFGBINS_DIR/* $USERDIR/cfg 2>/dev/null
|
||||
cp -n $PSEMUPRO_CFGFILES_DIR/* $USERDIR/cfg 2>/dev/null
|
||||
chmod u+w $USERDIR/cfg/* 2>/dev/null
|
||||
|
||||
### run the emulator
|
||||
|
||||
cd $USERDIR || exit 1
|
||||
exec ./epsxe "$@"
|
@ -1,6 +0,0 @@
|
||||
ePSXe is a Sony Playstation emulator. It takes advantage of the
|
||||
popular PSEmu Pro plugin system.
|
||||
|
||||
This is the Linux version.
|
||||
|
||||
WWW: http://www.epsxe.com/
|
@ -1,33 +0,0 @@
|
||||
===============================================================================
|
||||
To do anything useful with the emulator, you need:
|
||||
|
||||
- a GPU (graphical processing unit) plugin, choose between:
|
||||
|
||||
emulators/linux-peops-softgpu
|
||||
emulators/linux-pete-xgl2gpu
|
||||
emulators/linux-pete-mesagpu
|
||||
|
||||
- a SPU (sound processing unit) plugin:
|
||||
|
||||
emulators/linux-peops-spu
|
||||
|
||||
- optionally, a joystick plugin:
|
||||
|
||||
emulators/linux-padjoy
|
||||
|
||||
- a Playstation BIOS image:
|
||||
|
||||
The port documentation says: "during testing we found out that the
|
||||
scph1001.bin and scph7502.bin BIOS are compatible, but the scph1000.bin
|
||||
won't work".
|
||||
|
||||
Please keep in mind that the Playstation BIOS is copyrighted software.
|
||||
|
||||
Moreover, some users report that the emulator does not work for them unless
|
||||
they mount the Linux process file system. To mount linprocfs, add the
|
||||
following line to /etc/fstab:
|
||||
|
||||
linproc /compat/linux/proc linprocfs rw 0 0
|
||||
|
||||
and reboot the system.
|
||||
===============================================================================
|
@ -1,13 +0,0 @@
|
||||
bin/epsxe
|
||||
libexec/epsxe
|
||||
share/epsxe/keycodes.lst
|
||||
share/epsxe/cheats/breath_of_fire_4_usa.cht
|
||||
share/epsxe/cheats/chrono_cross_ntsc.cht
|
||||
share/epsxe/cheats/tarzan_pal.cht
|
||||
%%PORTDOCS%%%%DOCSDIR%%/epsxe_en.txt
|
||||
%%PORTDOCS%%%%DOCSDIR%%/epsxe_linux_en.txt
|
||||
%%PORTDOCS%%%%DOCSDIR%%/epsxe_linux_sp.txt
|
||||
%%PORTDOCS%%%%DOCSDIR%%/epsxe_sp.txt
|
||||
@dirrm share/epsxe/cheats
|
||||
@dirrm share/epsxe
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
@ -1,51 +0,0 @@
|
||||
# Created by: Jean-Yves Lefort <jylefort@brutele.be>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= peops-spu
|
||||
PORTVERSION= 1.9
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= emulators linux
|
||||
MASTER_SITES= http://www.pbernert.com/
|
||||
PKGNAMEPREFIX= linux-
|
||||
DISTNAME= spupeopsoss${MAJOR}0${MINOR}
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= A PSEmu Pro SPU plugin using the OSS interface (Linux version)
|
||||
|
||||
NO_WRKSUBDIR= yes
|
||||
NO_BUILD= yes
|
||||
USE_LINUX= yes
|
||||
USE_LINUX_APPS= gtk xorglibs
|
||||
|
||||
ONLY_FOR_ARCHS= i386 amd64
|
||||
|
||||
MAJOR= ${PORTVERSION:R}
|
||||
MINOR= ${PORTVERSION:E}
|
||||
PLIST_SUB+= MAJOR=${MAJOR} MINOR=${MINOR}
|
||||
|
||||
NO_STAGE= yes
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
PSEMUPRO_PLUGINS_DIR= ${PREFIX}/lib/psemupro/plugins
|
||||
PSEMUPRO_CFGBINS_DIR= ${PREFIX}/libexec/psemupro/cfg
|
||||
PSEMUPRO_CFGFILES_DIR= ${PREFIX}/share/psemupro/cfg
|
||||
|
||||
do-install:
|
||||
${MKDIR} ${PSEMUPRO_PLUGINS_DIR}
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/libspuPeopsOSS.so.${MAJOR}.0.${MINOR} ${PSEMUPRO_PLUGINS_DIR}
|
||||
|
||||
${MKDIR} ${PSEMUPRO_CFGBINS_DIR}
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/cfgPeopsOSS ${PSEMUPRO_CFGBINS_DIR}
|
||||
|
||||
${MKDIR} ${PSEMUPRO_CFGFILES_DIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/spuPeopsOSS.cfg ${PSEMUPRO_CFGFILES_DIR}
|
||||
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${DOCSDIR}
|
||||
${INSTALL_DATA} \
|
||||
${WRKSRC}/readme_${MAJOR}_${MINOR}.txt \
|
||||
${WRKSRC}/version_${MAJOR}_${MINOR}.txt \
|
||||
${DOCSDIR}
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
@ -1,2 +0,0 @@
|
||||
SHA256 (spupeopsoss109.tar.gz) = 56798293dbbbcf68feedc2786818dbe75b0619556c9a67b012710053aeacb5d6
|
||||
SIZE (spupeopsoss109.tar.gz) = 40695
|
@ -1,5 +0,0 @@
|
||||
P.E.Op.S. OSS SPU is a PSEmu Pro SPU plugin using the OSS interface.
|
||||
|
||||
This is the Linux version, tested with emulators/linux-ePSXe.
|
||||
|
||||
WWW: http://sourceforge.net/projects/peops/
|
@ -1,12 +0,0 @@
|
||||
lib/psemupro/plugins/libspuPeopsOSS.so.%%MAJOR%%.0.%%MINOR%%
|
||||
libexec/psemupro/cfg/cfgPeopsOSS
|
||||
share/psemupro/cfg/spuPeopsOSS.cfg
|
||||
@dirrmtry lib/psemupro/plugins
|
||||
@dirrmtry lib/psemupro
|
||||
@dirrmtry libexec/psemupro/cfg
|
||||
@dirrmtry libexec/psemupro
|
||||
@dirrmtry share/psemupro/cfg
|
||||
@dirrmtry share/psemupro
|
||||
%%PORTDOCS%%%%DOCSDIR%%/readme_%%MAJOR%%_%%MINOR%%.txt
|
||||
%%PORTDOCS%%%%DOCSDIR%%/version_%%MAJOR%%_%%MINOR%%.txt
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
@ -233,7 +233,6 @@
|
||||
SUBDIR += libtommath
|
||||
SUBDIR += libtsnnls
|
||||
SUBDIR += linpack
|
||||
SUBDIR += linux-relview
|
||||
SUBDIR += lll_spect
|
||||
SUBDIR += lp_solve
|
||||
SUBDIR += lrng
|
||||
|
@ -1,34 +0,0 @@
|
||||
# Created by: Michael Ebert <ebert@informatik.unibw-muenchen.de>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= relview
|
||||
PORTVERSION= 7.0.2
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= math linux
|
||||
MASTER_SITES= ftp://ftp.informatik.uni-kiel.de/pub/kiel/relview/RELVIEW_7.0/LINUX/
|
||||
PKGNAMEPREFIX= linux-
|
||||
EXTRACT_SUFX= .gz
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= An interactive tool for manipulation of relations
|
||||
|
||||
ONLY_FOR_ARCHS= i386 amd64
|
||||
USE_LINUX= yes
|
||||
USE_LINUX_APPS= gtk xorglibs
|
||||
|
||||
NO_WRKSUBDIR= yes
|
||||
EXTRACT_CMD= ${GZIP_CMD}
|
||||
EXTRACT_BEFORE_ARGS= -dc
|
||||
EXTRACT_AFTER_ARGS= > ${DISTNAME}
|
||||
|
||||
NO_BUILD= yes
|
||||
|
||||
PLIST_SUB= VERSION=${PORTVERSION}
|
||||
|
||||
NO_STAGE= yes
|
||||
do-install:
|
||||
${BRANDELF} -t Linux ${WRKDIR}/${DISTNAME}
|
||||
${INSTALL_PROGRAM} ${WRKDIR}/${DISTNAME} ${PREFIX}/bin
|
||||
${LN} -fhs ${PREFIX}/bin/${DISTNAME} ${PREFIX}/bin/${PORTNAME}
|
||||
|
||||
.include <bsd.port.mk>
|
@ -1,2 +0,0 @@
|
||||
SHA256 (relview-7.0.2.gz) = 8a62a10fc732cc67d4f66425d4432f1b506c2a8077c7903c83ccc4bc0b256366
|
||||
SIZE (relview-7.0.2.gz) = 341742
|
@ -1,7 +0,0 @@
|
||||
The RelView-System is an interactive tool for computer-supported
|
||||
manipulation of relations represented as Boolean matrices or directed
|
||||
graphs, especially for prototyping relational specifications and
|
||||
programs. It is developed at the Department of Computer Science and
|
||||
Applied Mathematics of Christian-Albrechts-University of Kiel.
|
||||
|
||||
WWW: http://www.informatik.uni-kiel.de/~progsys/relview.shtml
|
@ -1,2 +0,0 @@
|
||||
bin/relview
|
||||
bin/relview-%%VERSION%%
|
Loading…
Reference in New Issue
Block a user