aboutsummaryrefslogtreecommitdiff
path: root/science/openbabel/Makefile
blob: 8ddb1759df24f9e760512acbbe6a8ca918283f30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Created by: ijliao
# $FreeBSD$

PORTNAME=	openbabel
PORTVERSION=	2.3.2
CATEGORIES=	science
MASTER_SITES=	SF

MAINTAINER=	makc@FreeBSD.org
COMMENT=	Chemistry file translation program

BUILD_DEPENDS=	${LOCALBASE}/include/eigen3/Eigen/Eigen:${PORTSDIR}/math/eigen3

CONFLICTS_INSTALL=	babel-*

USE_GNOME=	libxml2
USES=		cmake:outsource
CMAKE_ARGS=	-DBUILD_GUI=off
USE_LDCONFIG=	yes

MAN1=		babel.1 \
		obabel.1 \
		obchiral.1 \
		obconformer.1 \
		obenergy.1 \
		obfit.1 \
		obgen.1 \
		obgrep.1 \
		obgui.1 \
		obminimize.1 \
		obprobe.1 \
		obprop.1 \
		obrotamer.1 \
		obrotate.1 \
		obspectrophore.1 \
		roundtrip.1

PLIST_SUB=	VERSION="${PORTVERSION}"

OPTIONS_DEFINE=	CAIRO PYTHON
OPTIONS_DEFAULT=	PYTHON
CAIRO_DESC=	PNG support via cairo library

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MCAIRO}
LIB_DEPENDS+=	cairo:${PORTSDIR}/graphics/cairo
PLIST_SUB+=	CAIRO=""
.else
PLIST_SUB+=	CAIRO="@comment "
.endif

.if ${PORT_OPTIONS:MPYTHON}
USE_PYTHON=	yes
CMAKE_ARGS+=	-DPYTHON_BINDINGS=on
PLIST_SUB+=	PYTHON=""
.else
PLIST_SUB+=	PYTHON="@comment "
.endif

post-patch:
.if !${PORT_OPTIONS:MCAIRO}
	${REINPLACE_CMD} -e '/find_package(Cairo)/d' \
		${WRKSRC}/CMakeLists.txt
.endif
	${REINPLACE_CMD} -e '/pkgconfig/s,$${LIB_INSTALL_DIR},libdata,' \
		${WRKSRC}/CMakeLists.txt
	${REINPLACE_CMD} -e 's,share/man,man,' \
		${WRKSRC}/doc/CMakeLists.txt

.include <bsd.port.mk>