c7ec7c6084
Changelog: 2016 Feb 05 v.16.02.1 + Translation updates for Portuguese. + Bugfix: Resize: locking width/height ratio did not always work. + Bugfix: Slide Show startup sometimes failed. + Bugfix: If an album contains the same image file two or more times, stepping sequentially through the images loops from the Nth instance back to the first. 2016 Feb 01 v.16.02 + New Effects > Cartoon: convert a photo into a cartoon-like drawing. + Add Text and Add Lines now work better with images having transparent areas. + Paint/Clone: optionally paint over transparent areas, instantly or gradually. + Brasero was replaced by growisofs for writing image files to DVD/BlueRay disc. (growisofs underlies Brasero, K3b, and most other disc burning utilities). + Edit Any Metadata: UI improvement to better handle long text strings. + Batch Change Metadata: UI improvement to better handle long text strings. + New batch function: select image files by clicking thumbnails, output a file with a list of the selected files. Useful to feed shell scripts or other apps. + Function key changes: F10 for full screen with menu and panel, F11 without. + Batch Convert: overlay images (e.g. credit lines) can be sized for a constant screen display size, regardless of image size or aspect ratio. + When viewing images sequentially using the [prev/next] button or keyboard arrow keys, adjacent directories can be spanned without user navigation. + An album can be opened from the command line: $ fotoxx -album <album-name> + Bugfix: Retouch Combo: reset button did not reset everything. + Bugfix: Panorama: "file color" button caused image misalignment or crash. 2016 Jan 06 v.16.01.1 + Bugfix: Search Image by tags: uppercase/lowercase failure. + Translation updates for Spanish, Catalan, Italian, Portuguese.
54 lines
1.7 KiB
Makefile
54 lines
1.7 KiB
Makefile
# $NetBSD: Makefile,v 1.53 2016/02/24 17:39:18 ryoon Exp $
|
|
#
|
|
|
|
DISTNAME= fotoxx-16.02.1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.kornelix.com/downloads/tarballs/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.kornelix.com/fotoxx/fotoxx.html
|
|
COMMENT= Program for editing image files from a digital camera
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
BUILD_DEFS+= PKG_SYSCONFBASE
|
|
|
|
PKG_SYSCONFSUBDIR= xdg/menus
|
|
|
|
# XXX work around misc/xdg-utils being completely broken
|
|
XDG_CONFIG_DIRS="${DESTDIR}${PKG_SYSCONFBASE}/xdg"
|
|
MAKE_ENV+= XDG_CONFIG_DIRS="${XDG_CONFIG_DIRS}"
|
|
MAKE_ENV+= XDG_DATA_DIRS="${DESTDIR}${PREFIX}/share"
|
|
|
|
OWN_DIRS+= ${PREFIX}/share/desktop-directories
|
|
|
|
DEPENDS+= xdg-utils-[0-9]*:../../misc/xdg-utils
|
|
DEPENDS+= p5-Image-ExifTool-[0-9]*:../../graphics/p5-Image-ExifTool
|
|
DEPENDS+= dcraw-[0-9]*:../../graphics/dcraw
|
|
DEPENDS+= gimp-ufraw-[0-9]*:../../graphics/gimp-ufraw
|
|
|
|
USE_LANGUAGES= c++
|
|
USE_TOOLS+= pkg-config
|
|
|
|
BUILD_TARGET= fotoxx
|
|
INSTALL_TARGET= install
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
SUBST_CLASSES+= fix-paths
|
|
SUBST_STAGE.fix-paths= pre-configure
|
|
SUBST_MESSAGE.fix-paths= Fixing absolute paths.
|
|
SUBST_FILES.fix-paths= desktop
|
|
SUBST_SED.fix-paths= -e 's,=/usr,=${PREFIX},g'
|
|
SUBST_SED.fix-paths= -e 's,=/usr,=${PREFIX},g'
|
|
|
|
# XXX work around misc/xdg-utils being completely broken
|
|
pre-install:
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${PKG_SYSCONFDIR}
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/desktop-directories
|
|
|
|
.include "../../devel/libexecinfo/buildlink3.mk"
|
|
.include "../../graphics/lcms2/buildlink3.mk"
|
|
.include "../../graphics/tiff/buildlink3.mk"
|
|
.include "../../x11/gtk3/buildlink3.mk"
|
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|