summaryrefslogtreecommitdiff
path: root/net-p2p
diff options
context:
space:
mode:
authorJeremy Messenger <mezz@FreeBSD.org>2007-03-25 03:28:37 +0000
committerJeremy Messenger <mezz@FreeBSD.org>2007-03-25 03:28:37 +0000
commit23d76ca6e9041c313d0acd8f2f33a87e5de09c9f (patch)
tree17d13b3b3211184453d9cd2d2fe94dd069a060d6 /net-p2p
parentUpdate to OOF680_m14. This is 2.2RC4. (diff)
Update it to the lastest version of CVS, at 2007-03-24 in changelog. See in
the changelog for details: http://tinyurl.com/b3myl
Notes
Notes: svn path=/head/; revision=188219
Diffstat (limited to 'net-p2p')
-rw-r--r--net-p2p/linuxdcpp/Makefile3
-rw-r--r--net-p2p/linuxdcpp/distinfo6
-rw-r--r--net-p2p/linuxdcpp/files/patch-SConstruct19
3 files changed, 18 insertions, 10 deletions
diff --git a/net-p2p/linuxdcpp/Makefile b/net-p2p/linuxdcpp/Makefile
index f564a4f83c1f..35cc9757a73f 100644
--- a/net-p2p/linuxdcpp/Makefile
+++ b/net-p2p/linuxdcpp/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= linuxdcpp
-PORTVERSION= 0.0.1.20070206 #0.0.1.YYYYMMDD
+PORTVERSION= 0.0.1.20070324 #0.0.1.YYYYMMDD
CATEGORIES= net-p2p
MASTER_SITES= ${MASTER_SITE_LOCAL} \
http://people.freebsd.org/~mezz/distfiles/
@@ -22,7 +22,6 @@ USE_ICONV= yes
USE_SCONS= yes
USE_OPENSSL= yes
-CXXFLAGS+= -I. -I${LOCALBASE}/include
SCONS_BUILDENV= ${SCONS_ENV}
.if defined(WITH_DEBUG)
diff --git a/net-p2p/linuxdcpp/distinfo b/net-p2p/linuxdcpp/distinfo
index aef6f0b47bb2..f9a14f6653b0 100644
--- a/net-p2p/linuxdcpp/distinfo
+++ b/net-p2p/linuxdcpp/distinfo
@@ -1,3 +1,3 @@
-MD5 (linuxdcpp-0.0.1.20070206.tar.bz2) = 06afb337878fee4a26559b4c28a0e844
-SHA256 (linuxdcpp-0.0.1.20070206.tar.bz2) = 48b281c54c5d5edd8cc1f10d8ce5ace68492741762a72139f91022bb95231822
-SIZE (linuxdcpp-0.0.1.20070206.tar.bz2) = 349293
+MD5 (linuxdcpp-0.0.1.20070324.tar.bz2) = a0863ca477e247dfaf305d23d3133a56
+SHA256 (linuxdcpp-0.0.1.20070324.tar.bz2) = 646704ac7cd668505766195eea17765ad979ddba931e3f0074c42c7214459050
+SIZE (linuxdcpp-0.0.1.20070324.tar.bz2) = 349574
diff --git a/net-p2p/linuxdcpp/files/patch-SConstruct b/net-p2p/linuxdcpp/files/patch-SConstruct
index de14e2e24f5f..8f37c538f235 100644
--- a/net-p2p/linuxdcpp/files/patch-SConstruct
+++ b/net-p2p/linuxdcpp/files/patch-SConstruct
@@ -1,6 +1,6 @@
---- SConstruct.orig Tue Feb 6 21:27:05 2007
-+++ SConstruct Tue Feb 6 22:31:03 2007
-@@ -91,9 +91,15 @@
+--- SConstruct.orig Sat Mar 24 13:33:17 2007
++++ SConstruct Sat Mar 24 18:13:16 2007
+@@ -74,12 +74,24 @@
conf_dir = 'build/sconf',
log_file = 'build/sconf/config.log')
@@ -16,10 +16,19 @@
if os.environ.has_key('CXXFLAGS'):
env['CXXFLAGS'] = os.environ['CXXFLAGS'].split()
-@@ -145,11 +151,6 @@
++if os.environ.has_key('CPPPATH'):
++ env['CPPPATH'] = os.environ['CPPPATH'].split()
++
++if os.environ.has_key('LIBPATH'):
++ env['LIBPATH'] = os.environ['LIBPATH'].split()
++
+ env.SConsignFile('build/sconf/.sconsign')
+ opts.Save('build/sconf/scache.conf', env)
+ Help(opts.GenerateHelpText(env))
+@@ -125,11 +137,6 @@
+ Exit(1)
if not conf.CheckHeader('unistd.h'):
- print '\tHeader file unistd.h not found'
- Exit(1)
-
- if not conf.CheckLibWithHeader('pthread', 'pthread.h', 'c'):