diff options
author | steve <steve@FreeBSD.org> | 1998-12-16 05:06:18 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1998-12-16 05:06:18 +0800 |
commit | 2d75e8ecd531024e717d4d4ffa3a095201a8d86e (patch) | |
tree | 5f9274f201fa3020e87b7e442b54b3659519b267 /devel/cons/Makefile | |
parent | bb1d4b6bb310a57d623ec0e33162a65e7963b038 (diff) | |
download | freebsd-ports-gnome-2d75e8ecd531024e717d4d4ffa3a095201a8d86e.tar.gz freebsd-ports-gnome-2d75e8ecd531024e717d4d4ffa3a095201a8d86e.tar.zst freebsd-ports-gnome-2d75e8ecd531024e717d4d4ffa3a095201a8d86e.zip |
Initial import of cons version 1.5.
A Perl-based Make replacement.
PR: 9076
Submitted by: Rajesh Vaidheeswar <rv@fore.com>
Diffstat (limited to 'devel/cons/Makefile')
-rw-r--r-- | devel/cons/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/devel/cons/Makefile b/devel/cons/Makefile new file mode 100644 index 000000000000..62e44a816bed --- /dev/null +++ b/devel/cons/Makefile @@ -0,0 +1,36 @@ +# New ports collection makefile for: cons +# Version required: 1.5 +# Date created: 11 December 1998 +# Whom: rv@fore.com +# +# $Id$ +# + +DISTNAME= cons-1.5 +CATEGORIES= devel +MASTER_SITES= http://www.lowrent.org/cons/ +EXTRACT_SUFX= .tgz + +MAINTAINER= rv@fore.com + +RUN_DEPENDS= ${PREFIX}/lib/perl5/site_perl/${PERL_VER}/MD5.pm:${PORTSDIR}/security/p5-MD5 + +USE_PERL5= yes +NO_BUILD= yes +PLIST_SUB= CONS_VER=1.5 + +MAN1= cons.1 +DOCS= CHANGES COPYRIGHT INSTALL MANIFEST README RELEASE cons.html \ + cons.pod + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/cons ${PREFIX}/bin/cons + ${INSTALL_MAN} ${WRKSRC}/cons.1 ${PREFIX}/man/man1/cons.1 +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/${PKGNAME} +.for f in ${DOCS} + ${INSTALL} -c ${WRKSRC}/$f ${PREFIX}/share/doc/${PKGNAME} +.endfor +.endif + +.include <bsd.port.mk> |