Update it to the lastest version of CVS, at 2007-03-24 in changelog. See in

the changelog for details:

	http://tinyurl.com/b3myl
This commit is contained in:
Jeremy Messenger 2007-03-25 03:28:37 +00:00
parent a5e5269e86
commit 23d76ca6e9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=188219
3 changed files with 18 additions and 10 deletions

View File

@ -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)

View File

@ -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

View File

@ -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'):