git: 688c1e1886f9 - main - audio/splay: Remove expired port:
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 31 Mar 2023 00:01:30 UTC
The branch main has been updated by bofh: URL: https://cgit.FreeBSD.org/ports/commit/?id=688c1e1886f9627e1e315c25cbe737581aa734ee commit 688c1e1886f9627e1e315c25cbe737581aa734ee Author: Muhammad Moinur Rahman <bofh@FreeBSD.org> AuthorDate: 2023-03-25 13:34:33 +0000 Commit: Muhammad Moinur Rahman <bofh@FreeBSD.org> CommitDate: 2023-03-30 23:59:33 +0000 audio/splay: Remove expired port: 2023-03-31 audio/splay: Abandonware, no development in 20 years and uses obsolete decoding library --- MOVED | 1 + audio/Makefile | 1 - audio/splay/Makefile | 27 --------------------------- audio/splay/distinfo | 2 -- audio/splay/files/patch-apps_Makefile.in | 11 ----------- audio/splay/files/patch-apps_splay.cc | 20 -------------------- audio/splay/files/patch-apps_xsplay.cc | 11 ----------- audio/splay/files/patch-configure | 21 --------------------- audio/splay/files/patch-libs_fileplayer.cc | 12 ------------ audio/splay/files/patch-libs_huffmantable.cc | 25 ------------------------- audio/splay/files/patch-libs_mpegtoraw.cc | 11 ----------- audio/splay/pkg-descr | 3 --- 12 files changed, 1 insertion(+), 144 deletions(-) diff --git a/MOVED b/MOVED index 50f5ad6862ec..5e709b7a546b 100644 --- a/MOVED +++ b/MOVED @@ -17840,3 +17840,4 @@ audio/libworkman||2023-03-31|Has expired: Abandonware, no development in 20+ yea audio/mp3c||2023-03-31|Has expired: Abandonware, last release in 2009. Please consider using audio/cyanrip or audio/abcde audio/soundkonverter||2023-03-31|Has expired: Unsupported upstream, consider using audio/cyanrip or audio/abcde (ripping CDs), audio/rsgain (ReplayGain scanning) and multimedia/ffmpeg (transcoding) audio/splaytk||2023-03-31|Has expired: Abandonware, no development in 20 years and uses obsolete decoding library +audio/splay||2023-03-31|Has expired: Abandonware, no development in 20 years and uses obsolete decoding library diff --git a/audio/Makefile b/audio/Makefile index de7306639a7d..0e11432c5fb7 100644 --- a/audio/Makefile +++ b/audio/Makefile @@ -765,7 +765,6 @@ SUBDIR += spiralloops SUBDIR += spiralsynth SUBDIR += spiralsynthmodular - SUBDIR += splay SUBDIR += spotify-player SUBDIR += spotify-qt SUBDIR += spotify-tui diff --git a/audio/splay/Makefile b/audio/splay/Makefile deleted file mode 100644 index 71d2d9a7bdaf..000000000000 --- a/audio/splay/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -PORTNAME= splay -PORTVERSION= 0.9.5.2 -PORTREVISION= 1 -CATEGORIES= audio -MASTER_SITES= http://splay.sourceforge.net/tgz/ - -MAINTAINER= ports@FreeBSD.org -COMMENT= Audio player that decodes MPEG Layer 1/2/3 and WAV files -WWW= http://splay.sourceforge.net/ - -LICENSE= GPLv2+ LGPL20+ -LICENSE_COMB= multi -LICENSE_FILE_GPLv2+ = ${WRKSRC}/COPYING -LICENSE_FILE_LGPL20+ = ${WRKSRC}/COPYING.LIB - -DEPRECATED= Abandonware, no development in 20 years and uses obsolete decoding library -EXPIRATION_DATE=2023-03-31 - -GNU_CONFIGURE= yes - -CONFLICTS_INSTALL= mp3blaster # bin/splay - -PLIST_FILES= bin/splay man/man1/splay.1.gz - -# XXX: pthread library can be used, but sound quality is buggy(?) - -.include <bsd.port.mk> diff --git a/audio/splay/distinfo b/audio/splay/distinfo deleted file mode 100644 index e5649d0aaa49..000000000000 --- a/audio/splay/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (splay-0.9.5.2.tar.gz) = 38266b7620e8dde9ca39ace245ded4d9fadc3ea9e35772190fcfe90efe8d39bd -SIZE (splay-0.9.5.2.tar.gz) = 105510 diff --git a/audio/splay/files/patch-apps_Makefile.in b/audio/splay/files/patch-apps_Makefile.in deleted file mode 100644 index bec8427c93a7..000000000000 --- a/audio/splay/files/patch-apps_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- apps/Makefile.in.orig 2001-05-06 22:00:36 UTC -+++ apps/Makefile.in -@@ -81,7 +81,7 @@ LDADD = ../libs/libmpeg.a - INCLUDES = -I../libs -I/usr/include/qt - xsplay_LDADD = -lqt $(LDADD) - --man_MANS = splay.1 xsplay.1 -+man_MANS = splay.1 - EXTRA_DIST = $(man_MANS) - - LIBS = @LIBS@ diff --git a/audio/splay/files/patch-apps_splay.cc b/audio/splay/files/patch-apps_splay.cc deleted file mode 100644 index 71b23805c5a0..000000000000 --- a/audio/splay/files/patch-apps_splay.cc +++ /dev/null @@ -1,20 +0,0 @@ ---- apps/splay.cc.orig 2001-03-19 08:51:27 UTC -+++ apps/splay.cc -@@ -16,14 +16,15 @@ - - #include <sys/types.h> - #include <sys/wait.h> --#include <iostream.h> -+#include <iostream> -+using namespace std; - - #ifdef HAVE_LIBID3 - #include <id3/tag.h> - #include <id3/misc_support.h> - #endif /* HAVE_LIBID3 */ - --#include <iomanip.h> -+#include <iomanip> - - #include "mpegsound.h" - diff --git a/audio/splay/files/patch-apps_xsplay.cc b/audio/splay/files/patch-apps_xsplay.cc deleted file mode 100644 index aed3a8cef414..000000000000 --- a/audio/splay/files/patch-apps_xsplay.cc +++ /dev/null @@ -1,11 +0,0 @@ ---- apps/xsplay.cc.orig 2001-02-20 19:04:07 UTC -+++ apps/xsplay.cc -@@ -29,7 +29,7 @@ - #include <fcntl.h> - #include <string.h> - #include <unistd.h> --#include <iostream.h> -+#include <iostream> - #include <iomanip.h> - - #include "mpegsound.h" diff --git a/audio/splay/files/patch-configure b/audio/splay/files/patch-configure deleted file mode 100644 index 7401aae284fd..000000000000 --- a/audio/splay/files/patch-configure +++ /dev/null @@ -1,21 +0,0 @@ ---- configure.orig 2001-05-06 21:56:47 UTC -+++ configure -@@ -1967,12 +1967,12 @@ rm -f conftest* - - fi - echo "$ac_t""$ac_cv_type_pid_t" 1>&6 --if test $ac_cv_type_pid_t = no; then -- cat >> confdefs.h <<\EOF --#define pid_t int --EOF -- --fi -+#if test $ac_cv_type_pid_t = no; then -+# cat >> confdefs.h <<\EOF -+##define pid_t int -+#EOF -+# -+#fi - - - if test $ac_cv_prog_gcc = yes; then diff --git a/audio/splay/files/patch-libs_fileplayer.cc b/audio/splay/files/patch-libs_fileplayer.cc deleted file mode 100644 index f227a853c611..000000000000 --- a/audio/splay/files/patch-libs_fileplayer.cc +++ /dev/null @@ -1,12 +0,0 @@ ---- libs/fileplayer.cc.orig 2001-03-17 18:57:12 UTC -+++ libs/fileplayer.cc -@@ -10,7 +10,8 @@ - #endif - - #include <string.h> --#include <iostream.h> -+#include <iostream> -+using namespace std; - #include <sys/types.h> - #include <sys/stat.h> - #include <fcntl.h> diff --git a/audio/splay/files/patch-libs_huffmantable.cc b/audio/splay/files/patch-libs_huffmantable.cc deleted file mode 100644 index 97aa9bbb1c9a..000000000000 --- a/audio/splay/files/patch-libs_huffmantable.cc +++ /dev/null @@ -1,25 +0,0 @@ ---- libs/huffmantable.cc.orig 2001-02-15 13:43:40 UTC -+++ libs/huffmantable.cc -@@ -550,11 +550,11 @@ htd33[ 31][2]={{ 16, 1},{ 8, 1},{ 4, 1},{ 2, 1} - - const HUFFMANCODETABLE Mpegtoraw::ht[HTN]= - { -- { 0, 0-1, 0-1, 0, 0, htd33}, -+ { 0,0u-1,0u-1, 0, 0, htd33}, - { 1, 2-1, 2-1, 0, 7,htd01}, - { 2, 3-1, 3-1, 0, 17,htd02}, - { 3, 3-1, 3-1, 0, 17,htd03}, -- { 4, 0-1, 0-1, 0, 0, htd33}, -+ { 4,0u-1,0u-1, 0, 0, htd33}, - { 5, 4-1, 4-1, 0, 31,htd05}, - { 6, 4-1, 4-1, 0, 31,htd06}, - { 7, 6-1, 6-1, 0, 71,htd07}, -@@ -564,7 +564,7 @@ const HUFFMANCODETABLE Mpegtoraw::ht[HTN]= - {11, 8-1, 8-1, 0,127,htd11}, - {12, 8-1, 8-1, 0,127,htd12}, - {13,16-1,16-1, 0,511,htd13}, -- {14, 0-1, 0-1, 0, 0, htd33}, -+ {14,0u-1,0u-1, 0, 0,htd33}, - {15,16-1,16-1, 0,511,htd15}, - {16,16-1,16-1, 1,511,htd16}, - {17,16-1,16-1, 2,511,htd16}, diff --git a/audio/splay/files/patch-libs_mpegtoraw.cc b/audio/splay/files/patch-libs_mpegtoraw.cc deleted file mode 100644 index 2370f9c85897..000000000000 --- a/audio/splay/files/patch-libs_mpegtoraw.cc +++ /dev/null @@ -1,11 +0,0 @@ ---- libs/mpegtoraw.cc.orig 2001-02-15 13:43:40 UTC -+++ libs/mpegtoraw.cc -@@ -552,7 +552,7 @@ int Mpegtoraw::getframesaved(void) - #endif - - --#include <iostream.h> -+#include <iostream> - // Convert mpeg to raw - bool Mpegtoraw::run(int frames) - { diff --git a/audio/splay/pkg-descr b/audio/splay/pkg-descr deleted file mode 100644 index d9667f4f5828..000000000000 --- a/audio/splay/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Splay program uses the MPEG/wave sound library to play sound files in -several formats, notably the MPEG audio and Wave format. This early -version has only limited functionally and a simplistic user interface.