Lines 6-30
Link Here
|
6 |
# |
6 |
# |
7 |
|
7 |
|
8 |
PORTNAME= replaceit |
8 |
PORTNAME= replaceit |
9 |
PORTVERSION= 1.0.0 |
9 |
PORTVERSION= 1.0.1 |
10 |
PORTREVISION= 1 |
|
|
11 |
CATEGORIES= textproc |
10 |
CATEGORIES= textproc |
12 |
MASTER_SITES= http://pldaniels.com/replaceit/ |
11 |
MASTER_SITES= http://pldaniels.com/replaceit/ |
13 |
|
12 |
|
14 |
MAINTAINER= ports@FreeBSD.org |
13 |
MAINTAINER= ports@FreeBSD.org |
15 |
COMMENT= A light replacement to the combination of sed/awk/grep/head/tail |
14 |
COMMENT= A light replacement to the combination of sed/awk/grep/head/tail |
16 |
|
15 |
|
|
|
16 |
LICENSE= BSD |
17 |
LICENSE_FILE= ${WRKSRC}/LICENSE |
18 |
|
19 |
MAKE_ARGS= CC="${CC}" PRF="${CFLAGS}" |
20 |
|
21 |
PORTDOCS= CHANGELOG README |
17 |
PLIST_FILES= bin/replaceit |
22 |
PLIST_FILES= bin/replaceit |
18 |
PORTDOCS= CHANGELOG INSTALL LICENSE README |
|
|
19 |
|
23 |
|
20 |
do-install: |
24 |
do-install: |
21 |
@${INSTALL_PROGRAM} ${WRKSRC}/replaceit ${PREFIX}/bin |
25 |
${INSTALL_PROGRAM} ${WRKSRC}/replaceit ${PREFIX}/bin |
22 |
|
|
|
23 |
post-install: |
24 |
.if !defined(NOPORTDOCS) |
26 |
.if !defined(NOPORTDOCS) |
25 |
@${MKDIR} ${DOCSDIR} |
27 |
@${MKDIR} ${DOCSDIR} |
26 |
.for FILE in ${PORTDOCS} |
28 |
.for FILE in ${PORTDOCS} |
27 |
@${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} |
29 |
${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} |
28 |
.endfor |
30 |
.endfor |
29 |
.endif |
31 |
.endif |
30 |
|
32 |
|