mirror of
https://git.freebsd.org/ports.git
synced 2025-05-30 18:06:27 -04:00
- Bump PORTREVISION of dependent ports for shlib change Changes: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=10510&version=12355023
37 lines
1,008 B
Makefile
37 lines
1,008 B
Makefile
PORTNAME= libxsd-frontend
|
|
DISTVERSION= 2.1.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= https://www.codesynthesis.com/download/xsd/4.2/
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= W3C XML Schema compiler frontend
|
|
WWW= https://www.codesynthesis.com/projects/libxsd-frontend/
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/GPLv2
|
|
|
|
BUILD_DEPENDS= build2>=0.16.0:devel/build2
|
|
LIB_DEPENDS= libcutl.so:devel/libcutl \
|
|
libxerces-c.so:textproc/xerces-c3
|
|
|
|
USES= compiler:c++2b-lang pkgconfig
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
B_CMD= ${LOCALBASE}/bin/b
|
|
B_ARGS= -V -j ${MAKE_JOBS_NUMBER} -J ${MAKE_JOBS_NUMBER}
|
|
|
|
do-build:
|
|
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${B_CMD} configure ${B_ARGS} \
|
|
config.cxx=${CXX} \
|
|
config.cxx.coptions="${CXXFLAGS}" \
|
|
config.cxx.loptions="${LDFLAGS} ${STRIP}" \
|
|
config.bin.lib=shared \
|
|
config.bin.rpath=${PREFIX}/lib \
|
|
config.install.chroot=${STAGEDIR} \
|
|
config.install.root=${PREFIX}
|
|
do-install:
|
|
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${B_CMD} install ${B_ARGS}
|
|
|
|
.include <bsd.port.mk>
|