summaryrefslogtreecommitdiff
path: root/graphics/lensfun/Makefile
blob: 2bdc2ca70cb626a3628d26ccca3b20606dba7cfa (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
57
58
# $NetBSD: Makefile,v 1.24 2013/08/04 19:12:00 adam Exp $

DISTNAME=	lensfun-0.2.7
CATEGORIES=	graphics
MASTER_SITES=	http://download.berlios.de/lensfun/
EXTRACT_SUFX=	.tar.bz2

MAINTAINER=	gdt@NetBSD.org
HOMEPAGE=	http://lensfun.berlios.de/
COMMENT=	Library for rectifying defects introduced by photographic equipment
LICENSE=	gnu-lgpl-v3

# But, the build system looks for makedep, not makedepend.
# Defer, because cmake is coming.
BUILD_DEPENDS+=	makedepend-[0-9]*:../../devel/makedepend

USE_LANGUAGES=		c c++
USE_TOOLS+=		gmake pkg-config gsed
HAS_CONFIGURE=		yes
CONFIGURE_ARGS+=	--libdir=${PREFIX}/lib
CONFIGURE_ARGS+=	--prefix=${PREFIX}
CONFIGURE_ARGS+=	--vectorization=
MAKE_FILE=		GNUmakefile

CONFIG_SHELL=		${PYTHONBIN}
PYTHON_FOR_BUILD_ONLY=	yes
REPLACE_PYTHON=		configure
PKGCONFIG_OVERRIDE=	libs/lensfun/lensfun.pc.in

.include "../../mk/bsd.prefs.mk"

# Starting in 0.2.6, the library is misinstalled as liblensfun.so,
# with no .0 variant.  Manually fix it, because that's easier than
# understanding the build, and upstream is moving to cmake anyway.
post-install:
.if ${OPSYS} == "Darwin"
	${MV} ${DESTDIR}${PREFIX}/lib/liblensfun.dylib \
		${DESTDIR}${PREFIX}/lib/liblensfun.${PKGVERSION_NOREV}.dylib
	${LN} -s liblensfun.${PKGVERSION_NOREV}.dylib \
		${DESTDIR}${PREFIX}/lib/liblensfun.0.dylib
	${LN} -s liblensfun.${PKGVERSION_NOREV}.dylib \
		${DESTDIR}${PREFIX}/lib/liblensfun.dylib
.else
	${MV} ${DESTDIR}${PREFIX}/lib/liblensfun.so \
		${DESTDIR}${PREFIX}/lib/liblensfun.so.${PKGVERSION_NOREV}
	${LN} -s liblensfun.so.${PKGVERSION_NOREV} \
		${DESTDIR}${PREFIX}/lib/liblensfun.so.0
	${LN} -s liblensfun.so.${PKGVERSION_NOREV} \
		${DESTDIR}${PREFIX}/lib/liblensfun.so
.endif

.include "../../devel/glib2/buildlink3.mk"
.include "../../devel/zlib/buildlink3.mk"
# png: for test programs only
.include "../../graphics/png/buildlink3.mk"
.include "../../lang/python/application.mk"
.include "../../mk/bsd.pkg.mk"
# DO NOT DELETE