blob: 35aff40d23bd3f7f04191e2800788f7ac49e56bd (
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
|
# Created by: Yuri <yuri@tsoft.com>
# $FreeBSD$
PORTNAME= assimp
PORTVERSION= 3.0
PORTREVISION= 1
CATEGORIES= multimedia
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTNAME}-3.0
DISTNAME= ${PORTNAME}--${PORTVERSION}.1270-source-only
MAINTAINER= yuri@tsoft.com
COMMENT= Library to import various 3D model formats in a uniform manner
LICENSE= BSD
LIB_DEPENDS= boost_filesystem:${PORTSDIR}/devel/boost-libs
USE_ZIP= yes
USES= cmake
USE_PKGCONFIG= build
USE_GCC= 4.6+ # 4.2+ causes compiler warnings
USE_LDCONFIG= yes
MAKE_JOBS_SAFE= yes
# CMAKE_ARGS instructs cmake to skip runtime path removal during install
CMAKE_ARGS+= "-DCMAKE_SKIP_RPATH=ON"
post-patch:
@${REINPLACE_CMD} 's|$${LIB_INSTALL_DIR}/pkgconfig|libdata/pkgconfig|' \
${WRKSRC}/CMakeLists.txt
.include <bsd.port.mk>
|