e252836800
By default it detects file size by fseek()'ing to its end and ftell()'ing current position, and these functions take `long offset' as an argument. It is sufficient on 64-bit architectures where sizeof(long) is 8, but not so on 32-bit ones where it is 4. Make it work everywhere by building with -DUSE_FTELLO so it uses fseeko(3) and ftello(3) functions which take `off_t offset'. Tested on: i386, powerpc
42 lines
990 B
Makefile
42 lines
990 B
Makefile
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= torrentcheck
|
|
PORTVERSION= 1.00
|
|
PORTREVISION= 1
|
|
CATEGORIES= net-p2p
|
|
MASTER_SITES= SF/${PORTNAME}
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} readme.txt
|
|
DIST_SUBDIR= ${PORTNAME}
|
|
EXTRACT_ONLY= ${_DISTFILES:N*.txt}
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Command-line torrent viewer and hash checker
|
|
|
|
LICENSE= PD
|
|
|
|
USES= zip
|
|
NO_WRKSUBDIR= yes
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
PORTDOCS= README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/malloc\.h/d' ${WRKSRC}/torrentcheck.c
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${CC} ${CFLAGS} ${CPPFLAGS} -DUSE_FTELLO \
|
|
-o ${PORTNAME} sha1.c torrentcheck.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
# Convert to Unix line-endings and trim useless compile-related information
|
|
${TR} -d \\r < ${_DISTDIR}/readme.txt | ${SED} '126,$$d' > \
|
|
${STAGEDIR}${DOCSDIR}/README
|
|
|
|
.include <bsd.port.mk>
|