aboutsummaryrefslogtreecommitdiffstats
path: root/devel/cvstrac
diff options
context:
space:
mode:
authorbms <bms@FreeBSD.org>2005-01-13 00:21:50 +0800
committerbms <bms@FreeBSD.org>2005-01-13 00:21:50 +0800
commit7d0268615e59f7435fa5b2bcee36a5bdc60ed213 (patch)
treea1b212da5aa0c845812f5eb4947909a59f55f0ae /devel/cvstrac
parent78b83b94747e50cd9b7cdbea6952c89282ae7903 (diff)
downloadfreebsd-ports-gnome-7d0268615e59f7435fa5b2bcee36a5bdc60ed213.tar.gz
freebsd-ports-gnome-7d0268615e59f7435fa5b2bcee36a5bdc60ed213.tar.zst
freebsd-ports-gnome-7d0268615e59f7435fa5b2bcee36a5bdc60ed213.zip
Update to version 1.1.5.
Diffstat (limited to 'devel/cvstrac')
-rw-r--r--devel/cvstrac/Makefile7
-rw-r--r--devel/cvstrac/files/patch-Makefile2
-rw-r--r--devel/cvstrac/files/patch-db.c15
-rw-r--r--devel/cvstrac/files/patch-history.c11
-rw-r--r--devel/cvstrac/pkg-message5
5 files changed, 8 insertions, 32 deletions
diff --git a/devel/cvstrac/Makefile b/devel/cvstrac/Makefile
index d08d685525f3..ed4fbca0a6bb 100644
--- a/devel/cvstrac/Makefile
+++ b/devel/cvstrac/Makefile
@@ -6,11 +6,12 @@
#
PORTNAME= cvstrac
-PORTVERSION= 1.1.2
-PORTREVISION= 3
+PORTVERSION= 1.1.5
CATEGORIES= devel
-MASTER_SITES= ftp://ftp.cvstrac.org/cvstrac/
+MASTER_SITES= http://www.cvstrac.org/
+DISTNAME= ${PORTNAME}-src-${PORTVERSION}
+WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
MAINTAINER= bms@FreeBSD.org
COMMENT= Web-Based Bug And Patch-Set Tracking System For CVS
diff --git a/devel/cvstrac/files/patch-Makefile b/devel/cvstrac/files/patch-Makefile
index 1defb9884fc9..dca892801dce 100644
--- a/devel/cvstrac/files/patch-Makefile
+++ b/devel/cvstrac/files/patch-Makefile
@@ -21,7 +21,7 @@
+# will run on the target platform. This is usually the same
+# as BCC, unless you are cross-compiling.
+#
-+TCC = gcc -g -O0 -Wall -I$(LOCALBASE)/include
++TCC = gcc -g -O0 -Wall -I$(LOCALBASE)/include -lm
+
+#### Extra arguments for linking against SQLite
+#
diff --git a/devel/cvstrac/files/patch-db.c b/devel/cvstrac/files/patch-db.c
deleted file mode 100644
index 851bf2d741e9..000000000000
--- a/devel/cvstrac/files/patch-db.c
+++ /dev/null
@@ -1,15 +0,0 @@
---- db.c.orig Fri Nov 14 14:41:27 2003
-+++ db.c Fri Nov 14 14:41:35 2003
-@@ -32,12 +32,6 @@
- #include "db.h"
-
- /*
--** This function is not an official part of the SQLite API and does
--** not appear in <sqlite.h>. So we have to supply our own prototype.
--*/
--extern char *sqlite_vmprintf(const char *, ...);
--
--/*
- ** The following is the handle to the open database.
- */
- static sqlite *pDb = 0;
diff --git a/devel/cvstrac/files/patch-history.c b/devel/cvstrac/files/patch-history.c
deleted file mode 100644
index 73cc6bc41c27..000000000000
--- a/devel/cvstrac/files/patch-history.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- history.c 5 Apr 2003 16:04:21 -0000 1.28
-+++ history.c 28 Mar 2004 21:01:11 -0000
-@@ -155,7 +155,7 @@
- p->tm_year += p->tm_mon/12;
- p->tm_mon %= 12;
- }
-- isLeapYr = p->tm_year/4==0 && (p->tm_year/100!=0 || (p->tm_year+300)/400==0);
-+ isLeapYr = p->tm_year%4==0 && (p->tm_year%100!=0 || p->tm_year%400==0);
- p->tm_yday = priorDays[p->tm_mon] + p->tm_mday - 1;
- if( isLeapYr && p->tm_mon>1 ) p->tm_yday++;
- nDay = (p->tm_year-70)*365 + (p->tm_year-69)/4 -p->tm_year/100 +
diff --git a/devel/cvstrac/pkg-message b/devel/cvstrac/pkg-message
index 6b4c0830d027..0ba7d37b7be4 100644
--- a/devel/cvstrac/pkg-message
+++ b/devel/cvstrac/pkg-message
@@ -1,4 +1,5 @@
This port will install the cvstrac binary in ${PREFIX}/bin. Please follow
the detailed installation instructions in the CVSTrac Wiki at
-http://cvs.cvstrac.org/wiki?p=CvstracInstallation for information on how
-to get CVSTrac up and running in your preferred configuration.
+http://www.cvstrac.org/cvstrac/wiki?p=CvstracInstallation for
+information on how to get CVSTrac up and running in your preferred
+configuration.