mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
5dd4ea2cab
- Add license - Rename patch to follow makepatch naming - Use new options knobs Sponsored by: Absolight
27 lines
541 B
Makefile
27 lines
541 B
Makefile
# Created by: Andrey Zakhvatov
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= c2html
|
|
PORTVERSION= 0.9.6
|
|
CATEGORIES= textproc www
|
|
MASTER_SITES= ${MASTER_SITE_SUNSITE}
|
|
MASTER_SITE_SUBDIR= apps/www/converters
|
|
|
|
MAINTAINER= mkamm@gmx.net
|
|
COMMENT= C-language sources to HTML converter
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_AUTOTOOLS= autoconf213
|
|
|
|
PLIST_FILES= bin/c2html man/man1/c2html.1.gz
|
|
PORTDOCS= AUTHORS NEWS README
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for file in ${PORTDOCS}
|
|
${INSTALL_MAN} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|