blob: a5024c4b3a12e8885cff53f6ed8bec4bb69e9d5e (
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
|
# $NetBSD: Makefile,v 1.13 2001/02/25 04:18:01 hubertf Exp $
# FreeBSD: ports/misc/fd/Makefile,v 1.14 1999/08/25 07:21:37 obrien Exp
#
DISTNAME= FD-1.03o
PKGNAME= fd-1.03o
CATEGORIES= misc
MASTER_SITES= ftp://ftp.ics.es.osaka-u.ac.jp/pub/FDclone/ \
http://hp.vector.co.jp/authors/VA012337/soft/fd/
MAINTAINER= Nobuhiro Yasutomi <nobu@psrc.isac.co.jp>
COMMENT= File and directory management tool
MANLANG= ja
MAKE_ENV= LANG=${MANLANG}
DOCS= README FAQ HISTORY ToAdmin
# require maintainer signature for binary package distributions
do-configure:
@cd ${WRKSRC}; v=version.h; ${MV} $$v $$v.orig; \
${SED} 's/\(distributor = \)NULL/\1"${MAINTAINER}"/' $$v.orig > $$v
post-install:
@${INSTALL_DATA_DIR} ${PREFIX}/share/doc/fd
@for i in ${DOCS}; do \
${INSTALL_DATA} ${WRKSRC}/$$i ${PREFIX}/share/doc/fd; \
done
.include "../../mk/bsd.pkg.mk"
|