freebsd-ports/sysutils/ucspi-ipc/Makefile
Tilman Keskinoz bb016ac653 Updating ucspi-ipc to 0.67. This is a bugfix release.
Changes:
        * Add compatibility macros for older Perl.
        * Don't leak pointer returned from eval_pv.
        * Don't fail on setsid if already group leader (Gabriel Russell).
        * Test with relative paths.
        * Support partial compilation and testing.
        * Replace trunc with lop to avoid builtin conflict.
        * Avoid daemontools in rts.
        * Completely generic package/ scripts.
        * Stop Perl 5.8.5 from warning about freeing temporaries.
        * Partial-install bug fix in package/upgrade.

PR:		89604
Submitted by:	maintainer
2005-11-27 10:06:52 +00:00

51 lines
1.2 KiB
Makefile

# New ports collection makefile for: ucspi-ipc
# Date created: 2004-07-07
# Whom: David Thiel <lx@redundancy.redundancy.org>
#
# $FreeBSD$
#
PORTNAME= ucspi-ipc
PORTVERSION= 0.67
CATEGORIES= sysutils
MASTER_SITES= http://www.superscript.com/ucspi-ipc/
MAINTAINER= lx@redundancy.redundancy.org
COMMENT= UCSPI tools for building local-domain client-server applications
USE_PERL5= yes
DISABLE_SIZE= yes
NO_PACKAGE= Non-explicit licensing terms
DOCS= CHANGES
WRKSRC= ${WRKDIR}/host/superscript.com/net/${DISTNAME}
do-configure:
${ECHO_CMD} "${CC} ${CFLAGS}" > ${WRKSRC}/src/conf-cc
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} < 500600
IGNORE= "requires Perl 5.6.0 or greater. Please install lang/perl5 and retry"
.endif
do-build:
cd ${WRKSRC} && package/compile
do-install:
.for x in ipccat ipcconnect ipcdo ipcrun
${INSTALL_SCRIPT} ${WRKSRC}/command/${x} ${PREFIX}/bin
.endfor
.for x in ipcclient ipccommand ipcconnect-io ipcexec ipcexec-config \
ipcexecrules ipcexecrulescheck ipcperl ipcrules ipcrulescheck ipcserver
${INSTALL_PROGRAM} ${WRKSRC}/command/${x} ${PREFIX}/bin
.endfor
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
cd ${WRKSRC}/src && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
.endif
.include <bsd.port.post.mk>