blob: c57d98a39d4fa9fa24c177d609aadb352fdc85bf (
plain)
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
|
PORTNAME= hwloc
PORTVERSION= 2.4.1
CATEGORIES= devel
MASTER_SITES= https://download.open-mpi.org/release/hwloc/v${PORTVERSION:R}/ \
http://icl.cs.utk.edu/open-mpi/software/hwloc/v${PORTVERSION:R}/downloads/
PKGNAMESUFFIX= 2
MAINTAINER= phd_kimberlite@yahoo.co.jp
COMMENT= Portable Hardware Locality software package
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libpciaccess.so:devel/libpciaccess
USES= iconv libtool gnome pathfix pkgconfig tar:bzip2
USE_GNOME= libxml2
CONFLICTS_INSTALL= hwloc-[0-9]*
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-static \
--disable-opencl \
--disable-cuda \
--disable-nvml \
--disable-gl
INSTALL_TARGET= install-strip
TEST_TARGET= check
USE_LDCONFIG= yes
PORTDOCS= *
OPTIONS_DEFINE= CAIRO DEBUG DOCS
OPTIONS_SUB= yes
CAIRO_CONFIGURE_OFF= --disable-cairo --without-x
CAIRO_CONFIGURE_ON= --enable-cairo --with-x
CAIRO_LIB_DEPENDS= libcairo.so:graphics/cairo
CAIRO_USES= xorg
CAIRO_USE= XORG=x11
DEBUG_CONFIGURE_ENABLE= debug # 'lstopo -' prints a lot of debug details when debug is enabled, this is separate from WITH_DEBUG=yes
.include <bsd.port.pre.mk>
.if ${ARCH} != amd64 && ${ARCH} != i386
PLIST_SUB= X86="@comment "
.else
PLIST_SUB= X86=""
.endif
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}/html
${INSTALL_DATA} ${WRKSRC}/doc/doxygen-doc/html/* ${STAGEDIR}${DOCSDIR}/html/
.include <bsd.port.post.mk>
|