aboutsummaryrefslogtreecommitdiffstats
path: root/dns/idnkit/Makefile
blob: d0ac819849022522d456c49cdb32cd595427d563 (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
50
# 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
PORTREVISION=   1
CATEGORIES= dns
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

USE_ICONV=  yes
USE_INC_LIBTOOL_VER=    13
GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --with-libiconv=${LOCALBASE} \
        --enable-runidn \
        --enable-extra-ace

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>