Commit graph

1452 commits

Author SHA1 Message Date
rillig
ad67745fd4 Added patch-al, which fixes the build on NetBSD 1.6.2/i386. 2005-12-18 19:57:24 +00:00
joerg
4fbde85d5b Add libtool and msgfmt build dependency. 2005-12-18 15:52:19 +00:00
joerg
6d45e7e377 I love code like this:
extern int errno; /* some systems don't have this in errno.h */

after the following in a central header:

#ifndef _WIN32
#include <sys/errno.h>
#else
#include <errno.h>
#endif

Sure, e.g. NetBSD doesn't define errno in sys/errno.h, but why should it?
So, let's just fix this.
2005-12-16 15:52:03 +00:00
joerg
f8789810e4 Fix errno. 2005-12-16 15:20:47 +00:00
joerg
db6ab176cb Fix errno. 2005-12-15 23:31:04 +00:00
joerg
a596d03d3f Fix errno. 2005-12-15 23:05:59 +00:00
joerg
6706832926 Fix errno, don't add more #if cancer. 2005-12-15 23:02:33 +00:00
salo
7536c88e33 Update to version 1.0.2
Changes:
- fix compilation on non-i386 (or non-gcc) systems
2005-12-15 00:16:08 +00:00
joerg
21320c5685 Teach the backbone of NetBSD communication some ISO C tricks.
- no errno, use errno.h
- no redefinition of function parameters as local variables
  [how did this ever work?!]
- malloc comes from stdlib.h
- NAME_MAX is prefered when available, it is POSIX
- strchr, strpbrk, strspn, strstr, strtol and strtoul can and
  should be used from libc.
- remove tcl version of string.h, system header is good enough
  (and if it doesn't have index, it would have been broken anyway)
2005-12-14 13:53:24 +00:00
joerg
14a6cc3ec0 Always include sys/types.h, it is needed on !NetBSD as well.
Use dirent.h instead of sys/dir.h, the former is POSIX and the latter
gives a warning on DragonFly, which breaks -Werror.
Use NAME_MAX if available, fall back to MAXNAMLEN otherwise.
2005-12-13 21:30:11 +00:00
joerg
7bbbc61fe4 Add DragonFly support. 2005-12-13 19:51:44 +00:00
joerg
ff206fcfd5 Add DragonFly support. 2005-12-13 18:27:00 +00:00
joerg
da2a0a35a0 DragonFly is a BSD, handle it as such. 2005-12-13 18:14:10 +00:00
joerg
e649d04cc7 Let us assume for a moment that OpenSSL version numbers are increasing
and replace a bogus check with >=, since 6 & 7 != 6.
2005-12-13 18:03:24 +00:00
joerg
d2392ab338 Add DragonFly support. 2005-12-13 16:59:37 +00:00
joerg
82c72547d9 Add DragonFly support. 2005-12-13 16:26:39 +00:00
joerg
051e25980e Fix errno. 2005-12-13 16:02:11 +00:00
joerg
f3f0ce07bc Fix GCC 3.4+: label at end of compound statement. 2005-12-13 16:01:26 +00:00
joerg
1a5c55442a Correct last commit, c&p destroyed tabs. 2005-12-12 21:32:20 +00:00
joerg
e65d068ed4 Move do-install before inclusion of
emulators/suse_linux/Makefile.application, to keep old behaviour.
2005-12-12 20:30:00 +00:00
joerg
1f6a39a84e First step at reworking Linux binary packages.
Change most pkgs to depend on either
emulators/suse_linux/Makefile.application (normal pkgs) or
Makefile.common (suse91 and suse themselves) to filter out Operating
Systems without Linux ABI support. Use CPU masks to limit the pkg to
supported platforms.
2005-12-12 14:43:23 +00:00
salo
62590940cb Update to version 1.0.1
Changes:

- Fixed crashbug in key exchange, authentication and rekey protocols.
- Fixed channel private key mode remove bug.
- Fixed statistics temp file creation in debug mode.
- Other bugfixes were also made.
2005-12-09 00:45:31 +00:00
adrianp
2091e9b025 Fix MASTER_SITES typo and add in a few more mirrors 2005-12-08 10:07:46 +00:00
uebayasi
9394df8af6 Update riece to 2.0.2.
Notable changes from NEWS:

* Major changes in 2.0.2

* Major changes in 2.0.1

** New add-on riece-xfaceb.el, which displays X-Face/Colour Face in
   IRC buffers. (Steve Youngs)

* Major changes in 2.0.0

** Support multiple coding-systems on a server.
   You can use different coding-systems for different channels. (ueno)
   For example:
   (setq riece-channel-coding-system-alist
	 '(("#euc-jp" . euc-jp)
	   ("#utf-8 irc.freenode.net" . utf-8)))

** Support uninstall, unload (dangerous) operations for add-ons.
   Now you can fully customize riece-addons in the add-on listing
   mode. (ueno)

** New mechanism for executing Ruby programs.  To use it, see the
   commentary section of riece-ruby.el. (ueno)

** New add-on riece-eval-ruby.el, which regards user input prefixed by
   ",ruby " as a Ruby program and sends the result to the current
   channel. (ueno)

** New add-on riece-shrink-buffer.el, which now takes care of periodic
   buffer shrinking.  If you have set riece-max-buffer-size, you will
   need to enable the riece-shrink-buffer add-on in the add-on listing
   mode. (ueno)

** Allow "@" instead of " " as a separator of a channel name and an
   IRC server name. (ueno)

** Rewrite the Japanese manual (riece-ja.texi) for IRC & Emacs
   newbies. (ueno)

** Include a document for developers (doc/HACKING{,.ja}) (ueno)

* Major changes in 1.0.8

** Mitigate file locking scheme of riece-log. (ueno)

** Format idle seconds in human readable form. (ueno)

** Support SXEmacs version names. (Steve Youngs)

** Support CTCP TIME. (Steve Youngs)
2005-12-08 06:51:22 +00:00
rillig
579e977969 Ran "pkglint --autofix", which corrected some of the quoting issues in
CONFIGURE_ARGS.
2005-12-05 23:55:01 +00:00
rillig
b71a1d488b Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in

    http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-12-05 20:49:47 +00:00
adrianp
2717a1083e Patch via Debian for:
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2005-3694
2005-12-03 17:04:23 +00:00
adrianp
0d0fbe111a Add unrealircd-hub back to PKG_SUGGESTED_OPTIONS 2005-12-03 04:00:18 +00:00
wiz
43c8dcb28f Prefix all package-specific options with "unrealircd-".
No legacy options handling, since the package is so fresh.
2005-12-02 17:59:53 +00:00
joerg
dcf86bce61 DragonFly is a BSD, but doesn't end in it. Add it to the cases. 2005-12-01 20:42:42 +00:00
adrianp
ea3bcd71f6 Remove PKG_OPTIONS_OPTIONAL_GROUPS as PKG_OPTIONS_REQUIRED_GROUPS does
the job on it's own.  Suggesed by wiz@ in private email.
2005-12-01 18:20:09 +00:00
adrianp
25d2daeaa5 Change remoteinc to depend on net/libcares as opposed to wip/c-ares
Fix patch-aa so libcares is properly detected
Fix options.mk so that libcurl is properly detected
Use PKG_OPTIONS_OPTIONAL_GROUPS as suggesed by wiz@ in private email
Use PKG_OPTIONS_REQUIRED_GROUPS for hub/leaf choice
Bump to nb1
2005-12-01 18:09:37 +00:00
adrianp
ed9de3bc3d Update to 5.0.56
Create the services group using PKG_GROUPS
From the ChangeLog:
> 2005/11/20 .56	Fixed a bug in StatServ that could cause a crash if
> 		    StatServ was unloaded with a rehash while Services
> 		    was running.
> 2005/11/07	Changed NickServ and ChanServ SET PASSWORD to prevent the
> 		    use of spaces in passwords.
> 2005/11/07	The NickServ commands DROP, RECOVER, RELEASE, and GHOST now
> 		    report a syntax error rather than "password incorrect"
> 		    when too many parameters are given.  (As a result,
> 		    passwords containing spaces can no longer be used with
> 		    these commands.  Use IDENTIFY followed by SET PASSWORD
> 		    to set a new password without spaces.)
> 2005/10/26	Fixed incorrect end-of-/WHOIS responses for several
> 		    pseudoclients.  Reported by Robin Burchell
> 		    <surreal.w00t@xxxxx.xxx>
> 2005/09/26 .55	Added documentation on CSSetChannelTime configuration option.
> 2005/08/25	Fixed rare bug allowing users to gain voice status
> 		    improperly.  Reported by Anton Wolkov <phan70m@xxxxx.xxx>
> 2005/08/23	Added "authed" callback for newly-authorized nicknames.
> 		    Suggested by Robin Burchell <surreal.w00t@xxxxx.xxx>
> 2005/08/16 .54	The ChanServ check_kick callback now passes the channel
> 		    name as a string instead of the Channel structure, so
> 		    the channel name can be known even if the channel is
> 		    empty.  Reported by Olly <olly@xxxxxxx.xx.xx>
> 2005/08/13	The S-line commands (SGLINE, SQLINE, and SZLINE) now check
> 		    that "*" or similarly overbroad masks are not used.
> 		    Suggested by Dionisios K. <vonitsa_net@xxxxx.xx>
> 2005/08/13	Fixed minor bugs in the code to check whether a new
> 		    autokill is too broad (such as "*").
> 2005/08/13	Fixed a compilation error (and many warnings) when
> 		    compiling with GCC 4.
> 2005/08/13	Added UNSET callbacks for NickServ and ChanServ.  Suggested
> 		    by Craig McLure <Craig@xxxxxxxxx.xxx>
> 2005/05/12 .53	Fixed bug causing server connection to fail.
> 2005/05/12 .52	Fixed occasional corruption of the NickServ REGISTER syntax
> 		    string upon reconfiguration (OperServ REHASH).
> 		    Reported by <alm@xxxxxxx.xx>
> 2005/05/06	Fixed attempts to send PING messages before connecting to
> 		    the server.  Reported by Craig McLure
> 		    <Craig@xxxxxxxxx.xxx>
> 2005/04/02 .51	convert-db now checks for more potential problems with the
> 		    imported databases before writing out the XML data.
> 2005/04/02	Fixed bugs when converting databases from old versions of
> 		    PTlink Services.
> 2005/04/01	Fixed handling of links to forbidden nicks when converting
> 		    Auspice databases.
> 2005/03/31	ChanServ KICK no longer allows Services opers to be kicked.
> 2005/03/31	Ensured that usermode +r is cleared from nicks which lose
> 		    their identification status (e.g. from FORBID/SUSPEND).
> 2005/03/31	NickServ SUSPEND now forces the user of the suspended
> 		    nick to change nicknames, as FORBID does.  Reported by
> 		    Dionisios K. <vonitsa_net@xxxxx.xx>
> 2005/03/31	ChanServ now stops non-identified users from joining
> 		    channels with mode +R locked on.  Suggested by
> 		    Dionisios K. <vonitsa_net@xxxxx.xx>
> 2005/03/29 .50	Fixed security hole in NickServ LISTLINKS allowing any user
> 		    to view a nick's links.  Reported by
> 		    <katarn@xxxxxxxxxx.xxx>
2005-11-30 17:47:54 +00:00
adrianp
1993d37ee3 Add advanced options available in the default ./Config script
Change default to hub, enable showlistmodes and remove prefixaq in line with
 ./Config defaults
No PKGREVISION bump (riding the initial import)
2005-11-29 21:11:55 +00:00
adrianp
9eeb72b636 Small update for FILES_SUBST 2005-11-29 19:23:29 +00:00
adrianp
1702c131ad Add unrealircd 2005-11-29 19:18:18 +00:00
adrianp
b86da5bcca UnrealIRCd is an IRC server based on the branch of IRCu called Dreamforge,
formerly used by the DALnet IRC Network. Since development started on it
(around May 1999) many new features has been added, modified, and many bugs
fixed. Unreal runs both on *nix platforms, Amiga & Windows 95/98/2k/NT.
Some features to mention: Channel Halfops, No-color channel mode,
Strip-colors channel mode, channelmode +q & +a - protect modes, Oper and
Admin only channels, exception bans, Nokicks mode (channel and user), Flood
limiter, Channel links, Host cloaking, Net* Tech and Co-Admin modes, Whois
notifies, Foreign connects monitor, Oper suspend, G:Lines, T:Lines, channel
restriction (people can only go to these channels if enabled), Trojan/DCC
Deny, RPING/RPONG, Sethost family, Token in server<->server etc.
FDlists/High Traffic Mode, SOCKS check on connect, Speeded up server
synchs, limited WebTV Client support, /vhost, and many dreamforge
optimations. UnrealIRCd is aimed to be an advanced, not an easy IRCd.

Also includes SSL and IPv6 support.
2005-11-29 19:17:03 +00:00
adrianp
c729a89e5e Add a CONFLICTS for ircd-hybrid
Minor pkglintification
2005-11-29 19:05:12 +00:00
wiz
d431d5b25c Update to 0.5.0.4:
2003-09-22: 0.4.10.4: buf fix release, fixes remote DoS, SSL support a la licq,
                      TCL scripting, fixes a few file transfer glitches
2003-10-06: 0.4.10.5: fixes a bunch of annoying yet easy to fix bugs
2004-01-17: 0.4.11:   history seach/dump, avoid deleted new registered UINs by initializing ICQ meta data,
                      bug fixes
2004-11-14: 0.4.12:   more history (by Sebastian Felis), OpenSSL support (by Roman Hoog Antink)
2004-12-05: 0.4.99.9: beta release
2005-02-11: 0.5:      also OpenSSL support (by Roman Hoog Antink), contact list upload, more colors in messages,
                      per-contact configurability of many options - including several new ones, again with
                      peek/peek2 command, command line options to start commands in mICQ, reworked online help
                      and man pages, UTF-8 input handling, lots of fixes (and probably new bugs ;)
2005-02-27: 0.5.0.1: bug fixes and translation updates, peek reliable again
2005-04-24: 0.5.0.2: bug fixes, contact list handling improvements, auto-expanding aliases "a" and "r"
2005-04-27: 0.5.0.3: fix two bugs introduced in last version
2005-06-05: 0.5.0.4: general auto-expanding aliases, peek fixed again
2005-11-25 19:58:59 +00:00
adrianp
34ce61d256 Fix PAX problems on 1.6.x 2005-11-16 22:59:19 +00:00
adrianp
74c263c7fe Fix commented description for ziplinks 2005-11-13 22:58:05 +00:00
adrianp
d85acc995b Add a CONFLICTS for ircu 2005-11-13 22:47:40 +00:00
adrianp
74df2bdae4 Update ircd-hybrid 6.2 => 7.1.3
In brief:
- We now support a completely new platform, Tru64 UNIX
- We have mostly revamped the Windows Cygwin port
- The IRIX port has been brought up to date
- The HPUX port has been retested and minor warnings have been fixed
- The configure script has been massively revamped
- Most noticeable is that we generate make dependencies on the fly now
- We now use our own .lang files to provide translated numeric messages
- IPv6 support is now automatically enabled/disabled
- Cryptlinks now use Nagle's TCP_NODELAY algorithm
- X-line (gecos ban) support has been added
- Nick and channel RESVs are now stored in nresv.conf and cresv.conf
2005-11-13 22:40:00 +00:00
tonio
9dc8d4e33b And remove the patch-aa, as same change was integrated upstream 2005-11-12 19:52:39 +00:00
tonio
6a86814a05 update chat/bitlbee to 0.99
as i did the two latest updates, take maintainership

The changelog for 0.99:
- Fixed memory initialization bug in OSCAR module that caused crashes on
  closing the connection.
- Most likely fixed the bug that caused BitlBee to use 100% CPU time in
  some situations.
- Outgoing MSN typing notifications are now understood correctly by the
  orignal MS Mac/Windows clients (again).
- Added "account add $protocol" to the documentation, got rid of a lot
  of over-markup (i.e. overuse of bold-tags), reviewed some other parts.
- Small changes to help.xsl to fix small flaws in the help.txt formatting.
- Messaging yourself now doesn't make irssi or mIRC crash anymore.
2005-11-12 19:51:24 +00:00
tonio
4169aff5cf add a --tag=CC to the libtool call that fails under darwin
This should fix PR 32041
2005-11-11 16:01:20 +00:00
joerg
f2277b4745 Don't define tparm on DragonFly as well. This fixes PR 31891. 2005-11-08 16:16:55 +00:00
tv
6e7c4b11a4 Need flex and yacc in USE_TOOLS. 2005-11-08 02:20:07 +00:00
adrianp
29725a83b1 FreeBSD build fix from FreeBSD CVS tree
Minor pkglintification of Makefile
2005-11-06 17:40:47 +00:00
rillig
49788b7b08 pkglint --autofix 2005-11-04 11:48:00 +00:00