mirror of
https://git.freebsd.org/ports.git
synced 2025-07-06 20:09:14 -04:00
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
# New ports collection makefile for: orbit2
|
|
# Date Created: 16 Aug 1998
|
|
# Whom: Chia-liang Kao <clkao@CirX.ORG>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ORBit2
|
|
PORTVERSION= 2.3.107
|
|
CATEGORIES= devel gnome
|
|
MASTER_SITES= ${MASTER_SITE_GNOME}
|
|
MASTER_SITE_SUBDIR= pre-gnome2/releases/gnome-2.0-desktop-beta3
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
|
|
LIB_DEPENDS= IDL-2.0:${PORTSDIR}/devel/libIDL \
|
|
popt.0:${PORTSDIR}/devel/popt \
|
|
linc.1:${PORTSDIR}/net/linc
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
INSTALLS_SHLIB= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-indent
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LIBS="-L${LOCALBASE}/lib"
|
|
CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL}
|
|
|
|
pre-patch:
|
|
@find ${WRKSRC} -type f | xargs ${GREP} -l LINC_THREADSAFE | \
|
|
xargs ${PERL} -pi -e 's|LINC_THREADSAFE|G_THREADS_ENABLED|g'
|
|
|
|
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
|
|
|
|
.include <bsd.port.mk>
|