diff options
author | luigi <luigi@FreeBSD.org> | 2002-03-16 08:14:33 +0800 |
---|---|---|
committer | luigi <luigi@FreeBSD.org> | 2002-03-16 08:14:33 +0800 |
commit | 79c1d145e2cb37edfa98c8e2fa36380905e6f4b4 (patch) | |
tree | 97aae80b1c2c023c3199995e47543004d34d3083 /audio | |
parent | f8da71cb7830d7e94dd36eff9f007099b21cc592 (diff) | |
download | freebsd-ports-gnome-79c1d145e2cb37edfa98c8e2fa36380905e6f4b4.tar.gz freebsd-ports-gnome-79c1d145e2cb37edfa98c8e2fa36380905e6f4b4.tar.zst freebsd-ports-gnome-79c1d145e2cb37edfa98c8e2fa36380905e6f4b4.zip |
Update to version 1.07, which also operates on external flash memory.
patch-aa is not necessary anymore.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/rio/Makefile | 6 | ||||
-rw-r--r-- | audio/rio/distinfo | 2 | ||||
-rw-r--r-- | audio/rio/files/patch-aa | 35 |
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" ); |