From owner-svn-ports-head@freebsd.org Wed Jul 20 19:56:28 2016 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 50845B9ED7B; Wed, 20 Jul 2016 19:56:28 +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 2E6FE1ECF; Wed, 20 Jul 2016 19:56:28 +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 u6KJuRFk077846; Wed, 20 Jul 2016 19:56:27 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6KJuRqI077841; Wed, 20 Jul 2016 19:56:27 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201607201956.u6KJuRqI077841@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 20 Jul 2016 19:56:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418852 - in head/archivers: . lhasa 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.22 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, 20 Jul 2016 19:56:28 -0000 Author: amdmi3 Date: Wed Jul 20 19:56:26 2016 New Revision: 418852 URL: https://svnweb.freebsd.org/changeset/ports/418852 Log: - Add archivers/lhasa Lhasa is a command line tool and library for parsing LHA archives. Currently it is only possible to decompress archives. Compressing LHA archives may be an enhancement for future versions. The aim is to be compatible with as many different variants of the LHA file format as possible, including LArc (.lzs) and PMarc (.pma). The command line tool aims to be interface-compatible with Unix LHA tool (command line syntax and output), for backwards compatibility with tools that expect particular output. WWW: http://fragglet.github.io/lhasa/ PR: 211177 Submitted by: cs@innolan.dk Added: head/archivers/lhasa/ head/archivers/lhasa/Makefile (contents, props changed) head/archivers/lhasa/distinfo (contents, props changed) head/archivers/lhasa/pkg-descr (contents, props changed) head/archivers/lhasa/pkg-plist (contents, props changed) Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Wed Jul 20 19:56:26 2016 (r418851) +++ head/archivers/Makefile Wed Jul 20 19:56:26 2016 (r418852) @@ -55,6 +55,7 @@ SUBDIR += lcab SUBDIR += lha SUBDIR += lha-ac + SUBDIR += lhasa SUBDIR += libarc SUBDIR += libarchive SUBDIR += libcabinet Added: head/archivers/lhasa/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/lhasa/Makefile Wed Jul 20 19:56:26 2016 (r418852) @@ -0,0 +1,34 @@ +# Created by: Carsten Larsen +# $FreeBSD$ + +PORTNAME= lhasa +PORTVERSION= 0.3.1 +CATEGORIES= archivers +MASTER_SITES= https://soulsphere.org/projects/lhasa/ \ + http://suyai.innolan.net/ + +MAINTAINER= cs@innolan.dk +COMMENT= Command line tool and library for parsing LHA archives + +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= autoreconf pathfix libtool +PATHFIX_MAKEFILEIN= Makefile.am +GNU_CONFIGURE= yes +USE_LDCONFIG= yes +CONFIGURE_ARGS= --disable-silent-rules \ + --program-suffix=sa +INSTALL_TARGET= install-strip + +PORTDOCS= ChangeLog README AUTHORS TODO NEWS + +OPTIONS_DEFINE= DOCS + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} +.for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/ +.endfor + +.include Added: head/archivers/lhasa/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/lhasa/distinfo Wed Jul 20 19:56:26 2016 (r418852) @@ -0,0 +1,3 @@ +TIMESTAMP = 1468768769 +SHA256 (lhasa-0.3.1.tar.gz) = 3fb08e5f85a9b9dd023922896be9157d5fb5c0448424681810aaa2b0558a5f24 +SIZE (lhasa-0.3.1.tar.gz) = 2933084 Added: head/archivers/lhasa/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/lhasa/pkg-descr Wed Jul 20 19:56:26 2016 (r418852) @@ -0,0 +1,12 @@ +Lhasa is a command line tool and library for parsing LHA archives. + +Currently it is only possible to decompress archives. Compressing +LHA archives may be an enhancement for future versions. The aim is +to be compatible with as many different variants of the LHA file +format as possible, including LArc (.lzs) and PMarc (.pma). + +The command line tool aims to be interface-compatible with Unix LHA +tool (command line syntax and output), for backwards compatibility +with tools that expect particular output. + +WWW: http://fragglet.github.io/lhasa/ Added: head/archivers/lhasa/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/lhasa/pkg-plist Wed Jul 20 19:56:26 2016 (r418852) @@ -0,0 +1,12 @@ +bin/lhasa +include/liblhasa-1.0/lha_decoder.h +include/liblhasa-1.0/lha_file_header.h +include/liblhasa-1.0/lha_input_stream.h +include/liblhasa-1.0/lha_reader.h +include/liblhasa-1.0/lhasa.h +lib/liblhasa.a +lib/liblhasa.so +lib/liblhasa.so.0 +lib/liblhasa.so.0.0.0 +libdata/pkgconfig/liblhasa.pc +man/man1/lhasa.1.gz