diff options
author | Jeremy Messenger <mezz@FreeBSD.org> | 2006-11-23 06:20:11 +0000 |
---|---|---|
committer | Jeremy Messenger <mezz@FreeBSD.org> | 2006-11-23 06:20:11 +0000 |
commit | 8f2185f9464c5ef61d3e218b10a1aa38fafb5833 (patch) | |
tree | 08f549f18d78195f9a08d75cceda49049da66cdd /net-p2p/linuxdcpp | |
parent | bcef16bf330df1b5ef232b62b5b9401c400ecfce (diff) |
Update it to the lastest version of CVS, at 2006-11-22 in changelog. See in
the changelog for details:
http://tinyurl.com/b3myl
Notes
Notes:
svn path=/head/; revision=177864
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 | 12 |
3 files changed, 10 insertions, 10 deletions
diff --git a/net-p2p/linuxdcpp/Makefile b/net-p2p/linuxdcpp/Makefile index 81749cba1c81..b683b4a4c1e2 100644 --- a/net-p2p/linuxdcpp/Makefile +++ b/net-p2p/linuxdcpp/Makefile @@ -6,7 +6,7 @@ # PORTNAME= linuxdcpp -PORTVERSION= 0.0.1.20061103 #0.0.1.YYYYMMDD +PORTVERSION= 0.0.1.20061122 #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 d82a35097c44..7852441b2ac1 100644 --- a/net-p2p/linuxdcpp/distinfo +++ b/net-p2p/linuxdcpp/distinfo @@ -1,3 +1,3 @@ -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 +MD5 (linuxdcpp-0.0.1.20061122.tar.bz2) = b6f6d5252a434370737641caf8c6130c +SHA256 (linuxdcpp-0.0.1.20061122.tar.bz2) = 27d4956a9647632eba46acffa0235e020bf07a27cc7180b35bb1828d0a4d2580 +SIZE (linuxdcpp-0.0.1.20061122.tar.bz2) = 349056 diff --git a/net-p2p/linuxdcpp/files/patch-SConstruct b/net-p2p/linuxdcpp/files/patch-SConstruct index f784bb34d622..6123300d4d4e 100644 --- a/net-p2p/linuxdcpp/files/patch-SConstruct +++ b/net-p2p/linuxdcpp/files/patch-SConstruct @@ -1,5 +1,5 @@ ---- SConstruct.orig Fri Nov 3 14:00:07 2006 -+++ SConstruct Fri Nov 3 14:02:32 2006 +--- SConstruct.orig Wed Nov 22 22:20:48 2006 ++++ SConstruct Wed Nov 22 22:22:59 2006 @@ -23,21 +23,6 @@ context.Result(ret) return ret @@ -53,7 +53,7 @@ # Dependencies # ---------------------------------------------------------------------- --if not env['CXX']: +-if not (env.has_key('CXX') and env['CXX']): - print 'CXX env variable is not set, attempting to use g++' - env['CXX'] = 'g++' - @@ -88,14 +88,14 @@ @@ -165,11 +121,11 @@ env.Append(LINKFLAGS = ['-Wl,--as-needed']) - if env['debug']: + if env.has_key('debug') and env['debug']: - env.Append(CXXFLAGS = Split('-g -ggdb -D_DEBUG -Wall')) + env.Append(CXXFLAGS = Split('%%CXXFLAGS%% -g -ggdb -D_DEBUG -Wall')) env.Append(LINKFLAGS = Split('-g -ggdb -Wall')) - if env['release']: + if env.has_key('release') and env['release']: - env.Append(CXXFLAGS = '-O3') + env.Append(CXXFLAGS = '%%CXXFLAGS%%') - if env['profile']: + if env.has_key('profile') and env['profile']: env.Append(CXXFLAGS = '-pg') |