diff options
author | skrll <skrll@pkgsrc.org> | 2001-02-22 08:18:40 +0000 |
---|---|---|
committer | skrll <skrll@pkgsrc.org> | 2001-02-22 08:18:40 +0000 |
commit | 2e69b8686fb9b4b45e5861eac0b69d8d007ec49b (patch) | |
tree | ed9bea59ca8479773746474ce525035341211bc5 /textproc/icu/Makefile | |
parent | 701b8d94f1c05f0e13ca3f565f3cc7c7a2fb334d (diff) | |
download | pkgsrc-2e69b8686fb9b4b45e5861eac0b69d8d007ec49b.tar.gz |
Fix PLIST problems on little endian machines. Noted my manu@netbsd.org and
bulk build results.
Diffstat (limited to 'textproc/icu/Makefile')
-rw-r--r-- | textproc/icu/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/textproc/icu/Makefile b/textproc/icu/Makefile index a6aad8f0fdc..c16407cbf00 100644 --- a/textproc/icu/Makefile +++ b/textproc/icu/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2001/02/17 17:37:25 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2001/02/22 08:18:40 skrll Exp $ # DISTNAME= icu-1.7 @@ -14,6 +14,9 @@ WRKSRC= ${WRKDIR}/icu/source GNU_CONFIGURE= YES USE_GMAKE= YES +PLIST_INIT= ${PKGDIR}/PLIST +PLIST_SRC= ${WRKSRC}/PLIST + CONFIGURE_ARGS+= --disable-threads CPPFLAGS+= -I${LOCALBASE}/include @@ -26,4 +29,8 @@ pre-configure: test: build cd ${WRKSRC} && ${MAKE_PROGRAM} check +post-install: + @${CP} ${PLIST_INIT} ${PLIST_SRC} + @(cd ${PREFIX} && ls lib/icu/1.7/libicudt17[lb].so >> ${PLIST_SRC}) + .include "../../mk/bsd.pkg.mk" |