mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
fbab09fee3
ftp/jigdo net/amule1 net/amule2 net/apollon net/azureus net/bnbt net/btpeer net/btqueue net/cdonkey net/ctorrent net/dcd net/dclib net/dctc net/dctc-gui net/dctc-gui-qt net/edonkey-gui-gtk net/edonkey-gui-gtk-urlslave net/fcptools net/fidelio net/freenet net/frost net/giftcurs net/giftoxic net/giftui net/gift net/gift-fasttrack net/gift-gnutella net/gift-openft net/gkrellm-gift net/gnewtellium net/gnome-btdownload net/gnunet net/gtkhx net/gtk-gnutella net/gtorrentviewer net/hagelslag net/hx net/i2p net/javadc net/kmldonkey net/ktorrent net/libbt net/liberator net/libfreenet net/libpdtp net/libtorrent net/limewire net/linux-agsatellite net/linux-edonkey-core net/linux-edonkey-server net/linux-jigdo net/linux-overnet-core net/minder net/mldonkey net/mldonkey-core net/mldonkey-core-devel net/mldonkey-devel net/mldonkey-gui net/mldonkey-gui-devel net/mldonkey-perlreactor net/mldonkey-sancho net/mldonkey-serverspy net/mldonkey-urlslave net/mutella net/mute-net net/mute-net-gui net/mute-net-text net/napshare net/nicotine net/opendchub net/peercast net/phex net/pyslsk net/py-bittornado net/py-bittornado-core net/py-bittorrent net/py-bittorrent-core net/py-bittorrent-core-devel net/py-bittorrent-devel net/py-fngrab net/py-kenosis net/py-kenosis-bittorrent net/py-py2play net/p5-pdonkey net/qtella net/qtorrent net/rtorrent net/squall net/torrentflux net/torrentsniff net/trackerbt net/transmission net/valknut net/verlihub net/verlihub-plugins net/xmule net/xnap misc/ed2k misc/edonkey-tool-hash misc/linux-edonkey-tool-recovermet Repocopies by: marcus
42 lines
871 B
Makefile
42 lines
871 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= net-p2p
|
|
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>
|