mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
c10f314307
PR: ports/135398 Tested by: 2 -exp runs by pav Approved by: portmgr (pav)
39 lines
868 B
Makefile
39 lines
868 B
Makefile
# New ports collection makefile for: kcode
|
|
# Date created: 26 October 2004
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= kcode
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= japanese
|
|
MASTER_SITES= http://www.irori.org/dl/tool/
|
|
DISTFILES= ${PORTNAME}-${PORTVERSION}.gz
|
|
EXTRACT_ONLY= ${DISTFILES}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A handy utility to show codepoint information of given characters
|
|
|
|
USE_PERL5= yes
|
|
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
|
|
MANLANG= ja
|
|
MAN1= kcode.1
|
|
MANCOMPRESSED= no
|
|
|
|
RUN_DEPENDS= ${SITE_PERL}/Jcode.pm:${PORTSDIR}/japanese/p5-Jcode
|
|
|
|
do-extract:
|
|
${MKDIR} ${WRKSRC}
|
|
${GZCAT} ${DISTDIR}/${DIST_SUBDIR}/${DISTFILES} > ${WRKSRC}/kcode
|
|
pod2man ${WRKSRC}/kcode ${WRKSRC}/kcode.1
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/kcode ${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/kcode.1 ${MAN1PREFIX}/man/ja/man1/
|
|
|
|
.include <bsd.port.mk>
|