blob: dad9be88d4bc0ca3985e9d86a0a552468c92a5df (
plain) (
blame)
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
30
31
32
|
# New ports collection makefile for: yaucg
# Date created: 26 August 2001
# Whom: Gea-Suan Lin (gslin@ccca.nctu.edu.tw)
#
# $FreeBSD$
#
PORTNAME= yaucg
PORTVERSION= 0.2
CATEGORIES= misc
MASTER_SITES= http://home.balcab.ch/joelle.wiesmann/secuserv/
MAINTAINER= gslin@ccca.nctu.edu.tw
RUN_DEPENDS= wget:${PORTSDIR}/ftp/wget \
bash:${PORTSDIR}/shells/bash2
WRKSRC= ${WRKDIR}/${PORTNAME}
NO_BUILD= yes
STRIP= # empty
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/grepper/userfriendly.sh ${PREFIX}/bin
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for FILE in changelog license readme todo
@${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|