mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 05:10:29 -04:00
- add license (GPLv2) - switch to bdb 5 - mark broken on 10.x for the time being (as it was discussed on ports@ ML) - remove patches, applied upstream This version of Ice brings many new features, e.g. - New encoding version - Metrics facility - Optional data members and parameters - Compact encoding for classes and exceptions - Compact type IDs - Preserved slices - Custom enumerator values - C++11 lambda functions - Remote Update of Server Properties - IPv6 now enabled by default - Python 3 support - Use Berkley DB 5 See http://doc.zeroc.com/display/Ice/Release+Notes for details. PR: 179233 Submitted by: Michael Gmelin <freebsd@grem.de> (maintainer) Tested by: Jaret Bartsch <jaretbartsch@yahoo.ca>
13 lines
514 B
Text
13 lines
514 B
Text
--- cpp.orig/config/Make.rules Fri Mar 11 16:19:00 2013
|
|
+++ cpp/config/Make.rules Fri May 19 22:00:09 2013
|
|
@@ -233,7 +233,9 @@
|
|
DB_FLAGS = -I/usr/local/include/db53
|
|
DB_LIBS = -L/usr/local/$(libsubdir)/db53 -ldb_cxx
|
|
else
|
|
- DB_LIBS = -ldb_cxx
|
|
+ DB_FLAGS = -I%%BDB_INCLUDE_DIR%%
|
|
+ DB_LIBS = -L%%BDB_LIB_DIR%% -l%%BDB_LIB_CXX_NAME%%
|
|
+ DB_RPATH_LINK = $(call rpathlink,%%BDB_LIB_DIR%%)
|
|
endif
|
|
endif
|
|
endif
|