1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-19 03:52:17 +00:00
freebsd-ports/devel/ice/Makefile
Rong-En Fan 15263f8c0f - Update to 3.1.0
- pet portlint(1)

PR:		ports/100583
Submitted by:	maintainer
2006-07-20 21:07:41 +00:00

56 lines
1.5 KiB
Makefile

# New ports collection makefile for: ice
# Date created: 2004-02-02
# Whom: Stefan Ehmann <shoesoft@gmx.net>
#
# $FreeBSD$
#
PORTNAME= Ice
PORTVERSION= 3.1.0
CATEGORIES= devel
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+
LIB_DEPENDS= db-4.2.2:${PORTSDIR}/databases/db42 \
expat.6:${PORTSDIR}/textproc/expat2
USE_GMAKE= yes
INSTALLS_SHLIB= yes
CFLAGS+= -ftemplate-depth-128 -fPIC -DPIC -Wall -D_REENTRANT ${PTHREAD_CFLAGS}
.if defined(DEBUG)
CFLAGS+= -g
.else
CFLAGS+= -DNDEBUG
.endif
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500028
BROKEN= does not compile on systems prior to 5.x
.endif
.if ${ARCH} == "ia64"
BROKEN= does not compile on ia64
.endif
.if ((${ARCH} != i386) && (${ARCH} != powerpc))
MAKE_ENV= LP64=yes
.endif
post-patch:
${SED} 's|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|g; \
s|%%PREFIX%%|${PREFIX}|g; \
s|%%DATADIR%%|${DATADIR}|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|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>