1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-15 03:14:23 +00:00
freebsd-ports/devel/libidn/Makefile
2003-10-08 11:25:45 +00:00

58 lines
1.7 KiB
Makefile

# New ports collection makefile for: libidn
# Date created: 19.06.2003
# Whom: Kirill Ponomarew <ponomarew@oberon.net>
#
# $FreeBSD$
#
PORTNAME= libidn
PORTVERSION= 0.3.2
CATEGORIES= devel
MASTER_SITES= ftp://alpha.gnu.org/pub/gnu/${PORTNAME}/ \
ftp://ftp.funet.fi/pub/mirrors/alpha.gnu.org/gnu/${PORTNAME}/ \
http://josefsson.org/libidn/releases/
MAINTAINER= krion@FreeBSD.org
COMMENT= Internationalized Domain Names command line tool
LIB_DEPENDS= iconv:${PORTSDIR}/converters/libiconv
BUILD_DEPENDS= gengetopt:${PORTSDIR}/devel/gengetopt
USE_LIBTOOL= yes
GNU_CONFIGURE= yes
INSTALLS_SHLIB= yes
USE_GETOPT_LONG= yes
INFO= libidn
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LIBS="-L${LOCALBASE}/lib"
.if exists(${LOCALBASE}/bin/emacs)
PLIST_SUB+= EMACS="" EMACSDIR=share/emacs
.elif exists(${LOCALBASE}/bin/xemacs)
PLIST_SUB+= EMACS="" EMACSDIR=lib/xemacs
.else
PLIST_SUB+= EMACS="@comment " EMACSDIR=""
.endif
MAN1= idn.1
MAN3= idna_to_ascii_4i.3 idna_to_ascii_4z.3 idna_to_ascii_8z.3 \
idna_to_ascii_lz.3 idna_to_unicode_44i.3 idna_to_unicode_4z4z.3 \
idna_to_unicode_8z4z.3 idna_to_unicode_8z8z.3 idna_to_unicode_8zlz.3 \
idna_to_unicode_lzlz.3 punycode_decode.3 punycode_encode.3 \
stringprep.3 stringprep_check_version.3 stringprep_convert.3 \
stringprep_locale_charset.3 stringprep_locale_to_utf8.3 \
stringprep_profile.3 stringprep_ucs4_nfkc_normalize.3 \
stringprep_ucs4_to_utf8.3 stringprep_unichar_to_utf8.3 \
stringprep_utf8_nfkc_normalize.3 stringprep_utf8_to_locale.3 \
stringprep_utf8_to_ucs4.3 stringprep_utf8_to_unichar.3
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for i in README FAQ
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>