blob: 632174c988a53f9da9b55c70fcb036cca766f649 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
PORTNAME= atom
PORTVERSION= 1.0
CATEGORIES= textproc
MASTER_SITES= http://www.bayofrum.net/dist/atom/ \
http://muuz.deadbbs.com/FreeBSD/atom/
MAINTAINER= crees@FreeBSD.org
COMMENT= Converts text files to html with special attributes
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
GNU_CONFIGURE= yes
PLIST_FILES= bin/atom man/man1/atom.1.gz
PORTDOCS= README TODO testFile
OPTIONS_DEFINE= DOCS
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/man/man1/
do-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>
|