svn commit: r397113 - in branches/2015Q3/archivers/xarchiver: . files

Danilo Egea Gondolfo danilo at FreeBSD.org
Thu Sep 17 13:55:49 UTC 2015


Author: danilo
Date: Thu Sep 17 13:55:48 2015
New Revision: 397113
URL: https://svnweb.freebsd.org/changeset/ports/397113

Log:
  MFH: r397093
  
  - Replace '--touch' option with '-m'
  - Fix '--use-compress-program' usage with bsdtar where needed
  - Improve LZMA detection
  - Add missing dependency to zipinfo (required to view contents of ZIP archives)
  - Add ARJ and LZO options
  - Sort USES
  while here
  - Add RAR option
  
  PR:		203103
  Submitted by:	Andriy Voskoboinyk <s3erios at gmail.com>
  Approved by:	ports-secteam (feld)

Added:
  branches/2015Q3/archivers/xarchiver/files/
     - copied from r397093, head/archivers/xarchiver/files/
Modified:
  branches/2015Q3/archivers/xarchiver/Makefile
Directory Properties:
  branches/2015Q3/   (props changed)

Modified: branches/2015Q3/archivers/xarchiver/Makefile
==============================================================================
--- branches/2015Q3/archivers/xarchiver/Makefile	Thu Sep 17 13:48:54 2015	(r397112)
+++ branches/2015Q3/archivers/xarchiver/Makefile	Thu Sep 17 13:55:48 2015	(r397113)
@@ -3,6 +3,7 @@
 
 PORTNAME=	xarchiver
 PORTVERSION=	0.5.4
+PORTREVISION=	1
 CATEGORIES=	archivers
 MASTER_SITES=	SF/${PORTNAME:tl}
 
@@ -13,16 +14,29 @@ LICENSE=	GPLv2
 
 RUN_DEPENDS=	xdg-open:${PORTSDIR}/devel/xdg-utils \
 		7zr:${PORTSDIR}/archivers/p7zip \
-		zip:${PORTSDIR}/archivers/zip
+		zip:${PORTSDIR}/archivers/zip \
+		zipinfo:${PORTSDIR}/archivers/unzip
 
-USES=		tar:bzip2 gmake pkgconfig desktop-file-utils
+USES=		desktop-file-utils gmake pkgconfig tar:bzip2
 USE_GNOME=	glib20 gtk20 intltool
 GNU_CONFIGURE=	yes
 INSTALLS_ICONS=	yes
 
 OPTIONS_DEFINE=	DOCS NLS
+OPTIONS_GROUP=	FORMATS
+OPTIONS_GROUP_FORMATS=	ARJ LZO RAR
 OPTIONS_SUB=	yes
 
+FORMATS_DESC=	Additional compression formats support
+ARJ_DESC=	ARJ compression support
+LZO_DESC=	LZO compression support
+RAR_DESC=	RAR compression support
+
+ARJ_RUN_DEPENDS=	arj:${PORTSDIR}/archivers/arj
+LZO_RUN_DEPENDS=	lzop:${PORTSDIR}/archivers/lzop
+RAR_RUN_DEPENDS=	unrar:${PORTSDIR}/archivers/unrar \
+			rar:${PORTSDIR}/archivers/rar
+
 NLS_USES=	gettext
 NLS_CPPFLAGS+=	-I${LOCALBASE}/include
 NLS_LDFLAGS+=	-L${LOCALBASE}/lib


More information about the svn-ports-all mailing list