From owner-svn-ports-branches@freebsd.org Thu Sep 17 13:55:49 2015 Return-Path: Delivered-To: svn-ports-branches@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 AAF159CE9EF; Thu, 17 Sep 2015 13:55:49 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 7E1F61A5B; Thu, 17 Sep 2015 13:55:49 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8HDtnaV012693; Thu, 17 Sep 2015 13:55:49 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8HDtnN6012692; Thu, 17 Sep 2015 13:55:49 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201509171355.t8HDtnN6012692@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Thu, 17 Sep 2015 13:55:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r397113 - in branches/2015Q3/archivers/xarchiver: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Sep 2015 13:55:49 -0000 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 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