aboutsummaryrefslogtreecommitdiffstats
path: root/japanese/jstrings/Makefile
blob: f9fc51d4180d86a0b3055fe1d0d78cc3d9c88030 (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
34
# Created by: ryo
# $FreeBSD$

PORTNAME=   jstrings
PORTVERSION=    0.6
CATEGORIES= japanese
MASTER_SITES=   http://openmya.hacker.jp/hasegawa/jstrings/ \
        http://devel.aquahill.net/ports/jstrings/ \
        http://www.kokone.to/~ryo/lib/ports/jstrings/

MAINTAINER= ryo@aquahill.net
COMMENT=    Japanese enhancement of strings(1) command

EXTRACT_DEPENDS=nkf:${PORTSDIR}/japanese/nkf

PLIST_FILES=    bin/jstrings man/ja/man1/jstrings.1.gz

USES=       gmake lha
MAKEFILE=   makefile.gcc
MAKE_ARGS=  CC="${CC}" CFLAGS="${CFLAGS}" BINDIR="${PREFIX}/bin"
ALL_TARGET= jstrings

post-extract:
    @${ECHO_MSG} "===>  Converting Kanji code and deleting CR for ${DISTNAME}"
    @(cd ${WRKSRC}; \
    for i in *.c *.h *.txt makefile.* ; \
    do \
        nkf -de $$i > $$i.tmp && ${MV} $$i.tmp $$i; \
    done)

post-install:
    ${INSTALL_MAN} ${FILESDIR}/jstrings.1 ${STAGEDIR}${PREFIX}/man/ja/man1

.include <bsd.port.mk>