aboutsummaryrefslogtreecommitdiff
path: root/dns/idnkit/Makefile
blob: ab3478ef09f6b20182f6362262222971710b75db (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# New ports collection makefile for:	idnkit
# Date created:		19 March 2003
# Whom:			Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#

PORTNAME=	idnkit
PORTVERSION=	1.0
CATEGORIES=	net
MASTER_SITES=	http://www.nic.ad.jp/ja/idn/idnkit/download/sources/
DISTNAME=	${PORTNAME}-${PORTVERSION}-src

MAINTAINER=	knu@FreeBSD.org
COMMENT=	A library to handle internationalized domain names

LIB_DEPENDS=	iconv.3:${PORTSDIR}/converters/libiconv

USE_LIBTOOL=	yes
GNU_CONFIGURE=	yes
CONFIGURE_ARGS=	--with-libiconv=${LOCALBASE} \
		--enable-runidn

INSTALLS_SHLIB=	yes

MAN1=		idnconv.1 \
		runidn.1
MAN3=		libidnkit.3 \
		libidnkitlite.3
MAN5=		idn.conf.5 \
		idnalias.conf.5 \
		idnrc.5
MANCOMPRESSED=	no

DOCS_EN=	ChangeLog NEWS README
DOCS_JA=	README.ja

post-install:
.if !defined(NOPORTDOCS)
	${MKDIR} ${DOCSDIR}/ja
.for f in ${DOCS_EN}
	${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/
.endfor
.for f in ${DOCS_JA}
	${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/ja/
.endfor
.endif

.include <bsd.port.mk>