blob: 6caf679ef6349aca84ddc33c2a0770b58327e01d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile,v 1.5 2004/06/03 23:07:29 heinz Exp $
MODNAME= iconv
CATEGORIES+= converters
PKGREVISION= # empty
COMMENT= PHP4 extension for character set conversion
USE_BUILDLINK3= YES
.include "../../www/php4/Makefile.module"
# this is necessary so that PHP would find either the libc iconv
# or use the packaged iconv, as appropriate; using
# --with-iconv=shared,${BUILDLINK_PREFIX.iconv} assumes libiconv exists
# the PHP_ICONV in environment is to make configure find alternative
# libiconv
CONFIGURE_ARGS+= --with-iconv
CONFIGURE_ENV+= PHP_ICONV=${BUILDLINK_PREFIX.iconv:Q}
.include "../../converters/libiconv/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|