This package consists of three classes which handles the encoding

and decoding of data in Bittorrent format. You can also extract
useful informations from .torrent files, create .torrent files
and query the torrent's scrape page to get its statistics.
PHP5 only.

WWW: http://pear.php.net/package/File_Bittorrent2/

PR:		ports/115891
Submitted by:	Zhen REN <bg1tpt at gmail.com>
This commit is contained in:
Martin Wilke 2007-08-28 09:40:17 +00:00
parent 493779bf8b
commit 22077772ef
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=198426
4 changed files with 46 additions and 0 deletions

View file

@ -587,6 +587,7 @@
SUBDIR += pcnfsd
SUBDIR += pdb
SUBDIR += pear-Auth_RADIUS
SUBDIR += pear-File_Bittorrent2
SUBDIR += pear-Net_CDDB
SUBDIR += pear-Net_CheckIP
SUBDIR += pear-Net_DIME

View file

@ -0,0 +1,35 @@
# Ports collection makefile for: pear-File_Bittorrent2
# Date created: 28 Aug 2007
# Whom: Zhen REN <bg1tpt@gmail.com>
#
# $FreeBSD$
#
PORTNAME= File_Bittorrent2
DISTVERSION= 1.0.0RC1
CATEGORIES= net pear
MAINTAINER= bg1tpt@gmail.com
COMMENT= Decode and Encode data in Bittorrent format
BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear
RUN_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear
CATEGORY= File
FILES= Bittorrent2/Decode.php Bittorrent2/Encode.php \
Bittorrent2/Exception.php Bittorrent2/MakeTorrent.php
_EXAMPLESDIR= .
EXAMPLES= example.php example_mktorrent.php \
install-x86-universal-2005.0.iso.torrent \
scrape.php torrentinfo.php
_TESTSDIR= Tests
TESTS= AllTests.php Bug7406.php Bug8085.php FileBittorrent2.php
post-extract:
@ cd ${WRKSRC}/File; ${MV} Bittorrent2 ${WRKSRC}
.include <bsd.port.pre.mk>
.include "${PORTSDIR}/devel/pear/bsd.pear.mk"
.include <bsd.port.post.mk>

View file

@ -0,0 +1,3 @@
MD5 (PEAR/File_Bittorrent2-1.0.0RC1.tgz) = 615b467a202c91b7b151d316d7a73349
SHA256 (PEAR/File_Bittorrent2-1.0.0RC1.tgz) = 9e5d7325f0a7094e763074bc9d7e5eec19204219042727cc6eb944eb8dda7035
SIZE (PEAR/File_Bittorrent2-1.0.0RC1.tgz) = 69940

View file

@ -0,0 +1,7 @@
This package consists of three classes which handles the encoding
and decoding of data in Bittorrent format. You can also extract
useful informations from .torrent files, create .torrent files
and query the torrent's scrape page to get its statistics.
PHP5 only.
WWW: http://pear.php.net/package/File_Bittorrent2/