From owner-svn-ports-head@freebsd.org Mon Dec 18 11:23:15 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 35C84E83F88; Mon, 18 Dec 2017 11:23:15 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E7E3275CEB; Mon, 18 Dec 2017 11:23:14 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBIBNDjx059433; Mon, 18 Dec 2017 11:23:13 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBIBNDJ0059427; Mon, 18 Dec 2017 11:23:13 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201712181123.vBIBNDJ0059427@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 18 Dec 2017 11:23:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456621 - in head/graphics/flphoto: . files X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: in head/graphics/flphoto: . files X-SVN-Commit-Revision: 456621 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Dec 2017 11:23:15 -0000 Author: amdmi3 Date: Mon Dec 18 11:23:13 2017 New Revision: 456621 URL: https://svnweb.freebsd.org/changeset/ports/456621 Log: - Fix LICENSE - Add LICENSE_FILE - Switch to options helpers - Regenerate patches Modified: head/graphics/flphoto/Makefile head/graphics/flphoto/files/patch-Fl_Print_Dialog2.cxx head/graphics/flphoto/files/patch-camera.cxx head/graphics/flphoto/files/patch-espmsg.c head/graphics/flphoto/files/patch-http-md5.cxx head/graphics/flphoto/files/patch-image.cxx Modified: head/graphics/flphoto/Makefile ============================================================================== --- head/graphics/flphoto/Makefile Mon Dec 18 11:22:42 2017 (r456620) +++ head/graphics/flphoto/Makefile Mon Dec 18 11:23:13 2017 (r456621) @@ -11,7 +11,8 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}-source MAINTAINER= ports@FreeBSD.org COMMENT= Basic image management and display program -LICENSE= GPLv2 +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libgphoto2.so:graphics/libgphoto2 \ libfltk.so:x11-toolkits/fltk \ @@ -22,6 +23,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USES= tar:bzip2 USE_XORG= xinerama GNU_CONFIGURE= yes + OPTIONS_DEFINE= DOCS post-patch: @@ -29,17 +31,19 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/flphoto ${STAGEDIR}${PREFIX}/bin/flphoto - ${INSTALL_MAN} ${WRKSRC}/doc/flphoto.man ${STAGEDIR}${MANPREFIX}/man/man1/flphoto.1 + ${INSTALL_MAN} ${WRKSRC}/doc/flphoto.man ${STAGEDIR}${MAN1PREFIX}/man/man1/flphoto.1 ${INSTALL_MAN} ${WRKSRC}/doc/album.man ${STAGEDIR}${MAN5PREFIX}/man/man5/album.5 - @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/doc/*.jpg ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/doc/*.html ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/doc/*.png ${STAGEDIR}${DOCSDIR} .for lang in de en_CA en_GB es fr it nl pt @${MKDIR} ${STAGEDIR}${PREFIX}/share/locale/${lang} ${INSTALL_DATA} ${WRKSRC}/po/${lang}.po \ ${STAGEDIR}${PREFIX}/share/locale/${lang}/flphoto_${lang} .endfor + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/*.jpg ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/*.html ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/*.png ${STAGEDIR}${DOCSDIR} .include Modified: head/graphics/flphoto/files/patch-Fl_Print_Dialog2.cxx ============================================================================== --- head/graphics/flphoto/files/patch-Fl_Print_Dialog2.cxx Mon Dec 18 11:22:42 2017 (r456620) +++ head/graphics/flphoto/files/patch-Fl_Print_Dialog2.cxx Mon Dec 18 11:23:13 2017 (r456621) @@ -1,5 +1,5 @@ ---- ./Fl_Print_Dialog2.cxx.orig 2006-11-26 22:45:08.000000000 +0100 -+++ ./Fl_Print_Dialog2.cxx 2012-12-22 12:41:39.000000000 +0100 +--- Fl_Print_Dialog2.cxx.orig 2006-11-26 21:45:08 UTC ++++ Fl_Print_Dialog2.cxx @@ -56,6 +56,7 @@ #ifdef HAVE_LIBCUPS Modified: head/graphics/flphoto/files/patch-camera.cxx ============================================================================== --- head/graphics/flphoto/files/patch-camera.cxx Mon Dec 18 11:22:42 2017 (r456620) +++ head/graphics/flphoto/files/patch-camera.cxx Mon Dec 18 11:23:13 2017 (r456621) @@ -1,5 +1,5 @@ ---- camera.cxx.orig 2008-09-15 21:32:33.000000000 +0800 -+++ camera.cxx 2008-09-15 21:33:49.000000000 +0800 +--- camera.cxx.orig 2006-07-18 01:11:22 UTC ++++ camera.cxx @@ -42,6 +42,7 @@ # define fl_mkdir(p) mkdir(p) #else @@ -18,7 +18,7 @@ static void progress_update(GPContext *context, unsigned id, float current, void *data); static void purge_thumbnails(void); -@@ -909,7 +909,6 @@ +@@ -909,7 +909,6 @@ static unsigned // O - ID number progress_start(GPContext *context, // I - Current context float target, // I - Target size const char *format, // I - Progress text, if any Modified: head/graphics/flphoto/files/patch-espmsg.c ============================================================================== --- head/graphics/flphoto/files/patch-espmsg.c Mon Dec 18 11:22:42 2017 (r456620) +++ head/graphics/flphoto/files/patch-espmsg.c Mon Dec 18 11:23:13 2017 (r456621) @@ -1,6 +1,6 @@ ---- ./espmsg.c.orig 2005-01-23 04:52:44.000000000 +0100 -+++ ./espmsg.c 2012-12-22 12:41:39.000000000 +0100 -@@ -766,7 +766,7 @@ +--- espmsg.c.orig 2005-01-23 03:52:44 UTC ++++ espmsg.c +@@ -766,7 +766,7 @@ translate_messages(const char *language) *bufptr++ = '&'; *bufptr = '\0'; Modified: head/graphics/flphoto/files/patch-http-md5.cxx ============================================================================== --- head/graphics/flphoto/files/patch-http-md5.cxx Mon Dec 18 11:22:42 2017 (r456620) +++ head/graphics/flphoto/files/patch-http-md5.cxx Mon Dec 18 11:23:13 2017 (r456621) @@ -1,6 +1,6 @@ ---- ./http-md5.cxx.orig 2012-12-22 12:42:25.000000000 +0100 -+++ ./http-md5.cxx 2012-12-22 12:42:28.000000000 +0100 -@@ -120,7 +120,7 @@ +--- http-md5.cxx.orig 2005-01-23 03:52:44 UTC ++++ http-md5.cxx +@@ -120,7 +120,7 @@ HTTP::md5_string(const MD5Byte *sum, /* { int i; /* Looping var */ char *md5ptr; /* Pointer into MD5 string */ Modified: head/graphics/flphoto/files/patch-image.cxx ============================================================================== --- head/graphics/flphoto/files/patch-image.cxx Mon Dec 18 11:22:42 2017 (r456620) +++ head/graphics/flphoto/files/patch-image.cxx Mon Dec 18 11:23:13 2017 (r456621) @@ -1,6 +1,6 @@ ---- image.cxx.orig 2006-11-18 14:56:11.000000000 +0100 -+++ image.cxx 2012-05-09 12:28:28.000000000 +0200 -@@ -92,6 +92,7 @@ +--- image.cxx.orig 2006-11-18 13:56:11 UTC ++++ image.cxx +@@ -92,6 +92,7 @@ extern "C" { #ifdef HAVE_LIBPNG # include