aboutsummaryrefslogtreecommitdiffstats
path: root/dns/idnkit/Makefile
blob: eb63b3346b324d7c29ff56acc29924d4a347a9e6 (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
51
52
53
54
55
# 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=   3
CATEGORIES= dns
MASTER_SITES=   http://www.nic.ad.jp/ja/idn/idnkit/download/sources/
DISTNAME=   ${PORTNAME}-${PORTVERSION}-src

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

USE_AUTOTOOLS=  libtool
USES=       iconv
GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --with-libiconv=${LOCALBASE} \
        --enable-runidn \
        --enable-extra-ace

USE_LDCONFIG=   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-patch:
    @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \
        's|mode=link $$(LD)|mode=link $$(CC)|'

post-install:
    ${INSTALL_DATA} ${WRKSRC}/tools/runidn/libidnkitres.la ${PREFIX}/lib
.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>