blob: c9e3595fe2bde735a1c4887665b4263682711340 (
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
|
# Created by: Pav Lucistnik <pav@FreeBSD.org>
# $FreeBSD$
PORTNAME= libopenraw
PORTVERSION= 0.1.0
CATEGORIES= graphics
MASTER_SITES= http://libopenraw.freedesktop.org/download/
MAINTAINER= jhale@FreeBSD.org
COMMENT= Library for camera RAW files decoding
LICENSE= LGPL3+
LICENSE_FILE= ${WRKSRC}/COPYING.LESSER
BUILD_DEPENDS= ${LOCALBASE}/include/boost/variant.hpp:devel/boost-libs
USES= compiler:c++11-lib jpeg libtool localbase pkgconfig tar:bz2
USE_GNOME= libxml2
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-boost=${LOCALBASE}/include \
--disable-silent-rules
INSTALL_TARGET= install-strip
# Unhide SEEK_SET to fix build with GCC 4.9 (ports/193528).
CXXFLAGS+= -D_GLIBCXX_USE_C99
OPTIONS_DEFINE= GNOME
OPTIONS_DEFAULT= GNOME
OPTIONS_SUB= yes
GNOME_CONFIGURE_ENABLE= gnome
GNOME_USES= gettext-runtime
GNOME_USE= GNOME=glib20,gdkpixbuf2
post-patch:
@${REINPLACE_CMD} -e 's|{libdir}/pkgconfig|{prefix}/libdata/pkgconfig|' ${WRKSRC}/configure
@${REINPLACE_CMD} -e 's|testsuite ||' ${WRKSRC}/Makefile.in
.include <bsd.port.mk>
|