diff options
author | obache <obache> | 2007-03-31 15:36:57 +0000 |
---|---|---|
committer | obache <obache> | 2007-03-31 15:36:57 +0000 |
commit | 48954528cdf4beae90a28555734e045d787ebcff (patch) | |
tree | 0a2e80dc7644496a80bffcb23a8ed7ffcdcdb52b /textproc/icu/Makefile | |
parent | 6dd802fa483bd1834918498e333c3219b5b65957 (diff) | |
download | pkgsrc-48954528cdf4beae90a28555734e045d787ebcff.tar.gz |
Use .so and not .dylib in PLIST other than Darwin.
Bump PKGREVISION for the PLIST change.
Diffstat (limited to 'textproc/icu/Makefile')
-rw-r--r-- | textproc/icu/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/textproc/icu/Makefile b/textproc/icu/Makefile index 57ad73230aa..0c8d83341d3 100644 --- a/textproc/icu/Makefile +++ b/textproc/icu/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.52 2007/03/23 12:51:13 recht Exp $ +# $NetBSD: Makefile,v 1.53 2007/03/31 15:36:57 obache Exp $ # DISTNAME= icu4c-3_6-src PKGNAME= icu-3.6 +PKGREVISION= 1 CATEGORIES= textproc MASTER_SITES= ftp://ftp.software.ibm.com/software/globalization/icu/${PKGVERSION}/ EXTRACT_SUFX= .tgz @@ -49,4 +50,11 @@ PLIST_SUBST+= MH_NAME=mh-darwin PLIST_SUBST+= MH_NAME=mh-unknown .endif +.if ${OPSYS} == "Darwin" +SO_SUFFIX=dylib +.else +SO_SUFFIX=so +.endif +PLIST_SUBST+= SO_SUFFIX=${SO_SUFFIX} + .include "../../mk/bsd.pkg.mk" |