From owner-svn-ports-head@freebsd.org Wed Dec 2 15:43:56 2015 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 1EB0CA3E78D; Wed, 2 Dec 2015 15:43:56 +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 D5496105C; Wed, 2 Dec 2015 15:43:55 +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 tB2FhtPu025910; Wed, 2 Dec 2015 15:43:55 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB2Fhsei025906; Wed, 2 Dec 2015 15:43:54 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201512021543.tB2Fhsei025906@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 2 Dec 2015 15:43:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402832 - in head/archivers: . innoextract X-SVN-Group: ports-head 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.20 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: Wed, 02 Dec 2015 15:43:56 -0000 Author: amdmi3 Date: Wed Dec 2 15:43:54 2015 New Revision: 402832 URL: https://svnweb.freebsd.org/changeset/ports/402832 Log: Inno Setup is a tool to create installers for Microsoft Windows applications. innoextract allows to extract such installers under non-windows systems without running the actual installer using Wine. WWW: http://constexpr.org/innoextract/ PR: 204811 Submitted by: lifanov@mail.lifanov.com Added: head/archivers/innoextract/ head/archivers/innoextract/Makefile (contents, props changed) head/archivers/innoextract/distinfo (contents, props changed) head/archivers/innoextract/pkg-descr (contents, props changed) Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Wed Dec 2 15:40:07 2015 (r402831) +++ head/archivers/Makefile Wed Dec 2 15:43:54 2015 (r402832) @@ -47,6 +47,7 @@ SUBDIR += hs-zlib SUBDIR += hs-zlib-bindings SUBDIR += hs-zlib-enum + SUBDIR += innoextract SUBDIR += javatar SUBDIR += jzip.org SUBDIR += jzlib Added: head/archivers/innoextract/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/innoextract/Makefile Wed Dec 2 15:43:54 2015 (r402832) @@ -0,0 +1,26 @@ +# Created by: Nikolai Lifanov +# $FreeBSD$ + +PORTNAME= innoextract +PORTVERSION= 1.5 +CATEGORIES= archivers +MASTER_SITES= http://constexpr.org/innoextract/files/ + +MAINTAINER= lifanov@mail.lifanov.com +COMMENT= Program to extract Inno Setup files + +LICENSE= ZLIB +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libboost_iostreams.so:${PORTSDIR}/devel/boost-libs \ + libboost_filesystem.so:${PORTSDIR}/devel/boost-libs \ + libboost_system.so:${PORTSDIR}/devel/boost-libs \ + libboost_program_options.so:${PORTSDIR}/devel/boost-libs + +USES= cmake iconv +CMAKE_ARGS= -DCMAKE_INSTALL_MANDIR=man + +PLIST_FILES= bin/innoextract \ + man/man1/innoextract.1.gz + +.include Added: head/archivers/innoextract/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/innoextract/distinfo Wed Dec 2 15:43:54 2015 (r402832) @@ -0,0 +1,2 @@ +SHA256 (innoextract-1.5.tar.gz) = f2594e992ccf2859455475794803b29a67393fadb69d4df1eec34c451ffa48cf +SIZE (innoextract-1.5.tar.gz) = 179582 Added: head/archivers/innoextract/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/innoextract/pkg-descr Wed Dec 2 15:43:54 2015 (r402832) @@ -0,0 +1,5 @@ +Inno Setup is a tool to create installers for Microsoft Windows applications. +innoextract allows to extract such installers under non-windows systems without +running the actual installer using Wine. + +WWW: http://constexpr.org/innoextract/