Commit graph

67 commits

Author SHA1 Message Date
Florent Thoumie
e0dbf7bb03 - Backport upstream patch to fix high cpu load issues.
Submitted by:	Nicholas Smith
Obtained from:	http://libtorrent.rakshasa.no/ticket/2661
2012-01-29 11:26:25 +00:00
Doug Barton
2b1dacc826 Remove more tags from pkg-descr files fo the form:
- Name
em@i.l

or variations thereof. While I'm here also fix some whitespace and other
formatting errors, including moving WWW: to the last line in the file.
2011-10-24 04:17:37 +00:00
Dmitry Marakasov
6f6fbe4bdf - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:		157936
Submitted by:	myself
Exp-runs by:	pav
Approved by:	pav
2011-09-23 22:26:39 +00:00
Florent Thoumie
4b0cdeccb5 Update net-p2p/rtorrent to 0.8.9.
PR:		ports/158123
Submitted by:	Jin-Sih Lin <linpct@gmail.com>
2011-07-18 14:09:25 +00:00
Florent Thoumie
09d53e77d5 Add local patch to fix rtorrent's spinlock implementation.
Submitted by:	kan
2011-06-09 14:38:15 +00:00
Florent Thoumie
6894adc5bf rtorrent: enabled ipv6 by default, fix with ncurses 5.8, fix link.
- Enable IPV6 in OPTIONS by default. [1]
- Remove outdated link in pkg-message. [1]
- Add local patch to fix rtorrent with ncurses 5.8. [2,3]

PR:		ports/155609 [1], ports/155318 [2], ports/156294 [3]
Submitted by:	tom@ [1],
		Yamagi Burmeister <yamagi@yamagi.org> [2],
		freebsd@nagilum.org [3]
2011-05-07 16:29:46 +00:00
Martin Wilke
05ccc1b6af - Update to 0.8.7
PR:		153720
Submitted by:	Jui-Nan Lin <jnlin@csie.nctu.edu.tw>
Approved by:	flz via irc (maintainer)
Feature safe:	yes
2011-02-06 08:14:48 +00:00
Peter Pentchev
29863648e3 Chase the ftp/curl shlib version bump. 2010-04-03 10:44:36 +00:00
Florent Thoumie
6562dabbb1 Fix dependency after libtorrent update.
Feature safe:	yes
2010-02-23 13:03:36 +00:00
Florent Thoumie
8f39965ca0 Update net-p2p/rtorrent to 0.8.6.
PR:		ports/142888 [1], ports/143032 [2]
Submitted by:	soulcatcher <soulcatcher13@gmail.com> [1]
		Maxim Samsonov <xors@mne.ru> [2]
2010-01-23 00:25:21 +00:00
Florent Thoumie
80d89d86ca Update net-p2p/rtorrent to 0.8.5. 2009-10-29 13:29:47 +00:00
Florent Thoumie
d05a17a69d Remove stale patch that's causing issues with scgi_port option. 2009-07-17 11:03:00 +00:00
Florent Thoumie
bb10baa0aa Update net-p2p/rtorrent to 0.8.4. 2009-07-15 13:39:39 +00:00
Chin-San Huang
2bfb9985f0 Bump the version of the xmlrpc-c-devel shared library 2009-04-11 07:15:30 +00:00
Chin-San Huang
e169591cc8 Bump the version of the xmlrpc-c-devel shared library
- Bump PORTREVISION of all dependent ports.
2009-04-10 18:19:43 +00:00
Peter Pentchev
c189a6b2da Bump the version of the curl shared library after the ftp/curl update
to 7.19.2.
Bump PORTREVISION, even on the ports that do not have a versioned
dependency, since the binaries will most probably still stop working.
2009-01-23 15:43:14 +00:00
Florent Thoumie
6e28f35c2c net-p2p/rtorrent needs recent gcc (4.2+). 2008-12-11 09:27:52 +00:00
Florent Thoumie
8f7680d4e0 Update net-p2p/rtorrent to 0.8.2. 2008-12-09 11:31:49 +00:00
Florent Thoumie
6d3eeda668 Only add extra patches if they are present.
PR:		ports/128775 [1], ports/128807 [2], ports/128921 [3]
Submitted by:	Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net> [1]
		Jimmie James <jimmiejaz@gmail.com> [2]
		Falko Richter <xendorphin@gmail.com> [3]
2008-11-16 22:22:06 +00:00
Florent Thoumie
abc94c1a56 - Use net/xmlrpc-c-devel instead of net/xmlrpc-c.
- Rename patch as it won't apply against new unstable version.
2008-11-10 12:09:38 +00:00
Rong-En Fan
741aa71483 Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.
Specifically, newer autoconf (> 2.13) has different semantic of the
configure target. In short, one should use --build=CONFIGURE_TARGET
instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning
and the old semantic may be removed in later autoconf releases.

To workaround this issue, many ports hack the CONFIGURE_TARGET variable
so that it contains the ``--build='' prefix.

To solve this issue, under the fact that some ports still have
configure script generated by the old autoconf, we use runtime detection
in the do-configure target so that the proper argument can be used.

Changes to Mk/*:
 - Add runtime detection magic in bsd.port.mk
 - Remove CONFIGURE_TARGET hack in various bsd.*.mk
 - USE_GNOME=gnometarget is now an no-op

Changes to individual ports, other than removing the CONFIGURE_TARGET hack:

= pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables)
  - comms/gnuradio
  - science/abinit
  - science/elmer-fem
  - science/elmer-matc
  - science/elmer-meshgen2d
  - science/elmerfront
  - science/elmerpost

= use x86_64 as ARCH
  - devel/g-wrap

= other changes
  - print/magicfilter
    GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf

Total # of ports modified:  1,027
Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes)

PR:		126524 (obsoletes 52917)
Submitted by:	rafan
Tested on:	two pointyhat 7-amd64 exp runs (by pav)
Approved by:	portmgr (pav)
2008-08-21 06:18:49 +00:00
Pav Lucistnik
efa63f6ba4 - Remove USE_GCC where it can be satisfied with base compiler on following
FreeBSD versions: 5.3 and up, 6.x, 7.x, 8-CURRENT
2008-07-25 14:34:52 +00:00
Florent Thoumie
c3a8fc3370 Don't install documentation if NOPORTDOCS is defined.
Reported by:	itetcu
2008-06-18 13:56:39 +00:00
Florent Thoumie
6378d6452f - Don't override USE_GCC in master port.
- Style fixes.

PR:		ports/123780
Submitted by:	Gea-Suan Lin
2008-05-19 13:06:13 +00:00
Pav Lucistnik
9fc1c4fe89 - Remove USE_GETOPT_LONG which is a no-op since March 2007 2008-03-20 09:56:52 +00:00
Florent Thoumie
916edfcd48 - OPTIONS'ify.
- Add support for XMLRPC (default: on).
2007-12-18 22:08:56 +00:00
Florent Thoumie
83c2a30d66 Update net-p2p/rtorrent and net-p2p/rtorrent-devel to 0.7.9. 2007-12-12 11:53:58 +00:00
Florent Thoumie
6eaa92cd9f Update net-p2p/rtorrent to 0.7.7. 2007-09-10 13:58:02 +00:00
Florent Thoumie
22daf829ad Update net-p2p/rtorrent to 0.7.5. 2007-08-14 18:08:38 +00:00
Rong-En Fan
f935a609c5 - Set --mandir and --infodir in CONFIGURE_ARGS if the configure script
supports them.  This is determined by running ``configure --help'' in
  do-configure target and set the shell variable _LATE_CONFIGURE_ARGS
  which is then passed to CONFIGURE_ARGS.
- Remove --mandir and --infodir in ports' Makefile where applicable
  Few ports use REINPLACE_CMD to achieve the same effect, remove them too.
- Correct some manual pages location from PREFIX/man to MANPREFIX/man
- Define INFO_PATH where necessary
- Document that .info files are installed in a subdirectory relative to
  PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and
  subdirectory detection.

PR:		ports/111470
Approved by:	portmgr
Discussed with:	stas (Mk/*), gerald (info related stuffs)
Tested by:	pointyhat exp run
2007-07-23 09:36:51 +00:00
Florent Thoumie
ea9c54e479 Fix manpage location.
Reported by:	pointyhat via kris
2007-06-23 14:49:27 +00:00
Florent Thoumie
789a0161f1 Allow build with gcc 3.4+.
PR:		ports/113237
Submitted by:	Henrik Brix Andersen
2007-06-02 14:20:24 +00:00
Florent Thoumie
bd28018c8c Update rtorrent to 0.7.4. 2007-04-13 10:38:51 +00:00
Florent Thoumie
f4801f03a9 Quiet PKGMESSAGE command. 2007-01-26 12:31:24 +00:00
Florent Thoumie
9112f6138e Add local backup master site.
Reported by:	sat
2007-01-10 13:14:45 +00:00
Florent Thoumie
4f9c5825c0 Depend on libtorrent, not libtorrent-devel. [1]
Whitespace fixes.

Reported by:	itetcu
2007-01-10 00:13:02 +00:00
Florent Thoumie
0f3abcd2f8 Update rtorrent to 0.7.1.
Reminded by:	kwm
2007-01-09 12:59:16 +00:00
Peter Pentchev
64e068d25c Update the ftp/curl port to 7.16.0.
Bump PORTREVISION of all dependent ports.
Fix the build errors in the few ports that still use the long deprecated,
and now obsoleted, cURL options.

Thanks to everyone who took the time to look over the patch!

Discussed on:	-ports
2006-12-13 12:41:35 +00:00
Florent Thoumie
1b927a88d6 Update rtorrent and rtorrent-devel to 0.6.4.
PR:		ports/105231
Submitted by:	Gea-Suan Lin <gslin@gslin.org>
2006-11-08 12:11:38 +00:00
Florent Thoumie
4e66e10400 - Update to rtorrent 0.6.3.
Approved by:	portmgr (erwin)
2006-10-26 20:12:38 +00:00
Florent Thoumie
39ea8aba44 Attempt to fix build on 4.x.
Reported by:	krisbot
2006-08-08 10:19:40 +00:00
Florent Thoumie
25d57ca90d Bump PORTREVISION. 2006-07-12 19:05:22 +00:00
Florent Thoumie
0338d1e30d Fix problem with getopt.
Reported by:	Charles Clark <cmc@stegosaur.us>
2006-07-12 19:04:53 +00:00
Florent Thoumie
430bcce3fa - Update rtorrent and rtorrent-devel to 0.5.3. 2006-06-20 12:14:43 +00:00
Florent Thoumie
974204a41f - Transform rtorrent into a master port.
- Add rtorrent-devel, the development version of rtorrent.
2006-05-17 11:26:56 +00:00
Edwin Groothuis
0f12b488a5 Remove USE_REINPLACE from all categories starting with N 2006-05-11 22:49:56 +00:00
Florent Thoumie
1c4a700615 Update to 0.4.5.
Reminded by:	Simon Olofsson <simon@olofsson.de>
2006-03-21 16:31:38 +00:00
Ade Lovett
8503536d38 Conversion to a single libtool environment.
Approved by:	portmgr (kris)
2006-02-23 10:40:44 +00:00
Pav Lucistnik
fbab09fee3 Populate newly create net-p2p category with these ports:
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
2006-01-30 21:36:28 +00:00
Florent Thoumie
866ba71c1f - Update to 0.4.3. 2006-01-29 00:26:14 +00:00