Update to 0.6.3

This commit is contained in:
Kevin Lo 2003-04-11 08:54:28 +00:00
parent a370fbc877
commit ca6a95e19d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=78729
5 changed files with 6 additions and 28 deletions

View file

@ -6,7 +6,7 @@
# #
PORTNAME= clo++ PORTNAME= clo++
PORTVERSION= 0.6.2 PORTVERSION= 0.6.3
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= http://pmade.org/~pjones/software/clo++/download/ MASTER_SITES= http://pmade.org/~pjones/software/clo++/download/
@ -28,8 +28,8 @@ pre-configure:
post-install: post-install:
@${STRIP_CMD} ${PREFIX}/bin/clo++ @${STRIP_CMD} ${PREFIX}/bin/clo++
.if !defined(NOPORTDOCS) .if !defined(NOPORTDOCS)
@${MKDIR} ${PREFIX}/share/doc/clo++ @${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/docs/manual.txt ${PREFIX}/share/doc/clo++ @${INSTALL_DATA} ${WRKSRC}/docs/manual.txt ${DOCSDIR}
.endif .endif
.include <bsd.port.mk> .include <bsd.port.mk>

View file

@ -1 +1 @@
MD5 (clo++-0.6.2.tar.gz) = 5ad028b7489f7acdb6a820df7f4e14bd MD5 (clo++-0.6.3.tar.gz) = 095199984cc91fd5880aff4b2a36103f

View file

@ -1,11 +0,0 @@
--- src/contrib/libtpt-1.10.5/src/lib/parse_funcs.cxx.orig Tue Apr 8 13:07:51 2003
+++ src/contrib/libtpt-1.10.5/src/lib/parse_funcs.cxx Tue Apr 8 13:08:21 2003
@@ -71,7 +71,7 @@
kiss_seed = (kiss_seed << 16) ^ kiss_seed ^ (getpid()<<1);
// and end by mixing in the address of *this.
// is this cast okay?
- kiss_seed^= reinterpret_cast<unsigned int>(this);
+ //kiss_seed^= reinterpret_cast<unsigned int>(this);
kiss_x = kiss_seed | 1;
kiss_y = kiss_seed | 2;
kiss_z = kiss_seed | 4;

View file

@ -1,11 +0,0 @@
--- src/contrib/xmlwrapp-0.2.2/configure.pl.orig Tue Jan 28 18:41:25 2003
+++ src/contrib/xmlwrapp-0.2.2/configure.pl Tue Jan 28 18:41:43 2003
@@ -191,7 +191,7 @@
print "$output ";
if ($output =~ /^(\d+\.\d+)\.(\d+)$/) {
- if ($1 >= 2.4 && $2 >= 7) {
+ if ($1 > 2.4 || ($1 == 2.4 && $2 >= 7)) {
print "[good]\n";
} else {
print "[fail]\n";

View file

@ -1,3 +1,3 @@
bin/clo++ bin/clo++
share/doc/clo++/manual.txt %%PORTDOCS%%share/doc/clo++/manual.txt
@dirrm share/doc/clo++ %%PORTDOCS%%@dirrm share/doc/clo++