020e00811a
v4.9.1 23rd October 2009 - A bug fix release. v4.9 26th September 2009 - Added support for __iter__ and __next__. (__next__ is used for Python v2 as well as v3.) - Added the %API directive. - Added the /API/ annotation. - Added sipIsAPIEnabled() to the C API. - Added sip.getapi() and sip.setapi() to the Python API. - Added sip.ispyowned() to the Python API. - Mapped types can now act as a namespace for enums and static methods. - The /Array/ annotation can now be applied to classes and mapped types. - The /NoArgParser/ annotation can now be applied to methods as well as functions. - Added the --arch flag to configure.py to specify which MacOS/X architectures are built. - SIP is now also licensed under the GPL v2 and v3.
64 lines
1.8 KiB
Makefile
64 lines
1.8 KiB
Makefile
# $NetBSD: Makefile,v 1.9 2009/11/17 15:21:21 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= sip-4.9.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= x11 devel python
|
|
MASTER_SITES= http://www.riverbankcomputing.com/static/Downloads/sip4/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.riverbankcomputing.com/software/sip/intro
|
|
COMMENT= Tool to create Python bindings for C++ libraries
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
CONFLICTS+= ${PYPKGPREFIX}-qt2-sip-* ${PYPKGPREFIX}-qt3-sip-*
|
|
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake
|
|
USE_LANGUAGES= c c++
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
CONFIGURE_ARGS+= -b ${PREFIX}/bin
|
|
CONFIGURE_ARGS+= -d ${PREFIX}/${PYSITELIB}
|
|
CONFIGURE_ARGS+= -e ${PREFIX}/${PYINC}
|
|
CONFIGURE_ARGS+= -v ${PREFIX}/share/sip${PYVERSSUFFIX}
|
|
.if ${OPSYS} == "DragonFly"
|
|
CONFIGURE_ARGS+= -p freebsd-g++
|
|
.endif
|
|
CONFIGURE_ARGS+= INCDIR=${PREFIX}/include
|
|
CONFIGURE_ARGS+= LIBDIR=${PREFIX}/lib
|
|
|
|
PY_PATCHPLIST= yes
|
|
PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX:Q}
|
|
|
|
.include "../../mk/compiler.mk"
|
|
|
|
.if ${OPSYS} == "Darwin"
|
|
CONFIGURE_ARGS+= CFLAGS_SHLIB=-fno-common
|
|
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*)
|
|
# gcc3 uses -mimpure-text to not pass -assert pure-text to the linker
|
|
CONFIGURE_ARGS+= LFLAGS_SHLIB="-shared -mimpure-text"
|
|
.else
|
|
CONFIGURE_ARGS+= LFLAGS_SHLIB="-shared"
|
|
.endif
|
|
.endif
|
|
|
|
SUBST_CLASSES+= pyversfx
|
|
SUBST_STAGE.pyversfx= pre-configure
|
|
SUBST_FILES.pyversfx= sipgen/sipgen.sbf
|
|
SUBST_SED.pyversfx= -e "s|@PYVERSSUFFIX@|${PYVERSSUFFIX}|g"
|
|
|
|
do-configure:
|
|
(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} \
|
|
${PYTHONBIN} configure.py ${CONFIGURE_ARGS})
|
|
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|