diff options
author | pav <pav@FreeBSD.org> | 2005-05-04 22:05:27 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-05-04 22:05:27 +0800 |
commit | 211c64a1b175a4f3adcb2d6d441f3e3ab5420e94 (patch) | |
tree | 0da9c2ff38db51dfd2a34a2792cf15a9058d8ca8 /archivers | |
parent | 6d9dc71b0fa541822ac53057df210ec1f8d52736 (diff) | |
download | freebsd-ports-gnome-211c64a1b175a4f3adcb2d6d441f3e3ab5420e94.tar.gz freebsd-ports-gnome-211c64a1b175a4f3adcb2d6d441f3e3ab5420e94.tar.zst freebsd-ports-gnome-211c64a1b175a4f3adcb2d6d441f3e3ab5420e94.zip |
TorrentZip creates byte-for-byte exact zip files on any machine. This allows
people to join a torrent (after they have converted their zip files) with a
particular set of files, thus preventing them from having to download the
entire set of files again. Because of the way TorrentZip creates identical
zips, the file hashes will always match those in the original torrent.
PR: ports/80579
Submitted by: Scot W. Hetzel <swhetzel@gmail.com>
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/Makefile | 1 | ||||
-rw-r--r-- | archivers/torrentzip/Makefile | 39 | ||||
-rw-r--r-- | archivers/torrentzip/distinfo | 2 | ||||
-rw-r--r-- | archivers/torrentzip/pkg-descr | 8 |
4 files changed, 50 insertions, 0 deletions
diff --git a/archivers/Makefile b/archivers/Makefile index 927f27a00ff7..d5bc7a7ce121 100644 --- a/archivers/Makefile +++ b/archivers/Makefile @@ -84,6 +84,7 @@ SUBDIR += stuffit SUBDIR += szip SUBDIR += tardy + SUBDIR += torrentzip SUBDIR += ucl SUBDIR += unace SUBDIR += unadf diff --git a/archivers/torrentzip/Makefile b/archivers/torrentzip/Makefile new file mode 100644 index 000000000000..6587174a4d8f --- /dev/null +++ b/archivers/torrentzip/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: torrentzip +# Date created: May 2, 2005 +# Whom: swhetzel@gmail.com +# +# $FreeBSD$ +# + +PORTNAME= torrentzip +PORTVERSION= 0.2 +CATEGORIES= archivers +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= trrntzip +DISTNAME= trrntzip_v${PORTVERSION:S/.//}_src + +MAINTAINER= swhetzel@gmail.com +COMMENT= Efficient way to prepare zipfiles for BitTorrent + +USE_AUTOMAKE_VER= 19 +AUTOMAKE_ARGS= -a +USE_AUTOHEADER_VER= 259 + +WRKSRC= ${WRKDIR}/trrntzip + +PLIST_FILES= bin/trrntzip +PORTDOCS= README + +run-autotools: + (cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${ACLOCAL} ${ACLOCAL_ARGS}) + (cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTOHEADER} ${AUTOHEADER_ARGS}) + (cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTOCONF} ${AUTOCONF_ARGS}) + (cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTOMAKE} ${AUTOMAKE_ARGS}) + +.if !defined(NOPORTDOCS) +pre-install: + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/README +.endif + +.include <bsd.port.mk> diff --git a/archivers/torrentzip/distinfo b/archivers/torrentzip/distinfo new file mode 100644 index 000000000000..7d63660c8c2e --- /dev/null +++ b/archivers/torrentzip/distinfo @@ -0,0 +1,2 @@ +MD5 (trrntzip_v02_src.tar.gz) = 2635a4042b3cf5611ffdffb4019ec8b7 +SIZE (trrntzip_v02_src.tar.gz) = 46971 diff --git a/archivers/torrentzip/pkg-descr b/archivers/torrentzip/pkg-descr new file mode 100644 index 000000000000..3bf8f12fcaab --- /dev/null +++ b/archivers/torrentzip/pkg-descr @@ -0,0 +1,8 @@ +TorrentZip creates byte-for-byte exact zip files on any machine. This allows +people to join a torrent (after they have converted their zip files) with a +particular set of files, thus preventing them from having to download the +entire set of files again. Because of the way TorrentZip creates identical +zips, the file hashes will always match those in the original torrent. + +WWW: http://trrntzip.sourceforge.net + https://sourceforge.net/projects/trrntzip |