mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
fa3a17c064
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 P-S. CR: D422 Approved by: portmgr (bapt)
24 lines
547 B
Makefile
24 lines
547 B
Makefile
# Created by: Matthew Hunt <mph@pobox.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= c2ps
|
|
PORTVERSION= 4.0
|
|
PORTREVISION= 4
|
|
CATEGORIES= print
|
|
MASTER_SITES= http://www.cs.technion.ac.il/users/c2ps/
|
|
|
|
MAINTAINER= hrs@FreeBSD.org
|
|
COMMENT= PostScript pretty-printer for C source
|
|
|
|
LIB_DEPENDS= libpaper.so:${PORTSDIR}/print/libpaper
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
|
|
PLIST_FILES= bin/c2ps man/man1/c2ps.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/c2ps ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/c2ps.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|