mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
36 lines
859 B
Makefile
36 lines
859 B
Makefile
# Created by: rv@gnu.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cons
|
|
PORTVERSION= 2.2.0
|
|
PORTREVISION= 3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.dsmit.com/cons/stable/ \
|
|
http://www.gnu.org/software/cons/stable/ \
|
|
ftp://ftp.gnu.org/pub/gnu/cons/ \
|
|
http://www.baldmt.com/cons/stable/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= rv@gnu.org
|
|
COMMENT= A Perl-based Make Replacement
|
|
|
|
USES= perl5
|
|
NO_BUILD= yes
|
|
PLIST_SUB= CONS_VER=${PORTVERSION}
|
|
|
|
DOCS= CHANGES COPYING COPYRIGHT INSTALL MANIFEST README RELEASE \
|
|
cons.html TODO
|
|
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION}
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/cons ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/cons.1.gz ${STAGEDIR}${MANPREFIX}/man/man1
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|