mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
92500c08eb
Based on a patch to upgrade to 14.01.1 by Rainer Hurling, based on a patch to upgrade to 13.03.1 by Rod Person. Rainer's changes: - new mastersite; 2nd mastersites contents has to be updated - unbreak the port - modernize LIB_DEPENDS - support STAGE_DIR - strip bin/fotoxx - correct usage of desktop-file-utils - update URL in pkg-descr - update pkg-plist Committer's changes: - work around fetch(1)/nginx incompatibility making fetch commands with unmerged fix r261263 (and ancestors) unable to fetch from the primary site. - add USES=pkgconfig - add mirror sites - fix installation of manfile - fix paths in desktop file - stop using xdg-desktop-menu for now, breaks the build and does not appear to be required PR: ports/177643 Submitted by: Rod Person, Rainer Hurling
61 lines
1.7 KiB
Makefile
61 lines
1.7 KiB
Makefile
# Created by: Rod Person <rodperson@rodperson.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fotoxx
|
|
PORTVERSION= 14.02.2
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.kornelix.com/uploads/1/3/0/3/13035936/ \
|
|
LOCAL/mandree
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Application to organize and edit image collections
|
|
|
|
LICENSE= GPLv3
|
|
|
|
LIB_DEPENDS= libexecinfo.so:${PORTSDIR}/devel/libexecinfo
|
|
RUN_DEPENDS= xdg-open:${PORTSDIR}/devel/xdg-utils \
|
|
ufraw-batch:${PORTSDIR}/graphics/ufraw \
|
|
exiftool:${PORTSDIR}/graphics/p5-Image-ExifTool \
|
|
dcraw:${PORTSDIR}/graphics/dcraw
|
|
|
|
USES= gmake desktop-file-utils pkgconfig
|
|
USE_GNOME= gtk30
|
|
|
|
ALL_TARGET= fotoxx
|
|
INSTALL_TARGET= install MANDIR=${PREFIX}/man/man1/
|
|
|
|
LDFLAGS+= -O3 -g -Wall -rdynamic -lexecinfo
|
|
|
|
post-patch:
|
|
@# drop xdg-desktop-menu calls, they fail
|
|
${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \
|
|
-e '/xdg-desktop-menu/d' \
|
|
-e '/rm -f -R/d' \
|
|
${WRKSRC}/Makefile
|
|
@# replace obsolete include files
|
|
${REINPLACE_CMD} -e 's|<malloc.h>|<stdlib.h>|' \
|
|
${WRKSRC}/zfuncs.h
|
|
@# fix up icon path in XDG .desktop file
|
|
${REINPLACE_CMD} -e 's}/usr/share/fotoxx}${DATADIR}}' \
|
|
${WRKSRC}/desktop
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/fotoxx
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# These hacks are required because the nginx server at the primary
|
|
# master site and most of our fetch(1) versions do not get along well.
|
|
# This code can be removed once r261263 has been merged from
|
|
# base/head into all ports-supported releases.
|
|
# We depend on cURL unless wget is in $LOCALPATH:
|
|
DISABLE_SIZE= yes
|
|
.if exists(${LOCALBASE}/bin/wget) && !exists(${PREFIX}/bin/curl)
|
|
FETCH_CMD= ${LOCALBASE}/bin/wget -c -nc
|
|
.else
|
|
FETCH_DEPENDS= curl:${PORTSDIR}/ftp/curl
|
|
FETCH_CMD= ${PREFIX}/bin/curl -OL0C -
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|