blob: db147c894bcc4e02130c5bebaa16639ef6a74884 (
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
33
|
# New ports collection makefile for: du2ps
# Date created: 31 May 2001
# Whom: Yoshihiko Sarumaru <mistral@imasy.or.jp>
#
# $FreeBSD$
#
PORTNAME= du2ps
PORTVERSION= 2.1
CATEGORIES= sysutils
MASTER_SITES= http://www.shobi-u.ac.jp/~tnagae/src/ps-c/du2ps/du2ps-2.1/
EXTRACT_SUFX= .tgz
MAINTAINER= mistral@imasy.or.jp
COMMENT= Filter for converting output of du to PostScript file
# Nkf is required for just converting character code of japanese manual
BUILD_DEPENDS= nkf:${PORTSDIR}/japanese/nkf
MAKEFILE= makefile
ALL_TARGET=
MAN1= du2ps.1
MANLANG= "" ja
PLIST_FILES= bin/du2ps
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/du2ps ${PREFIX}/bin/du2ps
${INSTALL_MAN} ${FILESDIR}/du2ps.1 ${PREFIX}/man/man1/du2ps.1
nkf -e ${WRKSRC}/du2ps.man > ${WRKDIR}/du2ps.1.ja
${INSTALL_MAN} ${WRKDIR}/du2ps.1.ja ${PREFIX}/man/ja/man1/du2ps.1
.include <bsd.port.mk>
|