mirror of
https://git.freebsd.org/ports.git
synced 2025-07-01 01:20:31 -04:00
Changes from [*]: - Update Ice to 3.5.1. - Stageify all three ports. - Convert py-ice and php5-ice to slave ports. - Use ICONV_LIB, so it builds ok with native iconv [1]. - Workaround for FreeBSD 10's static destructor order disaster [2]. - Install man pages. - Allow package build for non-root users. [1] http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/using-iconv.html [2] http://lists.freebsd.org/pipermail/freebsd-ports/2013-June/084580.html Changes from [3]: - Convert LIB_DEPENDS to new syntax. - USE_GMAKE -> USES - list Berkeley DB 6 invalid, requires upstream changes, but upstream is loathe to make those due to licensing change in BDB - remove BDB 2 and 3 from invalid listing, we no longer have these ports PR: ports/184453 [*] PR: ports/185569 [3] Submitted by: Michael Gmelin (maintainer) [*] Submitted by: mandree [3] Approved by: Michael Gmelin (maintainer) [3]
31 lines
1.4 KiB
Python
31 lines
1.4 KiB
Python
--- cpp.orig/allTests.py 2013-03-11 15:19:58.000000000 +0000
|
|
+++ cpp/allTests.py 2013-05-19 22:25:00.000000000 +0000
|
|
@@ -62,7 +63,7 @@
|
|
("Ice/servantLocator", ["core"]),
|
|
("Ice/interceptor", ["core"]),
|
|
("Ice/stringConverter", ["core"]),
|
|
- ("Ice/udp", ["core"]),
|
|
+ ("Ice/udp", ["core", "nofreebsdjail"]),
|
|
("Ice/defaultServant", ["core"]),
|
|
("Ice/defaultValue", ["core"]),
|
|
("Ice/invoke", ["core", "novc6"]),
|
|
@@ -85,7 +85,7 @@
|
|
("IceStorm/federation2", ["service", "novc90", "nomingw"]),
|
|
("IceStorm/stress", ["service", "stress", "novc90", "noappverifier", "nomingw"]), # Too slow with appverifier.
|
|
("IceStorm/rep1", ["service", "novc90", "nomingw"]),
|
|
- ("IceStorm/repgrid", ["service", "novc90", "nomingw"]),
|
|
+ ("IceStorm/repgrid", ["service", "novc90", "nomingw", "nofreebsd"]),
|
|
("IceStorm/repstress", ["service", "noipv6", "stress", "novc90", "nomingw"]),
|
|
("FreezeScript/dbmap", ["once", "novc90", "nomingw"]),
|
|
("FreezeScript/evictor", ["once", "novc90", "nomingw"]),
|
|
@@ -106,8 +107,8 @@
|
|
#
|
|
if TestUtil.isWin32() or os.getuid() == 0:
|
|
tests += [
|
|
- ("IceUtil/priority", ["core", "nodarwin"]),
|
|
- ("Ice/threadPoolPriority", ["core", "nodarwin", "nomx"])
|
|
+ ("IceUtil/priority", ["core", "nodarwin", "nofreebsd"]),
|
|
+ ("Ice/threadPoolPriority", ["core", "nodarwin", "nofreebsd", "nomx"])
|
|
]
|
|
|
|
if __name__ == "__main__":
|