aboutsummaryrefslogtreecommitdiff
path: root/audio/rio
diff options
context:
space:
mode:
authorLuigi Rizzo <luigi@FreeBSD.org>2002-03-16 00:14:33 +0000
committerLuigi Rizzo <luigi@FreeBSD.org>2002-03-16 00:14:33 +0000
commite67082c126d2e21388d8ae4366461db667dd371d (patch)
tree83c06e71855f83dbdf2d6402660de8740490f39e /audio/rio
parenta2e5aad0fa585f0f62c36940362b7aa7fd409d0e (diff)
downloadports-e67082c126d2e21388d8ae4366461db667dd371d.tar.gz
ports-e67082c126d2e21388d8ae4366461db667dd371d.zip
Update to version 1.07, which also operates on external flash memory.
patch-aa is not necessary anymore.
Notes
Notes: svn path=/head/; revision=56179
Diffstat (limited to 'audio/rio')
-rw-r--r--audio/rio/Makefile6
-rw-r--r--audio/rio/distinfo2
-rw-r--r--audio/rio/files/patch-aa35
3 files changed, 4 insertions, 39 deletions
diff --git a/audio/rio/Makefile b/audio/rio/Makefile
index e32227ddf8a3..0b3838dc4598 100644
--- a/audio/rio/Makefile
+++ b/audio/rio/Makefile
@@ -6,15 +6,15 @@
#
PORTNAME= rio
-PORTVERSION= 1.06
+PORTVERSION= 1.07
CATEGORIES= audio
MASTER_SITES= http://www.world.co.uk/sba/
-DISTNAME= rio006
+DISTNAME= rio007
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.Org
-WRKSRC= ${WRKDIR}/rio
+WRKSRC= ${WRKDIR}/rio107
MAKEFILE= makefile
BINOWN= root
diff --git a/audio/rio/distinfo b/audio/rio/distinfo
index c542a90a4a81..536cdbb1c7ba 100644
--- a/audio/rio/distinfo
+++ b/audio/rio/distinfo
@@ -1 +1 @@
-MD5 (rio006.tgz) = 4c2e056b5bf423d0cd82b6f868f7b435
+MD5 (rio007.tgz) = 81be1f37f98a23a013d02495b8b23ca9
diff --git a/audio/rio/files/patch-aa b/audio/rio/files/patch-aa
deleted file mode 100644
index 48f9f07f7d3e..000000000000
--- a/audio/rio/files/patch-aa
+++ /dev/null
@@ -1,35 +0,0 @@
-*** app.cpp.orig Mon Mar 15 06:53:16 1999
---- app.cpp Sat Sep 18 15:13:44 1999
-***************
-*** 30,35 ****
---- 30,42 ----
- #define SIZE_MAXPATH _MAX_PATH
- #define DELETEARRAY delete[]
-
-+ #elif defined(__FreeBSD__)
-+ // FreeBSD g++
-+ // (anybody know if this stuff applies more generally to other BSDs?)
-+ #include <unistd.h>
-+ #include <sys/syslimits.h>
-+ #define SIZE_MAXPATH PATH_MAX
-+
- #elif defined(__linux__)
- // linux g++
- #include <unistd.h>
-***************
-*** 81,87 ****
- {
- static char szBuf[ 64 ];
- struct tm* psDateTime;
-! psDateTime = localtime( &lValue );
-
- if ( !psDateTime )
- strcpy( szBuf, "INVALID DATE/TIME" );
---- 88,94 ----
- {
- static char szBuf[ 64 ];
- struct tm* psDateTime;
-! psDateTime = localtime( (time_t *)&lValue );
-
- if ( !psDateTime )
- strcpy( szBuf, "INVALID DATE/TIME" );