blob: 244b61aed56b42e9516b60b22b067eea47524e06 (
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
|
# New ports collection makefile for: jhd
# Date created: Feb 5, 1998
# Whom: Satoshi TAOKA <taoka@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= jhd
PORTVERSION= 2.3
CATEGORIES= japanese
MASTER_SITES= ftp://ftp.iamas.ac.jp/UNIX/File/
MAINTAINER= taoka@FreeBSD.org
COMMENT= Japanese Hexdecimal Dump
BUILD_DEPENDS= nkf:${PORTSDIR}/japanese/nkf
MANLANG= ja
MAN1= jhd.1
post-build:
cd ${WRKSRC}; \
${MV} jhd.1 jhd.1.org; \
nkf -e jhd.1.org > jhd.1
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/jhd ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/jhd.1 ${PREFIX}/man/ja/man1
.include <bsd.port.mk>
|