Andrew Pantyukhin
0005823ec3
- Update to 13.2
2008-01-31 20:06:28 +00:00
Xin LI
634bbbdb9a
Update to 0.8.2-1.
2008-01-31 19:53:17 +00:00
Beech Rintoul
a09a9a5206
- Add options
...
- Pet portlint
- Bump portrevision
- Take maintainership
Approved by: Espen Skoglund <esk@ira.uka.de> (maintainer)
2008-01-31 19:29:30 +00:00
Diane Bruce
45c354e681
- update to 2.08
2008-01-31 17:35:39 +00:00
Hajimu UMEMOTO
86a019e6d2
- Enable battery support on amd64 using ACPI. [1]
...
- Suppress compile time warnings.
PR: ports/120149 [1]
Submitted by: Sven Berkvens-Matthijsse <sven__at__berkvens.net> [1]
2008-01-31 17:32:17 +00:00
Erwin Lansing
25744623eb
Also mark BROKEN on 7.0 and higher.
2008-01-31 17:18:54 +00:00
Sergey Matveychuk
47292562c4
A work around for HOLD_PKGS that did not work.
...
Noted by: NAKAJI Hiroyuki
2008-01-31 17:12:32 +00:00
Wesley Shields
ad9dbfd63b
Update to 2.25
...
PR: ports/120115
Submitted by: Brenton Chang <brenton.chang@gmail.com>
Approved by: wxs (maintainer), garga (mentor)
2008-01-31 16:39:22 +00:00
Tilman Keskinoz
948bbf797e
Upgrade to 0.8.6
2008-01-31 14:47:31 +00:00
Martin Wilke
fbb8fc7d84
- Bump modified from previous commit
2008-01-31 14:47:14 +00:00
Tilman Keskinoz
bd7865540f
Fix two encoding errors, the latest libxml2-parser did not accept
...
Reported by: pointyhat via pav
Thanks to: garga for helping me with the right encodings
2008-01-31 14:44:52 +00:00
Jean Milanez Melo
c845f8aa44
- Update WWW.
2008-01-31 14:43:36 +00:00
Wesley Shields
28c8983d87
Use @dirrmtry for plugins.
...
Sort pkg-plist alphabetically.
Bump PORTREVISION.
PR: ports/119943
Submitted by: TAOKA Fumiyoshi <fmysh@iijmio-mail.jp>
Approved by: Michael Scheidell (maintainer), garga (mentor)
2008-01-31 14:04:06 +00:00
Tilman Keskinoz
38e0374253
Update to 2.0.2
2008-01-31 13:44:21 +00:00
Jean Milanez Melo
7dd492d822
- Fix radsqlrelay.
...
- Bump portrevision.
- Update mastersites.
PR: ports/119910
Submitted by: David Wood <david@wood2.org.uk> (maintainer)
2008-01-31 13:29:09 +00:00
Jean Milanez Melo
165fdf83a6
- Update to 2.0.1.
...
- Fix radsqlrelay.
- Update mastersites.
PR: ports/119909
Submitted by: David Wood <david@wood2.org.uk> (maintainer)
2008-01-31 13:22:15 +00:00
Jean Milanez Melo
8dca47219c
- Fix mastersite.
...
PR: ports/119195
Submitted by: Rene Ladan <r.c.ladan@gmail.com> (maintainer)
2008-01-31 13:15:47 +00:00
Jean Milanez Melo
bdf6f53135
- Update mastersite.
...
PR: ports/119194
Submitted by: Rene Ladan <r.c.ladan@gmail.com> (maintainer)
2008-01-31 13:14:09 +00:00
Jean Milanez Melo
78fb6289b5
- Update MASTER_SITES.
...
PR: ports/119193
Submitted by: Rene Ladan <r.c.ladan@gmail.com> (maintainer)
2008-01-31 13:12:30 +00:00
Jean Milanez Melo
3d30c1fef2
- Update to 1.0.0
...
PR: ports/119186
Submitted by: Philippe Audeoud <jadawin@tuxaco.net>
2008-01-31 13:08:41 +00:00
Jean Milanez Melo
d9f829e478
- Fix mastersite.
...
PR: ports/119156
Submitted by: Craig Butler <craig001@lerwick.hopto.org>
2008-01-31 13:05:29 +00:00
Florent Thoumie
a01d7533aa
- Update net-p2p/bnbt to 8.5.
...
- Try to remove /var/lob/bnbt at deinstall.
- Add a pointer to the configuration wiki page in pkg-message.
2008-01-31 12:11:22 +00:00
Edwin Groothuis
764e348a35
It all started when we got some new routers, which told me the
...
following when trying to upload configuration or download images
from it: The TFTP server doesn't support the blocksize option.
My curiousity was triggered, it took me some reading of RFCs and
other documentation to find out what was possible and what could
be done. Was plain TFTP very simple in its handshake, TFTP with
options was kind of messy because of its backwards capability: The
first packet returned could either be an acknowledgement of options,
or the first data packet.
Going through the source code of src/libexec/tftpd and going through
the code of src/usr.bin/tftp showed that there was a lot of duplicate
code, and the addition of options would only increase the amount
of duplicate code. After all, both the client and the server can
act as a sender and receiver.
At the end, it ended up with a nearly complete rewrite of the tftp
client and server. It has been tested against the following TFTP
clients and servers:
- Itself (yay!)
- The standard FreeBSD tftp client and server
- The Fedora Core 6 tftp client and server
- Cisco router tftp client
- Extreme Networks tftp client
It supports the following RFCs:
RFC1350 - THE TFTP PROTOCOL (REVISION 2)
RFC2347 - TFTP Option Extension
RFC2348 - TFTP Blocksize Option
RFC2349 - TFTP Timeout Interval and Transfer Size Options
RFC3617 - Uniform Resource Identifier (URI) Scheme and Applicability
Statement for the Trivial File Transfer Protocol (TFTP)
It supports the following unofficial TFTP Options as described at
http://www.compuphase.com/tftp.htm :
blksize2 - Block size restricted to powers of 2, excluding protocol headers
rollover - Block counter roll-over (roll back to zero or to one)
From the tftp program point of view the following things are changed:
- New commands: "blocksize", "blocksize2", "rollover" and "options"
- Development features: "debug" and "packetdrop"
If you try this tftp/tftpd implementation, please let me know if
it works (or doesn't work) and against which implementaion so I can
get a list of confirmed working systems.
Author: Edwin Groothuis <edwin@FreeBSD.org>
2008-01-31 10:14:59 +00:00
Pav Lucistnik
ae9f81062f
- Fix build
...
With hat: portmgr (was wreaking havoc on pointyhat)
2008-01-31 09:06:07 +00:00
David E. O'Brien
601248d5d2
Update to Vim 7.1 patchlevel 242.
2008-01-31 07:53:24 +00:00
Jeremy Messenger
a699c065c5
Update to 2.12.7.
2008-01-31 05:57:31 +00:00
Beech Rintoul
b06ea4b7bc
- Respect without_nls
...
PR: ports/117230
Submitted by: Oleg Pudeyev <oleg.pudeyev@gmail.com>
Approved by: maintainer timeout (2 weeks)
2008-01-31 05:23:42 +00:00
Jeremy Messenger
4c0dbefadf
Update to 0.2.1.
2008-01-31 04:57:51 +00:00
Thomas Abthorpe
f0feed14f2
- Update to 2.1_rc7
...
PR: ports/120174
Submitted by: Matthias Andree <matthias.andree gmx.de> (maintainer)
2008-01-31 04:46:55 +00:00
Mark Linimon
9c07e88cfb
Fix name of irc/dircproxy package.
...
Hat: portmgr
2008-01-31 04:06:30 +00:00
Thomas Abthorpe
b7cb96bfc3
- Mark DEPRECATED
...
PR: ports/120172
Submitted by: Paul Schmehl <pauls utdallas.edu>
2008-01-31 04:06:08 +00:00
Jeremy Messenger
8d01ea3356
Add a comment to remind update comm/gfax plist when PORTVERSION changes
...
(update).
2008-01-31 03:51:03 +00:00
Jeremy Messenger
0ed53fc080
Fix the plist by chase libgnomeprint update, bump the PORTREVISION.
...
Reported by: pointyhat
2008-01-31 03:50:10 +00:00
Cheng-Lung Sung
47a24b80f1
- Update to 1.48
...
Changes: http://search.cpan.org/dist/Math-Complex/ChangeLog
2008-01-31 02:36:32 +00:00
Cheng-Lung Sung
213fb6baa8
- Update to 2.03
...
Changes: http://search.cpan.org/dist/Math-MatrixReal/CHANGES
2008-01-31 02:35:35 +00:00
Beech Rintoul
ad2d57dc8e
- Fix build with OpenSSL-0.9.8b
...
- Pet portlint
- Bump portrevision
PR: ports/119398
Submitted by: Takeharu KATO <takeharu1219@ybb.ne.jp>
Approved by: (maintainer timeout)
2008-01-31 02:32:19 +00:00
Cheng-Lung Sung
ea1778d269
- Update to 0.13
...
Changes: http://search.cpan.org/dist/Algorithm-SVM/Changes
2008-01-31 02:24:08 +00:00
Vanilla I. Shu
b47a3ce3a0
Fix pkg-plist.
...
Submitted by: pav@ via email.
2008-01-31 01:54:17 +00:00
Pav Lucistnik
0cda77c179
- Fix plist
...
Reported by: pointyhat
Pointy hat to: ahze
2008-01-30 23:42:06 +00:00
Pav Lucistnik
b7cef7a7cd
- Correct pkg-config dependency
...
Approved by: maintainer
2008-01-30 23:00:59 +00:00
Alejandro Pulver
33b4bad684
- Fix building on 64-bit architectures (remove CPU model-specific - Pentium -
...
optimization) [1].
- Bump PORTREVISION.
- Install additional warriors (fsh88 hill) for benchmark.
Reported by: pav [1]
2008-01-30 21:49:45 +00:00
Alejandro Pulver
bbef7cfcc7
- Fix building with GCC 4.x.
...
Reported by: pav
2008-01-30 21:35:21 +00:00
Beech Rintoul
b8e10f92ec
- Update to 3.1.3
...
- Fixes gcc-4.2 build errors
PR: ports/120145
Submitted by: Philippe Audeoud <jadawin@tuxaco.net>
2008-01-30 20:45:43 +00:00
Pav Lucistnik
e4225b0f3b
- Mark BROKEN: does not compile on amd64 with GCC 4.2
...
Reported by: pointyhat
2008-01-30 20:12:25 +00:00
Pav Lucistnik
1bd4b124d9
- Fix plist
...
Reported by: pointyhat
2008-01-30 20:03:30 +00:00
Emanuel Haupt
4d6b39283c
Fix a typo.
...
PR: 120164
Submitted by: Yar Tikhiy <yar@comp.chem.msu.su>
2008-01-30 19:38:52 +00:00
Pav Lucistnik
cbf1441df6
- Mark BROKEN: checksum mismatch
...
Reported by: pointyhat
2008-01-30 19:27:03 +00:00
Jeremy Messenger
c2d7d16a59
Drop the maintainership to ports@. I haven't use it for over a year since when
...
I got a few of good routers.
2008-01-30 19:23:31 +00:00
Jeremy Messenger
971d093f17
Update to 0.5.8.3.
...
Security: Fix remote exploit which could crash Deluge.
2008-01-30 19:16:23 +00:00
Pav Lucistnik
628ecd4e8d
- Fix plist: don't remove directories created by mtree
...
Reported by: pointyhat
Pointy hat to: beech
2008-01-30 18:52:13 +00:00