mirror of
https://git.freebsd.org/ports.git
synced 2025-06-18 11:10:32 -04:00
Transmission is a free BitTorrent client written from scratch in C. It aims to
be as efficient as possible. Only the Mac OS X version has a graphical interface yet. Transmission is released under the MIT license. Transmission is still in early development stage. WWW: http://transmission.m0k.org/ -- Let me know if it doesn't work with FreeBSD 4.x for USE_GETOPT_LONG and for anyone that has the different setup of OpenSSL (USE_OPENSSL). FreeBSD 4.x is untest, but FreeBSD 5.x, 6.x and 7.x have been tested. BTW: Using CVS version, because it has good bugs fixes and added FreeBSD support that I sent Eric Petit (the author/developer) a patch.
This commit is contained in:
parent
5c0706e43b
commit
a375cd9af9
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=144858
10 changed files with 187 additions and 0 deletions
53
net-p2p/transmission-cli/Makefile
Normal file
53
net-p2p/transmission-cli/Makefile
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
# New ports collection makefile for: transmission
|
||||||
|
# Date created: 08 October 2005
|
||||||
|
# Whom: Mezz <mezz@FreeBSD.org>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= transmission
|
||||||
|
PORTVERSION= 0.2.20051009
|
||||||
|
CATEGORIES= net
|
||||||
|
#MASTER_SITES= http://download.m0k.org/${PORTNAME}/files/
|
||||||
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
||||||
|
MASTER_SITE_SUBDIR= mezz
|
||||||
|
DISTNAME= Transmission-${PORTVERSION}
|
||||||
|
|
||||||
|
MAINTAINER= mezz@FreeBSD.org
|
||||||
|
COMMENT= A free BitTorrent client written from scratch in C
|
||||||
|
|
||||||
|
BUILD_DEPENDS= jam:${PORTSDIR}/devel/jam
|
||||||
|
|
||||||
|
USE_OPENSSL= yes
|
||||||
|
USE_REINPLACE= yes
|
||||||
|
GNU_CONFIGURE= yes
|
||||||
|
USE_GETOPT_LONG=yes
|
||||||
|
|
||||||
|
EXTRACT_AFTER_ARGS= | ${TAR} -xf - --exclude macosx \
|
||||||
|
--exclude packageOSX.sh
|
||||||
|
|
||||||
|
PLIST_FILES= bin/transmissioncli
|
||||||
|
PORTDOCS= AUTHORS LICENSE NEWS README
|
||||||
|
|
||||||
|
post-patch:
|
||||||
|
@${REINPLACE_CMD} -e 's|-pthread|${PTHREAD_LIBS}|g ; \
|
||||||
|
s|$$LINKLIBS ;|${LDFLAGS} $$LINKLIBS ;|g' \
|
||||||
|
${WRKSRC}/configure
|
||||||
|
@${REINPLACE_CMD} -e 's|-O3||g ; \
|
||||||
|
s|-g |${CFLAGS} ${CPPFLAGS} ${PTHREAD_CFLAGS}|g' \
|
||||||
|
${WRKSRC}/Jamrules
|
||||||
|
|
||||||
|
# jam -dx, it will giving a verbose of build.
|
||||||
|
do-build:
|
||||||
|
@(cd ${BUILD_WRKSRC} ; ${SETENV} ${MAKE_ENV} jam)
|
||||||
|
|
||||||
|
do-install:
|
||||||
|
${INSTALL_PROGRAM} ${WRKSRC}/transmissioncli ${PREFIX}/bin/
|
||||||
|
.ifndef (NOPORTDOCS)
|
||||||
|
@${MKDIR} ${DOCSDIR}
|
||||||
|
.for i in ${PORTDOCS}
|
||||||
|
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
||||||
|
.endfor
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
2
net-p2p/transmission-cli/distinfo
Normal file
2
net-p2p/transmission-cli/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
MD5 (Transmission-0.2.20051009.tar.gz) = 1ca6e92280d6cbf5465344b49eb6e10a
|
||||||
|
SIZE (Transmission-0.2.20051009.tar.gz) = 141614
|
7
net-p2p/transmission-cli/pkg-descr
Normal file
7
net-p2p/transmission-cli/pkg-descr
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
Transmission is a free BitTorrent client written from scratch in C. It aims to
|
||||||
|
be as efficient as possible. Only the Mac OS X version has a graphical
|
||||||
|
interface yet. Transmission is released under the MIT license.
|
||||||
|
|
||||||
|
Transmission is still in early development stage.
|
||||||
|
|
||||||
|
WWW: http://transmission.m0k.org/
|
53
net-p2p/transmission/Makefile
Normal file
53
net-p2p/transmission/Makefile
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
# New ports collection makefile for: transmission
|
||||||
|
# Date created: 08 October 2005
|
||||||
|
# Whom: Mezz <mezz@FreeBSD.org>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= transmission
|
||||||
|
PORTVERSION= 0.2.20051009
|
||||||
|
CATEGORIES= net
|
||||||
|
#MASTER_SITES= http://download.m0k.org/${PORTNAME}/files/
|
||||||
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
||||||
|
MASTER_SITE_SUBDIR= mezz
|
||||||
|
DISTNAME= Transmission-${PORTVERSION}
|
||||||
|
|
||||||
|
MAINTAINER= mezz@FreeBSD.org
|
||||||
|
COMMENT= A free BitTorrent client written from scratch in C
|
||||||
|
|
||||||
|
BUILD_DEPENDS= jam:${PORTSDIR}/devel/jam
|
||||||
|
|
||||||
|
USE_OPENSSL= yes
|
||||||
|
USE_REINPLACE= yes
|
||||||
|
GNU_CONFIGURE= yes
|
||||||
|
USE_GETOPT_LONG=yes
|
||||||
|
|
||||||
|
EXTRACT_AFTER_ARGS= | ${TAR} -xf - --exclude macosx \
|
||||||
|
--exclude packageOSX.sh
|
||||||
|
|
||||||
|
PLIST_FILES= bin/transmissioncli
|
||||||
|
PORTDOCS= AUTHORS LICENSE NEWS README
|
||||||
|
|
||||||
|
post-patch:
|
||||||
|
@${REINPLACE_CMD} -e 's|-pthread|${PTHREAD_LIBS}|g ; \
|
||||||
|
s|$$LINKLIBS ;|${LDFLAGS} $$LINKLIBS ;|g' \
|
||||||
|
${WRKSRC}/configure
|
||||||
|
@${REINPLACE_CMD} -e 's|-O3||g ; \
|
||||||
|
s|-g |${CFLAGS} ${CPPFLAGS} ${PTHREAD_CFLAGS}|g' \
|
||||||
|
${WRKSRC}/Jamrules
|
||||||
|
|
||||||
|
# jam -dx, it will giving a verbose of build.
|
||||||
|
do-build:
|
||||||
|
@(cd ${BUILD_WRKSRC} ; ${SETENV} ${MAKE_ENV} jam)
|
||||||
|
|
||||||
|
do-install:
|
||||||
|
${INSTALL_PROGRAM} ${WRKSRC}/transmissioncli ${PREFIX}/bin/
|
||||||
|
.ifndef (NOPORTDOCS)
|
||||||
|
@${MKDIR} ${DOCSDIR}
|
||||||
|
.for i in ${PORTDOCS}
|
||||||
|
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
||||||
|
.endfor
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
2
net-p2p/transmission/distinfo
Normal file
2
net-p2p/transmission/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
MD5 (Transmission-0.2.20051009.tar.gz) = 1ca6e92280d6cbf5465344b49eb6e10a
|
||||||
|
SIZE (Transmission-0.2.20051009.tar.gz) = 141614
|
7
net-p2p/transmission/pkg-descr
Normal file
7
net-p2p/transmission/pkg-descr
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
Transmission is a free BitTorrent client written from scratch in C. It aims to
|
||||||
|
be as efficient as possible. Only the Mac OS X version has a graphical
|
||||||
|
interface yet. Transmission is released under the MIT license.
|
||||||
|
|
||||||
|
Transmission is still in early development stage.
|
||||||
|
|
||||||
|
WWW: http://transmission.m0k.org/
|
|
@ -854,6 +854,7 @@
|
||||||
SUBDIR += trafshow
|
SUBDIR += trafshow
|
||||||
SUBDIR += trafshow4
|
SUBDIR += trafshow4
|
||||||
SUBDIR += tramp
|
SUBDIR += tramp
|
||||||
|
SUBDIR += transmission
|
||||||
SUBDIR += trickle
|
SUBDIR += trickle
|
||||||
SUBDIR += tridiavnc
|
SUBDIR += tridiavnc
|
||||||
SUBDIR += tsclient
|
SUBDIR += tsclient
|
||||||
|
|
53
net/transmission/Makefile
Normal file
53
net/transmission/Makefile
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
# New ports collection makefile for: transmission
|
||||||
|
# Date created: 08 October 2005
|
||||||
|
# Whom: Mezz <mezz@FreeBSD.org>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= transmission
|
||||||
|
PORTVERSION= 0.2.20051009
|
||||||
|
CATEGORIES= net
|
||||||
|
#MASTER_SITES= http://download.m0k.org/${PORTNAME}/files/
|
||||||
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
||||||
|
MASTER_SITE_SUBDIR= mezz
|
||||||
|
DISTNAME= Transmission-${PORTVERSION}
|
||||||
|
|
||||||
|
MAINTAINER= mezz@FreeBSD.org
|
||||||
|
COMMENT= A free BitTorrent client written from scratch in C
|
||||||
|
|
||||||
|
BUILD_DEPENDS= jam:${PORTSDIR}/devel/jam
|
||||||
|
|
||||||
|
USE_OPENSSL= yes
|
||||||
|
USE_REINPLACE= yes
|
||||||
|
GNU_CONFIGURE= yes
|
||||||
|
USE_GETOPT_LONG=yes
|
||||||
|
|
||||||
|
EXTRACT_AFTER_ARGS= | ${TAR} -xf - --exclude macosx \
|
||||||
|
--exclude packageOSX.sh
|
||||||
|
|
||||||
|
PLIST_FILES= bin/transmissioncli
|
||||||
|
PORTDOCS= AUTHORS LICENSE NEWS README
|
||||||
|
|
||||||
|
post-patch:
|
||||||
|
@${REINPLACE_CMD} -e 's|-pthread|${PTHREAD_LIBS}|g ; \
|
||||||
|
s|$$LINKLIBS ;|${LDFLAGS} $$LINKLIBS ;|g' \
|
||||||
|
${WRKSRC}/configure
|
||||||
|
@${REINPLACE_CMD} -e 's|-O3||g ; \
|
||||||
|
s|-g |${CFLAGS} ${CPPFLAGS} ${PTHREAD_CFLAGS}|g' \
|
||||||
|
${WRKSRC}/Jamrules
|
||||||
|
|
||||||
|
# jam -dx, it will giving a verbose of build.
|
||||||
|
do-build:
|
||||||
|
@(cd ${BUILD_WRKSRC} ; ${SETENV} ${MAKE_ENV} jam)
|
||||||
|
|
||||||
|
do-install:
|
||||||
|
${INSTALL_PROGRAM} ${WRKSRC}/transmissioncli ${PREFIX}/bin/
|
||||||
|
.ifndef (NOPORTDOCS)
|
||||||
|
@${MKDIR} ${DOCSDIR}
|
||||||
|
.for i in ${PORTDOCS}
|
||||||
|
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
||||||
|
.endfor
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
2
net/transmission/distinfo
Normal file
2
net/transmission/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
MD5 (Transmission-0.2.20051009.tar.gz) = 1ca6e92280d6cbf5465344b49eb6e10a
|
||||||
|
SIZE (Transmission-0.2.20051009.tar.gz) = 141614
|
7
net/transmission/pkg-descr
Normal file
7
net/transmission/pkg-descr
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
Transmission is a free BitTorrent client written from scratch in C. It aims to
|
||||||
|
be as efficient as possible. Only the Mac OS X version has a graphical
|
||||||
|
interface yet. Transmission is released under the MIT license.
|
||||||
|
|
||||||
|
Transmission is still in early development stage.
|
||||||
|
|
||||||
|
WWW: http://transmission.m0k.org/
|
Loading…
Add table
Reference in a new issue