some existing COMPILER lines with arch restrictions etc. In the usual case this is now using "COMPILER = base-clang ports-gcc base-gcc" on ports with c++ libraries in WANTLIB. This is basically intended to be a noop on architectures using clang as the system compiler, but help with other architectures where we currently have many ports knocked out due to building with an unsuitable compiler - - some ports require c++11/newer so the GCC version in base that is used on these archirtectures is too old. - some ports have conflicts where an executable is built with one compiler (e.g. gcc from base) but a library dependency is built with a different one (e.g. gcc from ports), resulted in mixing incompatible libraries in the same address space. devel/gmp is intentionally skipped as it's on the path to building gcc - the c++ library there is unused in ports (and not built by default upstream) so intending to disable building gmpcxx in a future commit.
42 lines
927 B
Makefile
42 lines
927 B
Makefile
# $OpenBSD: Makefile,v 1.9 2018/10/24 14:28:11 sthen Exp $
|
|
|
|
COMMENT= simple and small C++ XML parser
|
|
|
|
V= 2.6.2
|
|
REVISION = 3
|
|
DISTNAME= tinyxml_${V:S/./_/g}
|
|
PKGNAME= tinyxml-${V}
|
|
EXTRACT_SUFX= .zip
|
|
|
|
SHARED_LIBS= tinyxml 0.0
|
|
|
|
CATEGORIES= textproc
|
|
|
|
HOMEPAGE= http://www.grinninglizard.com/tinyxml/
|
|
|
|
# zlib license
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
WANTLIB += m ${COMPILER_LIBCXX}
|
|
|
|
COMPILER = base-clang ports-gcc base-gcc
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tinyxml/}
|
|
|
|
WRKDIST= ${WRKDIR}/tinyxml
|
|
NO_TEST= Yes
|
|
|
|
do-build:
|
|
.for i in tinyxml.cpp tinystr.cpp tinyxmlerror.cpp tinyxmlparser.cpp
|
|
cd ${WRKBUILD} && ${CXX} ${CXXFLAGS} -fPIC -o $i.o -c $i
|
|
.endfor
|
|
cd ${WRKBUILD} && ${CXX} ${CXXFLAGS} -shared -o libtinyxml.so.${LIBtinyxml_VERSION} *.cpp.o
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKBUILD}/libtinyxml.so.${LIBtinyxml_VERSION} \
|
|
${PREFIX}/lib
|
|
${INSTALL_DATA} ${WRKBUILD}/tinyxml.h \
|
|
${PREFIX}/include
|
|
|
|
.include <bsd.port.mk>
|