1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00
freebsd-ports/archivers/torrentzip/Makefile
Pav Lucistnik b5706294b0 - Fix bug: Torrentzip uses the read permission flag to check if a zip file
needs to be processed.  It does this by first setting all zip files to 0400,
  then as it processes the zip file it changes the permissions to 0200.

PR:		ports/81502
Submitted by:	Scot W. Hetzel <swhetzel@gmail.com> (maintainer)
Obtained from:	author
2005-05-26 20:40:29 +00:00

41 lines
1.0 KiB
Makefile

# New ports collection makefile for: torrentzip
# Date created: May 2, 2005
# Whom: swhetzel@gmail.com
#
# $FreeBSD$
#
PORTNAME= torrentzip
PORTVERSION= 0.2
PORTREVISION= 1
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>