diff options
author | mezz <mezz@FreeBSD.org> | 2006-11-04 09:34:24 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2006-11-04 09:34:24 +0800 |
commit | 4f42cde1010e1624f824decdedd729924a61911a (patch) | |
tree | 8e9e5907b8f29ded2bae9e27b036ea228bc85baf /net-p2p/linuxdcpp | |
parent | bbdde9636c4d88f66c2191cec5bc37d718f79bcb (diff) | |
download | freebsd-ports-gnome-4f42cde1010e1624f824decdedd729924a61911a.tar.gz freebsd-ports-gnome-4f42cde1010e1624f824decdedd729924a61911a.tar.zst freebsd-ports-gnome-4f42cde1010e1624f824decdedd729924a61911a.zip |
Update it to the lastest version of CVS, at 2006-11-01 in changelog. See in
the changelog for details:
http://tinyurl.com/b3myl
Diffstat (limited to 'net-p2p/linuxdcpp')
-rw-r--r-- | net-p2p/linuxdcpp/Makefile | 2 | ||||
-rw-r--r-- | net-p2p/linuxdcpp/distinfo | 6 | ||||
-rw-r--r-- | net-p2p/linuxdcpp/files/patch-SConstruct | 18 |
3 files changed, 15 insertions, 11 deletions
diff --git a/net-p2p/linuxdcpp/Makefile b/net-p2p/linuxdcpp/Makefile index 8377fbb8cd19..81749cba1c81 100644 --- a/net-p2p/linuxdcpp/Makefile +++ b/net-p2p/linuxdcpp/Makefile @@ -6,7 +6,7 @@ # PORTNAME= linuxdcpp -PORTVERSION= 0.0.1.20061007 #0.0.1.YYYYMMDD +PORTVERSION= 0.0.1.20061103 #0.0.1.YYYYMMDD CATEGORIES= net-p2p MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR=mezz diff --git a/net-p2p/linuxdcpp/distinfo b/net-p2p/linuxdcpp/distinfo index 952aed9f299f..d82a35097c44 100644 --- a/net-p2p/linuxdcpp/distinfo +++ b/net-p2p/linuxdcpp/distinfo @@ -1,3 +1,3 @@ -MD5 (linuxdcpp-0.0.1.20061007.tar.bz2) = e497f6b88b7b24aa1bb5fc79ed2e5031 -SHA256 (linuxdcpp-0.0.1.20061007.tar.bz2) = 219935c8453afc6f31ea2fd275d2353f3cbdab0bea42e9e573826cb75ee28c6e -SIZE (linuxdcpp-0.0.1.20061007.tar.bz2) = 347933 +MD5 (linuxdcpp-0.0.1.20061103.tar.bz2) = 374117be873adbacc0712400ee53758f +SHA256 (linuxdcpp-0.0.1.20061103.tar.bz2) = fc15d02bc0dd853e055213553a4c75c053cb291866efc84af9394c034fd506aa +SIZE (linuxdcpp-0.0.1.20061103.tar.bz2) = 348654 diff --git a/net-p2p/linuxdcpp/files/patch-SConstruct b/net-p2p/linuxdcpp/files/patch-SConstruct index 81cdd6653aef..f784bb34d622 100644 --- a/net-p2p/linuxdcpp/files/patch-SConstruct +++ b/net-p2p/linuxdcpp/files/patch-SConstruct @@ -1,5 +1,5 @@ ---- SConstruct.orig Fri Sep 1 16:52:46 2006 -+++ SConstruct Fri Sep 1 16:55:38 2006 +--- SConstruct.orig Fri Nov 3 14:00:07 2006 ++++ SConstruct Fri Nov 3 14:02:32 2006 @@ -23,21 +23,6 @@ context.Result(ret) return ret @@ -49,10 +49,14 @@ env.SConsignFile('build/sconf/.sconsign') opts.Save('build/sconf/scache.conf', env) Help(opts.GenerateHelpText(env)) -@@ -89,19 +67,6 @@ +@@ -89,23 +67,6 @@ # Dependencies # ---------------------------------------------------------------------- +-if not env['CXX']: +- print 'CXX env variable is not set, attempting to use g++' +- env['CXX'] = 'g++' +- -if not conf.CheckCXXVersion(env['CXX'], 3, 4): - print 'Compiler version check failed. g++ 3.4 or later is needed' - Exit(1) @@ -69,7 +73,7 @@ if not conf.CheckPKGConfig(): print 'pkg-config not found.' Exit(1) -@@ -133,11 +98,6 @@ +@@ -137,11 +98,6 @@ print 'Can\'t live without it, sorry' Exit(1) @@ -81,13 +85,13 @@ if not conf.CheckLibWithHeader('z', 'zlib.h', 'c'): print 'Did not find the z library (gzip/z compression)' print 'Can\'t live without it, exiting' -@@ -160,11 +120,11 @@ - env.Append(CXXFLAGS = Split('-I. -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64')) +@@ -165,11 +121,11 @@ + env.Append(LINKFLAGS = ['-Wl,--as-needed']) if env['debug']: - env.Append(CXXFLAGS = Split('-g -ggdb -D_DEBUG -Wall')) + env.Append(CXXFLAGS = Split('%%CXXFLAGS%% -g -ggdb -D_DEBUG -Wall')) - env.Append(LDFLAGS = Split('-g -ggdb')) + env.Append(LINKFLAGS = Split('-g -ggdb -Wall')) if env['release']: - env.Append(CXXFLAGS = '-O3') |