From owner-svn-ports-head@FreeBSD.ORG Tue Sep 18 20:58:30 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BFD601065678; Tue, 18 Sep 2012 20:58:30 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AA9E88FC14; Tue, 18 Sep 2012 20:58:30 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q8IKwUOI061679; Tue, 18 Sep 2012 20:58:30 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8IKwUaM061673; Tue, 18 Sep 2012 20:58:30 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201209182058.q8IKwUaM061673@svn.freebsd.org> From: Max Brazhnikov Date: Tue, 18 Sep 2012 20:58:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r304465 - in head/graphics: . burplex burplex/files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 18 Sep 2012 20:58:31 -0000 Author: makc Date: Tue Sep 18 20:58:30 2012 New Revision: 304465 URL: http://svn.freebsd.org/changeset/ports/304465 Log: Add new port graphics/burplex: This Qt 4 based program allows to browse directory tree, preview and select images. The list of selected images is stored in a file which can be used for further batch processing. WWW: http://www.burplex.com PR: based on ports/169383 Submitted by: Waitman Gobble Added: head/graphics/burplex/ head/graphics/burplex/Makefile (contents, props changed) head/graphics/burplex/distinfo (contents, props changed) head/graphics/burplex/files/ head/graphics/burplex/files/patch-burplex.pro (contents, props changed) head/graphics/burplex/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Tue Sep 18 20:56:49 2012 (r304464) +++ head/graphics/Makefile Tue Sep 18 20:58:30 2012 (r304465) @@ -69,6 +69,7 @@ SUBDIR += box SUBDIR += boxer SUBDIR += bugle + SUBDIR += burplex SUBDIR += c-a-i-r SUBDIR += cadubi SUBDIR += cairo Added: head/graphics/burplex/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/burplex/Makefile Tue Sep 18 20:58:30 2012 (r304465) @@ -0,0 +1,42 @@ +# $FreeBSD$ + +PORTNAME= burplex +PORTVERSION= 1.0.0 +CATEGORIES= graphics +MASTER_SITES= http://www.burplex.com/ \ + http://www.da3m0n8t3r.com/ + +MAINTAINER= waitman@waitman.net +COMMENT= Preview and select images for batch processing + +LICENSE= BSD + +RUN_DEPENDS= ${LOCALBASE}/bin/dcraw:${PORTSDIR}/graphics/dcraw + +USE_QT4= gui qmake_build uic_build moc_build rcc_build \ + imageformats_run +HAS_CONFIGURE= yes +QMAKE_ARGS= -recursive PREFIX=${PREFIX} +WRKSRC= ${WRKDIR}/${PORTNAME} + +MAN7= burplex.7 +PLIST_FILES= bin/${PORTNAME} + +DESKTOP_ENTRIES= "burplex" "${COMMENT}" "" \ + "burplex" "" "false" + +post-patch: + ${REINPLACE_CMD} -e 's,/usr/local,${LOCALBASE},' \ + ${WRKSRC}/mainwindow.cpp + +do-configure: + cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \ + ${QMAKE} ${QMAKE_ARGS} ${QMAKEFLAGS} + +do-install: + ${MKDIR} ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${MKDIR} ${MANPREFIX}/man/man7 + ${INSTALL_MAN} ${WRKSRC}/burplex.7 ${MANPREFIX}/man/man7 + +.include Added: head/graphics/burplex/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/burplex/distinfo Tue Sep 18 20:58:30 2012 (r304465) @@ -0,0 +1,2 @@ +SHA256 (burplex-1.0.0.tar.gz) = f5c4c7ef578779ab1ea1caf1cf355a63490469765d4710feb1718e18538973e5 +SIZE (burplex-1.0.0.tar.gz) = 105614 Added: head/graphics/burplex/files/patch-burplex.pro ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/burplex/files/patch-burplex.pro Tue Sep 18 20:58:30 2012 (r304465) @@ -0,0 +1,11 @@ +--- ./burplex.pro.orig 2012-09-14 04:03:26.000000000 +0000 ++++ ./burplex.pro 2012-09-14 11:48:42.097704719 +0000 +@@ -4,7 +4,7 @@ + # + #------------------------------------------------- + +-QT += core gui webkit ++QT += core gui + + greaterThan(QT_MAJOR_VERSION, 4): QT += widgets + Added: head/graphics/burplex/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/burplex/pkg-descr Tue Sep 18 20:58:30 2012 (r304465) @@ -0,0 +1,5 @@ +This Qt 4 based program allows to browse directory tree, preview +and select images. The list of selected images is stored in a file +which can be used for further batch processing. + +WWW: http://www.burplex.com