diff options
author | ijliao <ijliao@FreeBSD.org> | 2003-01-02 04:10:55 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2003-01-02 04:10:55 +0000 |
commit | a1b94d6eb97beb40f4522471fbc3b1937da375d4 (patch) | |
tree | 1746e6df91bb23c30f71c8d4655a3e0946bda2a3 /www/chimera | |
parent | 6bcc8ae28c4307dfae7f417ca5ac072bff55d755 (diff) | |
download | FreeBSD-ports-a1b94d6eb97beb40f4522471fbc3b1937da375d4.zip FreeBSD-ports-a1b94d6eb97beb40f4522471fbc3b1937da375d4.tar.gz |
- Fix MASTER_SITES
- Reduce compiler warnings
PR: 44982
Submitted by: Ports Fury
Diffstat (limited to 'www/chimera')
-rw-r--r-- | www/chimera/Makefile | 2 | ||||
-rw-r--r-- | www/chimera/files/patch-cache.c | 11 | ||||
-rw-r--r-- | www/chimera/files/patch-local.c | 11 |
3 files changed, 23 insertions, 1 deletions
diff --git a/www/chimera/Makefile b/www/chimera/Makefile index 9a98faf..9f360bf0 100644 --- a/www/chimera/Makefile +++ b/www/chimera/Makefile @@ -9,7 +9,7 @@ PORTNAME= chimera PORTVERSION= 1.70p0 PORTREVISION= 1 CATEGORIES= www -MASTER_SITES= ftp://ftp.cs.unlv.edu/pub/chimera/ +MASTER_SITES= http://www.rocklinux.org/people/ripclaw/projects/software/chimera/devel/ MAINTAINER= ports@FreeBSD.org diff --git a/www/chimera/files/patch-cache.c b/www/chimera/files/patch-cache.c new file mode 100644 index 0000000..84a22a8 --- /dev/null +++ b/www/chimera/files/patch-cache.c @@ -0,0 +1,11 @@ +--- src/cache.c.orig Fri Apr 18 20:18:36 1997 ++++ src/cache.c Sat Nov 2 14:50:53 2002 +@@ -28,7 +28,7 @@ + #include <sys/param.h> + #include <fcntl.h> + +-#if defined(SYSV) || defined(SVR4)|| defined(__arm) ++#if defined(SYSV) || defined(SVR4)|| defined(__arm) || defined(__FreeBSD__) + #include <dirent.h> + #define DIRSTUFF struct dirent + #else diff --git a/www/chimera/files/patch-local.c b/www/chimera/files/patch-local.c new file mode 100644 index 0000000..89dc2e3 --- /dev/null +++ b/www/chimera/files/patch-local.c @@ -0,0 +1,11 @@ +--- src/local.c.orig Tue May 6 07:50:38 1997 ++++ src/local.c Sat Nov 2 14:52:00 2002 +@@ -26,7 +26,7 @@ + #include <sys/types.h> + #include <sys/stat.h> + +-#if defined(SYSV) || defined(SVR4) || defined(__arm) ++#if defined(SYSV) || defined(SVR4) || defined(__arm) || defined(__FreeBSD__) + #include <dirent.h> + #define DIRSTUFF struct dirent + #else |