mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-31 05:41:08 +00:00
fbd46d727e
- Convert to OptionsNG PR: ports/172502 Submitted by: KATO Tsuguru <tkato432@yahoo.com> Feature safe: yes
54 lines
1.1 KiB
Makefile
54 lines
1.1 KiB
Makefile
# Created by: chinsan
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= paexec
|
|
PORTVERSION= 0.17.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Parallel executor, distributes tasks over network
|
|
|
|
LICENSE= MIT
|
|
|
|
BUILD_DEPENDS= mk-configure>=0.23:${PORTSDIR}/devel/mk-configure
|
|
LIB_DEPENDS= maa:${PORTSDIR}/devel/libmaa
|
|
RUN_DEPENDS= runawk:${PORTSDIR}/lang/runawk
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
USE_PERL5_BUILD=yes
|
|
MAKE_ENV= SUBPRJ_DFLT="${SUBPRJ_DFLT}"
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
MAN1= ${PORTNAME}.1 \
|
|
${PORTNAME}_reorder.1
|
|
PORTDOCS= *
|
|
PORTEXAMPLES= *
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
bin/${PORTNAME}_reorder
|
|
|
|
SUBPRJ_DFLT= ${PORTNAME}
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
SUBPRJ_DFLT+= doc
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MEXAMPLES}
|
|
SUBPRJ_DFLT+= examples
|
|
MAKE_ENV+= EGDIR="${EXAMPLESDIR}"
|
|
.endif
|
|
|
|
do-build:
|
|
@${SETENV} ${MAKE_ENV} ${LOCALBASE}/bin/mkcmake -C ${WRKSRC}
|
|
|
|
do-install:
|
|
@${SETENV} ${MAKE_ENV} ${LOCALBASE}/bin/mkcmake -C ${WRKSRC} \
|
|
${INSTALL_TARGET}
|
|
|
|
.include <bsd.port.mk>
|