22d7896c17
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Categories T-V. CR: D509 Approved by: portmgr (antoine)
26 lines
536 B
Makefile
26 lines
536 B
Makefile
# Created by: Daniel McRobb <dwm@caimis.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= opensched
|
|
PORTVERSION= 0.1.0
|
|
PORTREVISION= 8
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://hitachi-id.com/dlsoftware/opensched/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Project scheduler
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= gmake
|
|
|
|
ALL_TARGET= build
|
|
|
|
PLIST_FILES= bin/opensched man/man1/opensched.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/opensched ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/doc/opensched.1 \
|
|
${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|