1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00
freebsd-ports/misc/ed2k/Makefile
Dirk Meyer 642b2b3f10 This tool takes files and calculates the final 'eEmule' hashes for
then. It also spits out the complete ed2k:// link in the end.

Note: This hashes differ from 'eDonkey/mldonkey' hashes
when the size of a files is a mutiple of 9728000 Bytes.

WWW: http://www.sdalu.com/software/tools.shtml
2005-11-20 12:20:55 +00:00

42 lines
868 B
Makefile

# New ports collection makefile for: ed2k hash tool
# Date created: Mi 9 Nov 2005 06:52:38 CET
# Whom: dirk.meyer@dinoex.sub.org
#
# $FreeBSD$
#
PORTNAME= ed2k
PORTVERSION= 1.4
CATEGORIES= misc
MASTER_SITES= http://www.sdalu.com/download/software/tools/
PKGNAMESUFFIX= -hash${PKGNAMESUFFIX2}
DISTNAME= ed2k.c
EXTRACT_SUFX=
EXTRACT_ONLY=
MAINTAINER= dinoex@FreeBSD.org
COMMENT= Calculates 'eMule' hashes or producing ed2k:// file links
WRKSRC= ${WRKDIR}
MAKEFILE= /dev/null
ALL_TARGET= ed2k
PLIST_FILES= bin/ed2k
.if defined(WITHOUT_OPENSSL)
CPPFLAGS+= -DWITH_RSA
MAKE_ENV+= LDLIBS="${CPPFLAGS}"
.else
USE_OPENSSL= yes
OPENSSLSUFFIX= -openssl
LDLIBS+= -lmd
MAKE_ENV+= LDLIBS="${LDLIBS}"
.endif
post-extract:
${CP} -p ${DISTDIR}/${DIST_SUBDIR}/${DISTNAME} ${WRKSRC}/
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/ed2k ${PREFIX}/bin/
.include <bsd.port.mk>