diff options
author | adam <adam@pkgsrc.org> | 2010-11-15 13:06:56 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2010-11-15 13:06:56 +0000 |
commit | ad3d9765f44c3df9f7d9eb1d92e0237ef12d8eb2 (patch) | |
tree | 981121068bfec0bb30093b057714e138085760f3 /x11/py-sip/Makefile | |
parent | 1ac510becc86fa7c18e7d5cb7f7f3baf757f8a9c (diff) | |
download | pkgsrc-ad3d9765f44c3df9f7d9eb1d92e0237ef12d8eb2.tar.gz |
Changes 4.11.2:
* /KeepReference/ can now be applied to global functions and static methods.
* %TypeCode can now be specified in a %MappedType directive.
* Mapped types for templates no longer require the template arguments to be
fully defined.
* Build system changes required by PyQt v4.8 and Qt v4.7.
Diffstat (limited to 'x11/py-sip/Makefile')
-rw-r--r-- | x11/py-sip/Makefile | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/x11/py-sip/Makefile b/x11/py-sip/Makefile index 640f2534336..e5a1b3abab8 100644 --- a/x11/py-sip/Makefile +++ b/x11/py-sip/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.18 2010/09/07 16:35:09 drochner Exp $ -# +# $NetBSD: Makefile,v 1.19 2010/11/15 13:06:56 adam Exp $ -DISTNAME= sip-4.11.1 +DISTNAME= sip-4.11.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= x11 devel python MASTER_SITES= http://www.riverbankcomputing.com/static/Downloads/sip4/ @@ -14,7 +13,6 @@ PKG_DESTDIR_SUPPORT= user-destdir CONFLICTS+= ${PYPKGPREFIX}-qt2-sip-* ${PYPKGPREFIX}-qt3-sip-* - USE_LIBTOOL= yes USE_TOOLS+= gmake USE_LANGUAGES= c c++ @@ -42,12 +40,12 @@ CONFIGURE_ARGS+= LFLAGS_PLUGIN="-bundle -flat_namespace -undefined suppress" .else CONFIGURE_ARGS+= CFLAGS_SHLIB=-fPIC CONFIGURE_ARGS+= CXXFLAGS_SHLIB=-fPIC -.if ${OPSYS} == "SunOS" && !empty(CC_VERSION:Mgcc*) +. if ${OPSYS} == "SunOS" && !empty(CC_VERSION:Mgcc*) # gcc3 uses -mimpure-text to not pass -assert pure-text to the linker CONFIGURE_ARGS+= LFLAGS_SHLIB="-shared -mimpure-text" -.else +. else CONFIGURE_ARGS+= LFLAGS_SHLIB="-shared" -.endif +. endif .endif SUBST_CLASSES+= pyversfx @@ -59,6 +57,6 @@ do-configure: (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} \ ${PYTHONBIN} configure.py ${CONFIGURE_ARGS}) -.include "../../lang/python/extension.mk" .include "../../lang/python/application.mk" +.include "../../lang/python/extension.mk" .include "../../mk/bsd.pkg.mk" |