mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-17 08:01:36 +00:00
d278463437
- Update WWW [1] Changelog: tthsum-1.2.1 [2009-12-29] (wdoekes) * Minor code and build system cleanup. tthsum-1.2.0 [2009-05-29] (wdoekes) * Changed -p output to print percentages instead of MiB counts. * Base32 decoding errors did not generate a valid error message. (Error code 0 conflicted with SUCCESS.) * Fixed that ctrlesctostr accepted strange BASE36 escape sequences. * Made getopt for Windows more compatible with POSIX getopt. * Fixed that including the tthsum specific texts.c is optional. * Changed some header inclusions to be more compliant with C specs and made the source a bit more strict (ANSI C compatible, C++ compatible). * Added a test suite to detect stupid bugs at compile time. (Like the next bug.) * Endianness was not properly detected on various architectures (see debian bug 517619; thanks Alan Curry <pacman> for reporting). * Standardized UTF8 functions to behave as specified on Windows. * Corrected the need for a double EOF when reading from stdin. * Changed license from GPLv2 to GPLv3. Updated help texts (suggesting gmake on non-Linuxen, for instance). * Removed a bit of overhead on big endian platforms.
26 lines
483 B
Makefile
26 lines
483 B
Makefile
# New ports collection makefile for: tthsum
|
|
# Date created: 25 Sep 2005
|
|
# Whom: Emanuel Haupt <ehaupt@critical.ch>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tthsum
|
|
PORTVERSION= 1.2.1
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://tthsum.devs.nu/pkg/ \
|
|
CRITICAL
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= A command-line utility for generating and checking TTH message digests
|
|
|
|
USE_GMAKE= yes
|
|
MANCOMPRESSED= yes
|
|
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
MAN1= tthsum.1
|
|
PLIST_FILES= bin/tthsum
|
|
|
|
.include <bsd.port.mk>
|