summaryrefslogtreecommitdiff
path: root/graphics/lensfun/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/lensfun/Makefile')
-rw-r--r--graphics/lensfun/Makefile29
1 files changed, 20 insertions, 9 deletions
diff --git a/graphics/lensfun/Makefile b/graphics/lensfun/Makefile
index f5f657cb88a..2bdc2ca70cb 100644
--- a/graphics/lensfun/Makefile
+++ b/graphics/lensfun/Makefile
@@ -1,5 +1,4 @@
-# $NetBSD: Makefile,v 1.23 2013/03/01 14:49:53 gdt Exp $
-#
+# $NetBSD: Makefile,v 1.24 2013/08/04 19:12:00 adam Exp $
DISTNAME= lensfun-0.2.7
CATEGORIES= graphics
@@ -15,33 +14,45 @@ LICENSE= gnu-lgpl-v3
# 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+= --prefix=${PREFIX} --libdir=${PREFIX}/lib
+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
-USE_LANGUAGES= c c++
-USE_TOOLS+= gmake pkg-config gsed
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:C/nb[0-9]*//}
- ${LN} -s liblensfun.so.${PKGVERSION:C/nb[0-9]*//} \
+ ${DESTDIR}${PREFIX}/lib/liblensfun.so.${PKGVERSION_NOREV}
+ ${LN} -s liblensfun.so.${PKGVERSION_NOREV} \
${DESTDIR}${PREFIX}/lib/liblensfun.so.0
- ${LN} -s liblensfun.so.${PKGVERSION:C/nb[0-9]*//} \
+ ${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 "../../devel/zlib/buildlink3.mk"
.include "../../lang/python/application.mk"
.include "../../mk/bsd.pkg.mk"
# DO NOT DELETE