diff options
author | mezz <mezz@FreeBSD.org> | 2006-08-04 16:09:50 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2006-08-04 16:09:50 +0800 |
commit | e6c4ddd207e645f2c97289c0761f023405f6c9b5 (patch) | |
tree | a029b1b92c53ea17070420a2961995003f6aa680 /net-p2p/linuxdcpp | |
parent | 034e051c05035e4dc3474cd72127bc59415aec26 (diff) | |
download | freebsd-ports-gnome-e6c4ddd207e645f2c97289c0761f023405f6c9b5.tar.gz freebsd-ports-gnome-e6c4ddd207e645f2c97289c0761f023405f6c9b5.tar.zst freebsd-ports-gnome-e6c4ddd207e645f2c97289c0761f023405f6c9b5.zip |
Update it to the lastest version of CVS, at 2006-08-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 | 10 | ||||
-rw-r--r-- | net-p2p/linuxdcpp/distinfo | 6 | ||||
-rw-r--r-- | net-p2p/linuxdcpp/files/patch-SConstruct | 13 |
3 files changed, 20 insertions, 9 deletions
diff --git a/net-p2p/linuxdcpp/Makefile b/net-p2p/linuxdcpp/Makefile index 1cdf4340a100..1a526c982409 100644 --- a/net-p2p/linuxdcpp/Makefile +++ b/net-p2p/linuxdcpp/Makefile @@ -6,7 +6,7 @@ # PORTNAME= linuxdcpp -PORTVERSION= 0.0.1.20060726 #0.0.1.YYYYMMDD +PORTVERSION= 0.0.1.20060803 #0.0.1.YYYYMMDD CATEGORIES= net-p2p MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR=mezz @@ -19,11 +19,17 @@ USE_XLIB= yes USE_BZIP2= yes USE_GNOME= libglade2 USE_SCONS= yes -SCONS_ARGS= release=1 DATADIR= ${PREFIX}/share/ldcpp DOCSDIR= ${PREFIX}/share/doc/ldcpp +.if defined(WITH_DEBUG) +SCONS_ARGS= debug=1 +STRIP= +.else +SCONS_ARGS= release=1 +.endif + post-extract: @${RM} ${WRKSRC}/linux/prefix.* diff --git a/net-p2p/linuxdcpp/distinfo b/net-p2p/linuxdcpp/distinfo index 2e6dd8ddb143..161ab2f30afa 100644 --- a/net-p2p/linuxdcpp/distinfo +++ b/net-p2p/linuxdcpp/distinfo @@ -1,3 +1,3 @@ -MD5 (linuxdcpp-0.0.1.20060726.tar.bz2) = 86bf306f8a9b5d81062e9f41e93476f8 -SHA256 (linuxdcpp-0.0.1.20060726.tar.bz2) = c7e7ea557f48c1c7b15a1590e8aa0b5895092f074e91815adc4906a0335b3ba4 -SIZE (linuxdcpp-0.0.1.20060726.tar.bz2) = 355942 +MD5 (linuxdcpp-0.0.1.20060803.tar.bz2) = 4f81d1e26877aa8f60300b30f6e6871b +SHA256 (linuxdcpp-0.0.1.20060803.tar.bz2) = 6450ccf3f0a43f9a2be9974eaa68d6b71e87c0ad1bf1525ea7c063db70939f45 +SIZE (linuxdcpp-0.0.1.20060803.tar.bz2) = 355209 diff --git a/net-p2p/linuxdcpp/files/patch-SConstruct b/net-p2p/linuxdcpp/files/patch-SConstruct index e62cfef80ee5..89f6a10b8ce4 100644 --- a/net-p2p/linuxdcpp/files/patch-SConstruct +++ b/net-p2p/linuxdcpp/files/patch-SConstruct @@ -1,5 +1,5 @@ ---- SConstruct.orig Sun Jul 16 11:18:33 2006 -+++ SConstruct Sun Jul 16 11:22:24 2006 +--- SConstruct.orig Tue Aug 1 13:01:44 2006 ++++ SConstruct Thu Aug 3 12:45:35 2006 @@ -38,28 +38,12 @@ context.Result(ret) return ret @@ -71,7 +71,7 @@ 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' -@@ -138,7 +96,7 @@ +@@ -138,19 +96,19 @@ Exit(1) env = conf.Finish() @@ -80,7 +80,12 @@ # Parse command line parameters -@@ -150,7 +108,7 @@ + + debug = ARGUMENTS.get('debug', 0) + if int(debug): +- env.Append(CXXFLAGS = '-g -ggdb -D_DEBUG -Wall') ++ env.Append(CXXFLAGS = '%%CXXFLAGS%% -g -ggdb -D_DEBUG -Wall') + env.Append(LDFLAGS = '-g -ggdb') release = ARGUMENTS.get('release', 0) if int(release): |