pkgsrc/graphics/lensfun/Makefile
wiz 2f26b4d349 Update to 0.2.5:
This release not only publishes all database additions that were
contributed in the last half of year, but also introduces several
new improvements in the library itself.

    * As always, many new lenses/camera were added to the database
    * Support for cross-platform compilation using cross-mingw32
    (build instructions in README).
    * Some bugs were fixed in the library, related to memory
    allocation. Now lensfun should be valgrind-clean.
    * Fixed a nasty bug in lfDatabase::FindLenses() that would
    always use fuzzy search (even if you would ask for a 100%
    match). Your applications may chease to "find" lenses if they
    relied on this bug. Just add the LF_SEARCH_LOOSE flag as the
    last parameter to return the old behaviour.
    * Fixed another bug in search logic that sometimes would mark
    unappropiate results with very high scores (esp. when little
    search keywords are given). Now search should work much better.
    * New TCA correction algorithm: LF_TCA_MODEL_POLY3 ("poly3" in
    database). This is almost the algorithm used by Hugin except
    the highest-order power (r^4). This should allow users to use
    tca_correct to compute TCA parameters.
    * Fixed the LF_TCA_MODEL_LINEAR - it used 1/k where it was
    expected to use k. This is the 'v' parameter of Hugin TCA model,
    and previously users had to invert v to get k; now they can
    just use v.
    * New lens calibration tutorial, using Hugin.
    * Some SSE & SSE2 support from Klaus Post with runtime CPU
    features detection.
2010-05-02 11:39:31 +00:00

34 lines
1 KiB
Makefile

# $NetBSD: Makefile,v 1.6 2010/05/02 11:39:31 wiz Exp $
#
DISTNAME= lensfun-0.2.5
CATEGORIES= graphics
MASTER_SITES= http://download.berlios.de/lensfun/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://lensfun.berlios.de/
COMMENT= Library for rectifying defects introduced by photographic equipment
LICENSE= gnu-lgpl-v3
BUILD_DEPENDS+= doxygen>=1.6.2:../../devel/doxygen
BUILD_DEPENDS+= makedepend-[0-9]*:../../devel/makedepend
HAS_CONFIGURE= yes
CONFIGURE_ARGS+= --prefix=${PREFIX} --libdir=${PREFIX}/lib
CONFIGURE_ARGS+= --vectorization=
CONFIG_SHELL= ${PYTHONBIN}
MAKE_FILE= GNUmakefile
PYTHON_FOR_BUILD_ONLY= yes
REPLACE_PYTHON= configure
USE_LANGUAGES= c c++
USE_TOOLS+= gmake pkg-config
PKGCONFIG_OVERRIDE= libs/lensfun/lensfun.pc.in
PKG_DESTDIR_SUPPORT= user-destdir
.include "../../devel/glib2/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"