Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Sep 2012 20:58:30 +0000 (UTC)
From:      Max Brazhnikov <makc@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r304465 - in head/graphics: . burplex burplex/files
Message-ID:  <201209182058.q8IKwUaM061673@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <uzimac at da3m0n8t3r.com>

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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209182058.q8IKwUaM061673>