48277cc63c
SIP v4.19.23 has been released. This is a minor bug-fix release.
61 lines
1.8 KiB
Text
61 lines
1.8 KiB
Text
# $NetBSD: Makefile.common,v 1.6 2020/06/11 14:49:15 adam Exp $
|
|
#
|
|
# used by x11/py-sip/Makefile
|
|
# used by x11/py-sip-qt5/Makefile
|
|
|
|
DISTNAME= sip-4.19.23
|
|
CATEGORIES= x11 devel python
|
|
MASTER_SITES= https://www.riverbankcomputing.com/static/Downloads/sip/${PKGVERSION_NOREV}/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.riverbankcomputing.com/software/sip/
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/../../x11/py-sip/distinfo
|
|
PATCHDIR= ${.CURDIR}/../../x11/py-sip/patches
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake
|
|
|
|
CONFIGURE_ARGS+= -b ${PREFIX}/bin
|
|
CONFIGURE_ARGS+= -d ${PREFIX}/${PYSITELIB}
|
|
CONFIGURE_ARGS+= -e ${PREFIX}/${PYINC}
|
|
CONFIGURE_ARGS+= -v ${PREFIX}/share/sip${PYVERSSUFFIX}
|
|
CONFIGURE_ARGS+= CFLAGS=${CFLAGS:Q}
|
|
CONFIGURE_ARGS+= CXXFLAGS=${CXXFLAGS:Q}
|
|
CONFIGURE_ARGS+= INCDIR=${PREFIX}/include
|
|
CONFIGURE_ARGS+= LIBDIR=${PREFIX}/lib
|
|
|
|
CONFIGURE_ARGS.DragonFly+= -p freebsd-g++
|
|
|
|
PY_PATCHPLIST= yes
|
|
|
|
.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*) || !empty(PKGSRC_COMPILER:Mclang))
|
|
CONFIGURE_ARGS+= -p solaris-g++
|
|
# 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
|
|
CONFIGURE_ARGS+= LFLAGS=${LDFLAGS:Q}
|
|
|
|
# Hack: gcc on sparc64 miscompiles sipgen/parser.c at -O2
|
|
.if ${MACHINE_ARCH} == "sparc64" && !empty(CC_VERSION:Mgcc*)
|
|
BUILDLINK_TRANSFORM+= rm:-O2
|
|
.endif
|
|
|
|
SUBST_CLASSES+= pyversfx
|
|
SUBST_STAGE.pyversfx= pre-configure
|
|
SUBST_FILES.pyversfx= sipgen/sipgen.sbf
|
|
SUBST_VARS.pyversfx= PYVERSSUFFIX
|
|
|