mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Update it to the lastest version of CVS, at 2006-08-01 in changelog. See in
the changelog for details: http://tinyurl.com/b3myl
This commit is contained in:
parent
9e57af172f
commit
5b441514c8
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=169626
3 changed files with 20 additions and 9 deletions
|
@ -6,7 +6,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= linuxdcpp
|
PORTNAME= linuxdcpp
|
||||||
PORTVERSION= 0.0.1.20060726 #0.0.1.YYYYMMDD
|
PORTVERSION= 0.0.1.20060803 #0.0.1.YYYYMMDD
|
||||||
CATEGORIES= net-p2p
|
CATEGORIES= net-p2p
|
||||||
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
||||||
MASTER_SITE_SUBDIR=mezz
|
MASTER_SITE_SUBDIR=mezz
|
||||||
|
@ -19,11 +19,17 @@ USE_XLIB= yes
|
||||||
USE_BZIP2= yes
|
USE_BZIP2= yes
|
||||||
USE_GNOME= libglade2
|
USE_GNOME= libglade2
|
||||||
USE_SCONS= yes
|
USE_SCONS= yes
|
||||||
SCONS_ARGS= release=1
|
|
||||||
|
|
||||||
DATADIR= ${PREFIX}/share/ldcpp
|
DATADIR= ${PREFIX}/share/ldcpp
|
||||||
DOCSDIR= ${PREFIX}/share/doc/ldcpp
|
DOCSDIR= ${PREFIX}/share/doc/ldcpp
|
||||||
|
|
||||||
|
.if defined(WITH_DEBUG)
|
||||||
|
SCONS_ARGS= debug=1
|
||||||
|
STRIP=
|
||||||
|
.else
|
||||||
|
SCONS_ARGS= release=1
|
||||||
|
.endif
|
||||||
|
|
||||||
post-extract:
|
post-extract:
|
||||||
@${RM} ${WRKSRC}/linux/prefix.*
|
@${RM} ${WRKSRC}/linux/prefix.*
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
MD5 (linuxdcpp-0.0.1.20060726.tar.bz2) = 86bf306f8a9b5d81062e9f41e93476f8
|
MD5 (linuxdcpp-0.0.1.20060803.tar.bz2) = 4f81d1e26877aa8f60300b30f6e6871b
|
||||||
SHA256 (linuxdcpp-0.0.1.20060726.tar.bz2) = c7e7ea557f48c1c7b15a1590e8aa0b5895092f074e91815adc4906a0335b3ba4
|
SHA256 (linuxdcpp-0.0.1.20060803.tar.bz2) = 6450ccf3f0a43f9a2be9974eaa68d6b71e87c0ad1bf1525ea7c063db70939f45
|
||||||
SIZE (linuxdcpp-0.0.1.20060726.tar.bz2) = 355942
|
SIZE (linuxdcpp-0.0.1.20060803.tar.bz2) = 355209
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
--- SConstruct.orig Sun Jul 16 11:18:33 2006
|
--- SConstruct.orig Tue Aug 1 13:01:44 2006
|
||||||
+++ SConstruct Sun Jul 16 11:22:24 2006
|
+++ SConstruct Thu Aug 3 12:45:35 2006
|
||||||
@@ -38,28 +38,12 @@
|
@@ -38,28 +38,12 @@
|
||||||
context.Result(ret)
|
context.Result(ret)
|
||||||
return ret
|
return ret
|
||||||
|
@ -71,7 +71,7 @@
|
||||||
if not conf.CheckLibWithHeader('z', 'zlib.h', 'c'):
|
if not conf.CheckLibWithHeader('z', 'zlib.h', 'c'):
|
||||||
print 'Did not find the z library (gzip/z compression)'
|
print 'Did not find the z library (gzip/z compression)'
|
||||||
print 'Can\'t live without it, exiting'
|
print 'Can\'t live without it, exiting'
|
||||||
@@ -138,7 +96,7 @@
|
@@ -138,19 +96,19 @@
|
||||||
Exit(1)
|
Exit(1)
|
||||||
|
|
||||||
env = conf.Finish()
|
env = conf.Finish()
|
||||||
|
@ -80,7 +80,12 @@
|
||||||
|
|
||||||
|
|
||||||
# Parse command line parameters
|
# 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)
|
release = ARGUMENTS.get('release', 0)
|
||||||
if int(release):
|
if int(release):
|
||||||
|
|
Loading…
Add table
Reference in a new issue