54a0b86543
in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
45 lines
1.0 KiB
Makefile
45 lines
1.0 KiB
Makefile
# New ports collection makefile for: orbit
|
|
# Date Created: 16 Aug 1998
|
|
# Whom: Chia-liang Kao <clkao@CirX.ORG>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ORBit
|
|
PORTVERSION= 0.5.17
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel gnome
|
|
MASTER_SITES= ${MASTER_SITE_GNOME}
|
|
MASTER_SITE_SUBDIR= sources/ORBit/0.5
|
|
DIST_SUBDIR= gnome
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= High-performance CORBA ORB with support for the C language
|
|
|
|
USE_BZIP2= yes
|
|
USE_GETTEXT= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= glib12 gnometarget
|
|
INSTALLS_SHLIB= yes
|
|
USE_AUTOTOOLS= libtool:13:inc
|
|
LIBTOOLFILES= configure popt/configure libIDL/configure
|
|
CONFIGURE_ARGS= --disable-indent
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
INFO= libIDL
|
|
|
|
CONFLICTS= ORBacus-*
|
|
|
|
post-patch:
|
|
@${TOUCH} ${WRKSRC}/configure
|
|
|
|
post-install:
|
|
@${ECHO_CMD} "ORBIIOPIPv4=0" > ${PREFIX}/etc/orbitrc.default
|
|
@${ECHO_CMD} "ORBIIOPIPv6=0" >> ${PREFIX}/etc/orbitrc.default
|
|
@if [ ! -f ${PREFIX}/etc/orbitrc ]; then \
|
|
${CP} -p ${PREFIX}/etc/orbitrc.default ${PREFIX}/etc/orbitrc ; \
|
|
fi
|
|
|
|
.include <bsd.port.mk>
|