diff options
author | adam <adam@pkgsrc.org> | 2004-12-03 12:15:54 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2004-12-03 12:15:54 +0000 |
commit | c87f1cc9930e83a8d7a99def77b96c3df65a669d (patch) | |
tree | 7ca1b64728a6fd42705dfd4dd52c8e4cb8104176 /chat/eggdrop/Makefile | |
parent | dd884da2395513806df1e46bf7627b47f83abdde (diff) | |
download | pkgsrc-c87f1cc9930e83a8d7a99def77b96c3df65a669d.tar.gz |
Changes 1.6.17:
- Lots of doc updates.
- Added a "stripcodes" Tcl command. See doc/tcl-commands.doc for more
information.
- Bot idx's should be considered valid to tcl_valididx.
- Always try to detect shared Tcl libraries before static ones.
- We now correctly differentiate the +l user flag from the +l bot flag.
- Cleaned up modules.c and the module configure stuff quite a bit.
- Detect Tcl in $HOME/lib and $HOME/tcl/lib first, as to make it easier
to allow users to override the system's Tcl version.
- We now support module loading under Darwin (Mac OS X) and NeXT Step.
- Don't try to call tcl_notes if the notes module isn't loaded.
- Show a more descriptive error message when a listen socket can't be opened.
- Fixed Tcl encoding issues with .tcl and .set.
- Added a set of Finnish language files and a Finnish MOTD.
- time_t isn't unsigned, and therefor %lu should not be used as a
conversion specifier.
- Fixed a gcc warning in dcc.c.
- Added support for Quakenet channel modes.
- Removed an invalid killsock() in dcc.c.
- Fixed extra spaces being written to chan file.
- Reworked 'make config' / module configure process.
- Op (+o) implies halfop (+l) now.
- Cleaned up and optimized rmspace() and fixfrom().
- Updated recomended Tcl version to 8.4.6.
- Fix behavior of the BCST bind. BCST is now correctly triggered for
dccbroadcasts, as well as when a bot "says" something on a channel.
See doc/tcl-commands.doc for more information.
- Remove some unneeded casts.
- Fixed performance issues with mv/cp when a lot of files are in the
file area.
- Typo in doc/COMPILING-FAQ. It's LD_LIBRARY_PATH, not LB_LIBRARY_PATH.
- Fix a possible issue with ident code.
- Don't let .tcl mkdir create duplicate filedb entries.
- Fixed a compile error related to varargs when using old Tcl versions.
- Fixed a compile error on systems that don't have socklen_t.
- Suppress configure warnings on systems that use newer versions of GNU
coreutils.
Diffstat (limited to 'chat/eggdrop/Makefile')
-rw-r--r-- | chat/eggdrop/Makefile | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/chat/eggdrop/Makefile b/chat/eggdrop/Makefile index 2c967f1d092..ca4ea759d3d 100644 --- a/chat/eggdrop/Makefile +++ b/chat/eggdrop/Makefile @@ -1,9 +1,7 @@ -# $NetBSD: Makefile,v 1.14 2004/10/03 00:13:14 tv Exp $ -# +# $NetBSD: Makefile,v 1.15 2004/12/03 12:15:54 adam Exp $ -DISTNAME= eggdrop1.6.15 -PKGNAME= ${DISTNAME:S/eggdrop/eggdrop-/} -PKGREVISION= 3 +DISTNAME= eggdrop1.6.17 +PKGNAME= eggdrop-1.6.17 CATEGORIES= chat MASTER_SITES= ftp://ftp.eggheads.org/pub/eggdrop/source/1.6/ EXTRACT_SUFX= .tar.bz2 @@ -12,10 +10,9 @@ MAINTAINER= tech-pkg@NetBSD.org HOMEPAGE= http://www.eggheads.org/ COMMENT= IRC robot with TCL scripting and multi-channel ability -USE_BUILDLINK3= YES -USE_PKGINSTALL= YES -GNU_CONFIGURE= YES - +USE_BUILDLINK3= yes +USE_PKGINSTALL= yes +GNU_CONFIGURE= yes CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} CONFIGURE_ENV+= TCLLIB="${PREFIX}/lib" TCLINC="${PREFIX}/include" @@ -49,9 +46,9 @@ do-install-program: cd ${WRKSRC}/doc/html && ${INSTALL_DATA} *.html \ ${PREFIX}/share/doc/html/eggdrop ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/eggdrop - cd ${WRKSRC}/doc && ${INSTALL_DATA} BANS BOTNET MODULES PARTYLINE \ - USERS first_script.txt tcl-commands.doc text-substitutions.doc \ - tricks ${PREFIX}/share/doc/eggdrop + cd ${WRKSRC}/doc && ${INSTALL_DATA} BANS BOTNET FIRST-SCRIPT MODULES \ + PARTYLINE USERS TRICKS TEXT-SUBSTITUTIONS tcl-commands.doc \ + ${PREFIX}/share/doc/eggdrop ${INSTALL_DATA_DIR} ${PREFIX}/share/eggdrop ${INSTALL_DATA_DIR} ${PREFIX}/share/eggdrop/help ${INSTALL_DATA_DIR} ${PREFIX}/share/eggdrop/language |