diff options
author | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2013-06-17 11:42:41 +0000 |
---|---|---|
committer | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2013-06-17 11:42:41 +0000 |
commit | 58e60f6909d832bb6100e9a168f002a14d4214ef (patch) | |
tree | 3676c05fa6760a824faa9ecb99d28794fb4563c8 /devel/ice/Makefile | |
parent | 677c6f08e02307c1dd8f1ce6056f3801fe506921 (diff) | |
download | ports-58e60f6909d832bb6100e9a168f002a14d4214ef.tar.gz ports-58e60f6909d832bb6100e9a168f002a14d4214ef.zip |
- update to 3.5.0
- 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>
Notes
Notes:
svn path=/head/; revision=321096
Diffstat (limited to 'devel/ice/Makefile')
-rw-r--r-- | devel/ice/Makefile | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/devel/ice/Makefile b/devel/ice/Makefile index 295abb69a014..3810e6a6f6af 100644 --- a/devel/ice/Makefile +++ b/devel/ice/Makefile @@ -2,14 +2,15 @@ # $FreeBSD$ PORTNAME= Ice -PORTVERSION= 3.4.2 -PORTREVISION= 3 +PORTVERSION= 3.5.0 CATEGORIES= devel -MASTER_SITES= http://download.zeroc.com/Ice/3.4/ +MASTER_SITES= http://download.zeroc.com/Ice/3.5/ MAINTAINER= freebsd@grem.de COMMENT= Modern alternative to object middleware such as CORBA/COM/DCOM/COM+ +LICENSE= GPLv2 + LIB_DEPENDS= expat:${PORTSDIR}/textproc/expat2 \ mcpp:${PORTSDIR}/devel/mcpp @@ -26,8 +27,8 @@ USE_PYTHON_BUILD= yes USE_GMAKE= yes USES= iconv -USE_BDB= 42+ -INVALID_BDB_VER= 2 3 40 41 +USE_BDB= 5 +INVALID_BDB_VER= 2 3 40 41 42 43 44 46 47 48 USE_LDCONFIG= yes BUILD_WRKSRC= ${WRKSRC}/cpp INSTALL_WRKSRC= ${WRKSRC}/cpp @@ -45,6 +46,10 @@ BROKEN= does not compile on ia64 BROKEN= fails to link .endif +.if ${OSVERSION} >= 1000000 +BROKEN= Does not work on FreeBSD 10 +.endif + .if ((${ARCH} != i386) && (${ARCH} != powerpc)) MAKE_ENV= LP64=yes .endif |