Date: Wed, 20 Jul 2016 19:56:27 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418852 - in head/archivers: . lhasa Message-ID: <201607201956.u6KJuRqI077841@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <cs@innolan.dk> +# $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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607201956.u6KJuRqI077841>