95d52e52fb
Reset maintainership of my ports to ports@FreeBSD.org so others can step in to help where I haven't been able to find the time.
31 lines
780 B
Makefile
31 lines
780 B
Makefile
# Created by: Pietro Cerutti <gahr@FreeBSD.org>
|
|
|
|
PORTNAME= ogdf
|
|
PORTVERSION= 2020.02
|
|
CATEGORIES= math
|
|
MASTER_SITES= https://ogdf.uos.de/wp-content/uploads/2020/02/
|
|
DISTNAME= ${PORTNAME}.v${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= C++ class library for the automatic layout of diagrams
|
|
|
|
LICENSE= GPLv2 GPLv3
|
|
LICENSE_COMB= dual
|
|
LICENSE_FILE_GPLv2= ${WRKSRC}/LICENSE_GPL_v2.txt
|
|
LICENSE_FILE_GPLv3= ${WRKSRC}/LICENSE_GPL_v3.txt
|
|
|
|
CONFLICTS_INSTALL= CoinMP-[0-9]*
|
|
|
|
USES= cmake compiler:c++11-lang zip
|
|
USE_LDCONFIG= yes
|
|
CMAKE_ARGS= -DBUILD_SHARED_LIBS:BOOL=ON \
|
|
-DEXAMPLES_INSTALL_DIR:PATH=${EXAMPLESDIR_REL}
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME:tu}
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
|
|
post-install:
|
|
@${RMDIR} ${STAGEDIR}${PREFIX}/include/ogdf/lib/minisat/doc
|
|
|
|
.include <bsd.port.mk>
|