diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-09-29 22:08:02 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-09-29 22:08:02 +0800 |
commit | 8a4812aea00170ddce52011eabb94534e3906fbe (patch) | |
tree | 83ef147d4cf721ae5e2a36d61dc54781e3e2296f /devel/ORBit2/Makefile | |
parent | 08b4878b3a9787a782eb55009156dcc1234c2826 (diff) | |
download | marcuscom-ports-8a4812aea00170ddce52011eabb94534e3906fbe.tar marcuscom-ports-8a4812aea00170ddce52011eabb94534e3906fbe.tar.gz marcuscom-ports-8a4812aea00170ddce52011eabb94534e3906fbe.tar.bz2 marcuscom-ports-8a4812aea00170ddce52011eabb94534e3906fbe.tar.lz marcuscom-ports-8a4812aea00170ddce52011eabb94534e3906fbe.tar.xz marcuscom-ports-8a4812aea00170ddce52011eabb94534e3906fbe.tar.zst marcuscom-ports-8a4812aea00170ddce52011eabb94534e3906fbe.zip |
Update to 2.14.19.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@14754 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/ORBit2/Makefile')
-rw-r--r-- | devel/ORBit2/Makefile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/devel/ORBit2/Makefile b/devel/ORBit2/Makefile new file mode 100644 index 000000000..f1ae03621 --- /dev/null +++ b/devel/ORBit2/Makefile @@ -0,0 +1,47 @@ +# New ports collection makefile for: orbit2 +# Date Created: 16 Aug 1998 +# Whom: Chia-liang Kao <clkao@CirX.ORG> +# +# $FreeBSD$ +# $MCom: ports/devel/ORBit2/Makefile,v 1.55 2010/04/02 17:37:25 kwm Exp $ +# + +PORTNAME= ORBit2 +PORTVERSION= 2.14.19 +PORTREVISION?= 0 +CATEGORIES= devel gnome +MASTER_SITES= GNOME +DIST_SUBDIR= gnome2 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= High-performance CORBA ORB with support for the C language + +USE_BZIP2= yes + +.if !defined(REFERENCE_PORT) + +USE_GMAKE= yes +USE_GETTEXT= yes +USE_LDCONFIG= yes +USE_AUTOTOOLS= libtool:22 +USE_GNOME= gnomehack libidl ltverhack referencehack +CONFIGURE_ARGS= --with-html-dir=${PREFIX}/share/doc \ + --disable-gtk-doc +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +post-patch: + @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ + ${WRKSRC}/src/orb/orb-core/orbit-typelib.c + +post-install: + @${ECHO_CMD} "ORBIIOPIPv4=0" > ${PREFIX}/etc/orbit2rc.default + @${ECHO_CMD} "ORBIIOPIPv6=0" >> ${PREFIX}/etc/orbit2rc.default + @if [ ! -f ${PREFIX}/etc/orbit2rc ]; then \ + ${CP} -p ${PREFIX}/etc/orbit2rc.default ${PREFIX}/etc/orbit2rc ; \ + fi + @${MKDIR} ${PREFIX}/lib/orbit-2.0/idl-backends + +.include <bsd.port.mk> + +.endif |