diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2006-07-20 21:07:41 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2006-07-20 21:07:41 +0000 |
commit | 15263f8c0f586d78469568d1275301b209b7cb43 (patch) | |
tree | 23b389a2f0b011a4bcfcb5eedab24e2a0e336896 /devel/ice/Makefile | |
parent | 7807f28f58b1670c4476841df5e2eb1619059274 (diff) |
Notes
Diffstat (limited to 'devel/ice/Makefile')
-rw-r--r-- | devel/ice/Makefile | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/devel/ice/Makefile b/devel/ice/Makefile index aa1b62b18d3e..f38da321dfd2 100644 --- a/devel/ice/Makefile +++ b/devel/ice/Makefile @@ -6,10 +6,9 @@ # PORTNAME= Ice -PORTVERSION= 3.0.0 -PORTREVISION= 1 +PORTVERSION= 3.1.0 CATEGORIES= devel -MASTER_SITES= http://www.zeroc.com/download/Ice/3.0/ +MASTER_SITES= http://www.zeroc.com/download/Ice/3.1/ MAINTAINER= shoesoft@gmx.net COMMENT= A modern alternative to object middleware such as CORBA/COM/DCOM/COM+ @@ -29,11 +28,11 @@ CFLAGS+= -DNDEBUG .include <bsd.port.pre.mk> .if ${OSVERSION} < 500028 -BROKEN= "does not compile on systems prior to 5.x" +BROKEN= does not compile on systems prior to 5.x .endif .if ${ARCH} == "ia64" -BROKEN= "Does not compile on ia64" +BROKEN= does not compile on ia64 .endif .if ((${ARCH} != i386) && (${ARCH} != powerpc)) @@ -44,10 +43,13 @@ post-patch: ${SED} 's|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|g; \ s|%%PREFIX%%|${PREFIX}|g; \ s|%%DATADIR%%|${DATADIR}|g; \ - s|%%DOCSDIR%%|${DOCSDIR}|g;' \ + s|%%DOCSDIR%%|${DOCSDIR}|g; \ + s|%%INSTALL_PROGRAM%%|${INSTALL_PROGRAM}|g; \ + s|%%INSTALL_DATA%%|${INSTALL_DATA}|g' \ ${FILESDIR}/Make.rules.FreeBSD > ${WRKSRC}/config/Make.rules.FreeBSD - ${REINPLACE_CMD} 's|%%INSTALL_PROGRAM%%|${INSTALL_PROGRAM}|g; \ - s|%%INSTALL_DATA%%|${INSTALL_DATA}|g' ${WRKSRC}/config/Make.rules + ${REINPLACE_CMD} 's|prefix|install_slicedir|g' ${WRKSRC}/config/Makefile + ${REINPLACE_CMD} 's|prefix|install_slicedir|g; \ + s|INSTALL_PROGRAM|INSTALL_DATA|g' ${WRKSRC}/config/ca/Makefile ${FIND} ${WRKSRC} -name Makefile -exec ${REINPLACE_CMD} 's|-lIceSSL|-lIceSSL -lIceXML|' {} \; .include <bsd.port.post.mk> |