pkgsrc/chat/eggdrop/Makefile

61 lines
2.2 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.40 2020/01/18 21:48:49 jperkin Exp $
2002-06-26 05:48:10 +02:00
DISTNAME= eggdrop-1.8.4
PKGREVISION= 1
CATEGORIES= chat
chat/eggdrop: Update to 1.8.3. - Loosely based on joyent/pkgsrc/pull/38 by ismell@. - Removed the static build option as it didn't work at all. Eggdrop v1.8.3 Tcl-API changes: - Added "handle ipaddress botport userport" syntax to the addbot Tcl command. General changes: - Fixed a bug where ssl-enabled ports were not able to be reverted to non-SSL ports via the setuser Tcl command. - SSL certs: Fail earlier if SSL certs have issues. Also fatally error if only one of ssl-privatekey/certificate config settings is set. - Correctly check against invalid flags with the .match partyline command and matchattr Tcl command. - Prevent loop when writing to stdout in foreground mode that results in a segfault. - Lots of additional error checking against values for .+bot, .chaddr and the Tcl addbot command. - No longer trigger CHON binds when returning from a control script. - Added the '.resetconsole' command, allowing a user to reset console flags to those specified in the config file. Botnet changes: - Added the 'l' console flag to handle messages sent from linked bots, reserving the 'b' console flag to handle messages related to botnet- linkings. - Split the "raw share traffic" flag into incoming (h) and outgoing (g). - Fixed a race condition in SSL userfile sharing, causing the transfer to stall with 511 bytes missing. - Fixed a bug introduced in v1.8.2 with copy-to-tmp, where the userfile being received is now properly being sent to a tmpfile first if copy-to-tmp is set. - Botnet sharing: A slave will now use the address of the hub (to which it's succesfully connected) instead of an IP given by the hub which was wrong in certain cases (especially in NAT situations). - Bots request existing channel flags for users upon adding a new channel. Deprecations: - Deprecated the "ipv4address:botport/userport" and "[ipv6address]:botport/userport" address formats for addbot. Eggdrop v1.8.2 eggdrop.conf changes: - temp-path renamed to tmpfile and its purpose changed. It is now only used by filesys.mod/transfer.mod and optional. - blowfish-use-mode is a new setting for Tcl encrypt/decrypt. Allows using CBC instead of ECB mode for encryption. Tcl scripts not using the same mode are incompatible with each other. Does NOT affect password hashing for the userfile. CBC will be the NEW DEFAULT in a later version of eggdrop. Will be removed in a future Eggdrop version and forced to CBC. - global-* is renamed to default-*. This clarifies their purpose as default channel settings, not ones that override for existing channels. global-* still works for backwards compatibility. Tcl-API changes: - encrypt/decrypt: These commands can now encrypt/decrypt in CBC mode instead of the current ECB mode. This does NOT affect password hashing for the userfile. - getuser: Can now be called without a second argument. Returns a flat key/value list (dict) of settings for that user. - configureargs: New global variable holding the ./configure arguments. This is a _string_, not a list. User needs to split it themselves. - maskhost: New types 30-39 set hostmask to * (to allow e.g. nick!*@*). General changes: - Improved command line argument parsing. - Portuguese language file added. - Eggdrop no longer changes nick on every rehash if altnick uses '?'. - Terminal-mode (commandline -nt) always has full owner access now. - Allow spaces in server passwords in serverlist. Eggdrop v1.8.1 - Autobotchk - Added functionality improvements to the tried-and-true autobotchk script, allowing characters such as {} and [] to be used in filenames - .who linkedbot output - Truncates listings appropriately - Minutely hook - The minutely hook was only called for missed minutes mod 60, now it is still listed in minutes but it can be greater than 60. - New OpenSSL version detection - Moved previously hard-coded version strings to version.h and update them via misc/setpatch instead of misc/addpatch - Compile cleanup - Fixed some compiler warnings - General bugfixes Eggdrop v1.8.0 - Support for utf-8 encoding with a fallback of iso8859-1 - Support for IPv6 - SSL support has been added for all kinds of connections, including certificate verification and authorization, and partyline SSL. - The wire module has been removed from eggdrop - Config file changes: e.g. my-ip and my-hostname settings are replaced by vhost4, vhost6 and the listen-addr.
2018-02-27 20:08:48 +01:00
MASTER_SITES= https://ftp.eggheads.org/pub/eggdrop/source/1.8/
2002-06-26 05:48:10 +02:00
chat/eggdrop: Update to 1.8.3. - Loosely based on joyent/pkgsrc/pull/38 by ismell@. - Removed the static build option as it didn't work at all. Eggdrop v1.8.3 Tcl-API changes: - Added "handle ipaddress botport userport" syntax to the addbot Tcl command. General changes: - Fixed a bug where ssl-enabled ports were not able to be reverted to non-SSL ports via the setuser Tcl command. - SSL certs: Fail earlier if SSL certs have issues. Also fatally error if only one of ssl-privatekey/certificate config settings is set. - Correctly check against invalid flags with the .match partyline command and matchattr Tcl command. - Prevent loop when writing to stdout in foreground mode that results in a segfault. - Lots of additional error checking against values for .+bot, .chaddr and the Tcl addbot command. - No longer trigger CHON binds when returning from a control script. - Added the '.resetconsole' command, allowing a user to reset console flags to those specified in the config file. Botnet changes: - Added the 'l' console flag to handle messages sent from linked bots, reserving the 'b' console flag to handle messages related to botnet- linkings. - Split the "raw share traffic" flag into incoming (h) and outgoing (g). - Fixed a race condition in SSL userfile sharing, causing the transfer to stall with 511 bytes missing. - Fixed a bug introduced in v1.8.2 with copy-to-tmp, where the userfile being received is now properly being sent to a tmpfile first if copy-to-tmp is set. - Botnet sharing: A slave will now use the address of the hub (to which it's succesfully connected) instead of an IP given by the hub which was wrong in certain cases (especially in NAT situations). - Bots request existing channel flags for users upon adding a new channel. Deprecations: - Deprecated the "ipv4address:botport/userport" and "[ipv6address]:botport/userport" address formats for addbot. Eggdrop v1.8.2 eggdrop.conf changes: - temp-path renamed to tmpfile and its purpose changed. It is now only used by filesys.mod/transfer.mod and optional. - blowfish-use-mode is a new setting for Tcl encrypt/decrypt. Allows using CBC instead of ECB mode for encryption. Tcl scripts not using the same mode are incompatible with each other. Does NOT affect password hashing for the userfile. CBC will be the NEW DEFAULT in a later version of eggdrop. Will be removed in a future Eggdrop version and forced to CBC. - global-* is renamed to default-*. This clarifies their purpose as default channel settings, not ones that override for existing channels. global-* still works for backwards compatibility. Tcl-API changes: - encrypt/decrypt: These commands can now encrypt/decrypt in CBC mode instead of the current ECB mode. This does NOT affect password hashing for the userfile. - getuser: Can now be called without a second argument. Returns a flat key/value list (dict) of settings for that user. - configureargs: New global variable holding the ./configure arguments. This is a _string_, not a list. User needs to split it themselves. - maskhost: New types 30-39 set hostmask to * (to allow e.g. nick!*@*). General changes: - Improved command line argument parsing. - Portuguese language file added. - Eggdrop no longer changes nick on every rehash if altnick uses '?'. - Terminal-mode (commandline -nt) always has full owner access now. - Allow spaces in server passwords in serverlist. Eggdrop v1.8.1 - Autobotchk - Added functionality improvements to the tried-and-true autobotchk script, allowing characters such as {} and [] to be used in filenames - .who linkedbot output - Truncates listings appropriately - Minutely hook - The minutely hook was only called for missed minutes mod 60, now it is still listed in minutes but it can be greater than 60. - New OpenSSL version detection - Moved previously hard-coded version strings to version.h and update them via misc/setpatch instead of misc/addpatch - Compile cleanup - Fixed some compiler warnings - General bugfixes Eggdrop v1.8.0 - Support for utf-8 encoding with a fallback of iso8859-1 - Support for IPv6 - SSL support has been added for all kinds of connections, including certificate verification and authorization, and partyline SSL. - The wire module has been removed from eggdrop - Config file changes: e.g. my-ip and my-hostname settings are replaced by vhost4, vhost6 and the listen-addr.
2018-02-27 20:08:48 +01:00
HOMEPAGE= https://www.eggheads.org/
2002-06-26 05:48:10 +02:00
COMMENT= IRC robot with TCL scripting and multi-channel ability
chat/eggdrop: Update to 1.8.3. - Loosely based on joyent/pkgsrc/pull/38 by ismell@. - Removed the static build option as it didn't work at all. Eggdrop v1.8.3 Tcl-API changes: - Added "handle ipaddress botport userport" syntax to the addbot Tcl command. General changes: - Fixed a bug where ssl-enabled ports were not able to be reverted to non-SSL ports via the setuser Tcl command. - SSL certs: Fail earlier if SSL certs have issues. Also fatally error if only one of ssl-privatekey/certificate config settings is set. - Correctly check against invalid flags with the .match partyline command and matchattr Tcl command. - Prevent loop when writing to stdout in foreground mode that results in a segfault. - Lots of additional error checking against values for .+bot, .chaddr and the Tcl addbot command. - No longer trigger CHON binds when returning from a control script. - Added the '.resetconsole' command, allowing a user to reset console flags to those specified in the config file. Botnet changes: - Added the 'l' console flag to handle messages sent from linked bots, reserving the 'b' console flag to handle messages related to botnet- linkings. - Split the "raw share traffic" flag into incoming (h) and outgoing (g). - Fixed a race condition in SSL userfile sharing, causing the transfer to stall with 511 bytes missing. - Fixed a bug introduced in v1.8.2 with copy-to-tmp, where the userfile being received is now properly being sent to a tmpfile first if copy-to-tmp is set. - Botnet sharing: A slave will now use the address of the hub (to which it's succesfully connected) instead of an IP given by the hub which was wrong in certain cases (especially in NAT situations). - Bots request existing channel flags for users upon adding a new channel. Deprecations: - Deprecated the "ipv4address:botport/userport" and "[ipv6address]:botport/userport" address formats for addbot. Eggdrop v1.8.2 eggdrop.conf changes: - temp-path renamed to tmpfile and its purpose changed. It is now only used by filesys.mod/transfer.mod and optional. - blowfish-use-mode is a new setting for Tcl encrypt/decrypt. Allows using CBC instead of ECB mode for encryption. Tcl scripts not using the same mode are incompatible with each other. Does NOT affect password hashing for the userfile. CBC will be the NEW DEFAULT in a later version of eggdrop. Will be removed in a future Eggdrop version and forced to CBC. - global-* is renamed to default-*. This clarifies their purpose as default channel settings, not ones that override for existing channels. global-* still works for backwards compatibility. Tcl-API changes: - encrypt/decrypt: These commands can now encrypt/decrypt in CBC mode instead of the current ECB mode. This does NOT affect password hashing for the userfile. - getuser: Can now be called without a second argument. Returns a flat key/value list (dict) of settings for that user. - configureargs: New global variable holding the ./configure arguments. This is a _string_, not a list. User needs to split it themselves. - maskhost: New types 30-39 set hostmask to * (to allow e.g. nick!*@*). General changes: - Improved command line argument parsing. - Portuguese language file added. - Eggdrop no longer changes nick on every rehash if altnick uses '?'. - Terminal-mode (commandline -nt) always has full owner access now. - Allow spaces in server passwords in serverlist. Eggdrop v1.8.1 - Autobotchk - Added functionality improvements to the tried-and-true autobotchk script, allowing characters such as {} and [] to be used in filenames - .who linkedbot output - Truncates listings appropriately - Minutely hook - The minutely hook was only called for missed minutes mod 60, now it is still listed in minutes but it can be greater than 60. - New OpenSSL version detection - Moved previously hard-coded version strings to version.h and update them via misc/setpatch instead of misc/addpatch - Compile cleanup - Fixed some compiler warnings - General bugfixes Eggdrop v1.8.0 - Support for utf-8 encoding with a fallback of iso8859-1 - Support for IPv6 - SSL support has been added for all kinds of connections, including certificate verification and authorization, and partyline SSL. - The wire module has been removed from eggdrop - Config file changes: e.g. my-ip and my-hostname settings are replaced by vhost4, vhost6 and the listen-addr.
2018-02-27 20:08:48 +01:00
LICENSE= gnu-gpl-v2
2002-06-26 05:48:10 +02:00
chat/eggdrop: Update to 1.8.3. - Loosely based on joyent/pkgsrc/pull/38 by ismell@. - Removed the static build option as it didn't work at all. Eggdrop v1.8.3 Tcl-API changes: - Added "handle ipaddress botport userport" syntax to the addbot Tcl command. General changes: - Fixed a bug where ssl-enabled ports were not able to be reverted to non-SSL ports via the setuser Tcl command. - SSL certs: Fail earlier if SSL certs have issues. Also fatally error if only one of ssl-privatekey/certificate config settings is set. - Correctly check against invalid flags with the .match partyline command and matchattr Tcl command. - Prevent loop when writing to stdout in foreground mode that results in a segfault. - Lots of additional error checking against values for .+bot, .chaddr and the Tcl addbot command. - No longer trigger CHON binds when returning from a control script. - Added the '.resetconsole' command, allowing a user to reset console flags to those specified in the config file. Botnet changes: - Added the 'l' console flag to handle messages sent from linked bots, reserving the 'b' console flag to handle messages related to botnet- linkings. - Split the "raw share traffic" flag into incoming (h) and outgoing (g). - Fixed a race condition in SSL userfile sharing, causing the transfer to stall with 511 bytes missing. - Fixed a bug introduced in v1.8.2 with copy-to-tmp, where the userfile being received is now properly being sent to a tmpfile first if copy-to-tmp is set. - Botnet sharing: A slave will now use the address of the hub (to which it's succesfully connected) instead of an IP given by the hub which was wrong in certain cases (especially in NAT situations). - Bots request existing channel flags for users upon adding a new channel. Deprecations: - Deprecated the "ipv4address:botport/userport" and "[ipv6address]:botport/userport" address formats for addbot. Eggdrop v1.8.2 eggdrop.conf changes: - temp-path renamed to tmpfile and its purpose changed. It is now only used by filesys.mod/transfer.mod and optional. - blowfish-use-mode is a new setting for Tcl encrypt/decrypt. Allows using CBC instead of ECB mode for encryption. Tcl scripts not using the same mode are incompatible with each other. Does NOT affect password hashing for the userfile. CBC will be the NEW DEFAULT in a later version of eggdrop. Will be removed in a future Eggdrop version and forced to CBC. - global-* is renamed to default-*. This clarifies their purpose as default channel settings, not ones that override for existing channels. global-* still works for backwards compatibility. Tcl-API changes: - encrypt/decrypt: These commands can now encrypt/decrypt in CBC mode instead of the current ECB mode. This does NOT affect password hashing for the userfile. - getuser: Can now be called without a second argument. Returns a flat key/value list (dict) of settings for that user. - configureargs: New global variable holding the ./configure arguments. This is a _string_, not a list. User needs to split it themselves. - maskhost: New types 30-39 set hostmask to * (to allow e.g. nick!*@*). General changes: - Improved command line argument parsing. - Portuguese language file added. - Eggdrop no longer changes nick on every rehash if altnick uses '?'. - Terminal-mode (commandline -nt) always has full owner access now. - Allow spaces in server passwords in serverlist. Eggdrop v1.8.1 - Autobotchk - Added functionality improvements to the tried-and-true autobotchk script, allowing characters such as {} and [] to be used in filenames - .who linkedbot output - Truncates listings appropriately - Minutely hook - The minutely hook was only called for missed minutes mod 60, now it is still listed in minutes but it can be greater than 60. - New OpenSSL version detection - Moved previously hard-coded version strings to version.h and update them via misc/setpatch instead of misc/addpatch - Compile cleanup - Fixed some compiler warnings - General bugfixes Eggdrop v1.8.0 - Support for utf-8 encoding with a fallback of iso8859-1 - Support for IPv6 - SSL support has been added for all kinds of connections, including certificate verification and authorization, and partyline SSL. - The wire module has been removed from eggdrop - Config file changes: e.g. my-ip and my-hostname settings are replaced by vhost4, vhost6 and the listen-addr.
2018-02-27 20:08:48 +01:00
GNU_CONFIGURE= yes
USE_TOOLS+= pax
.include "../../mk/bsd.prefs.mk"
EGDIR= ${PREFIX}/share/examples/eggdrop
CONF_FILES= ${EGDIR}/eggdrop.conf ${PKG_SYSCONFDIR}/eggdrop.conf
chat/eggdrop: Update to 1.8.3. - Loosely based on joyent/pkgsrc/pull/38 by ismell@. - Removed the static build option as it didn't work at all. Eggdrop v1.8.3 Tcl-API changes: - Added "handle ipaddress botport userport" syntax to the addbot Tcl command. General changes: - Fixed a bug where ssl-enabled ports were not able to be reverted to non-SSL ports via the setuser Tcl command. - SSL certs: Fail earlier if SSL certs have issues. Also fatally error if only one of ssl-privatekey/certificate config settings is set. - Correctly check against invalid flags with the .match partyline command and matchattr Tcl command. - Prevent loop when writing to stdout in foreground mode that results in a segfault. - Lots of additional error checking against values for .+bot, .chaddr and the Tcl addbot command. - No longer trigger CHON binds when returning from a control script. - Added the '.resetconsole' command, allowing a user to reset console flags to those specified in the config file. Botnet changes: - Added the 'l' console flag to handle messages sent from linked bots, reserving the 'b' console flag to handle messages related to botnet- linkings. - Split the "raw share traffic" flag into incoming (h) and outgoing (g). - Fixed a race condition in SSL userfile sharing, causing the transfer to stall with 511 bytes missing. - Fixed a bug introduced in v1.8.2 with copy-to-tmp, where the userfile being received is now properly being sent to a tmpfile first if copy-to-tmp is set. - Botnet sharing: A slave will now use the address of the hub (to which it's succesfully connected) instead of an IP given by the hub which was wrong in certain cases (especially in NAT situations). - Bots request existing channel flags for users upon adding a new channel. Deprecations: - Deprecated the "ipv4address:botport/userport" and "[ipv6address]:botport/userport" address formats for addbot. Eggdrop v1.8.2 eggdrop.conf changes: - temp-path renamed to tmpfile and its purpose changed. It is now only used by filesys.mod/transfer.mod and optional. - blowfish-use-mode is a new setting for Tcl encrypt/decrypt. Allows using CBC instead of ECB mode for encryption. Tcl scripts not using the same mode are incompatible with each other. Does NOT affect password hashing for the userfile. CBC will be the NEW DEFAULT in a later version of eggdrop. Will be removed in a future Eggdrop version and forced to CBC. - global-* is renamed to default-*. This clarifies their purpose as default channel settings, not ones that override for existing channels. global-* still works for backwards compatibility. Tcl-API changes: - encrypt/decrypt: These commands can now encrypt/decrypt in CBC mode instead of the current ECB mode. This does NOT affect password hashing for the userfile. - getuser: Can now be called without a second argument. Returns a flat key/value list (dict) of settings for that user. - configureargs: New global variable holding the ./configure arguments. This is a _string_, not a list. User needs to split it themselves. - maskhost: New types 30-39 set hostmask to * (to allow e.g. nick!*@*). General changes: - Improved command line argument parsing. - Portuguese language file added. - Eggdrop no longer changes nick on every rehash if altnick uses '?'. - Terminal-mode (commandline -nt) always has full owner access now. - Allow spaces in server passwords in serverlist. Eggdrop v1.8.1 - Autobotchk - Added functionality improvements to the tried-and-true autobotchk script, allowing characters such as {} and [] to be used in filenames - .who linkedbot output - Truncates listings appropriately - Minutely hook - The minutely hook was only called for missed minutes mod 60, now it is still listed in minutes but it can be greater than 60. - New OpenSSL version detection - Moved previously hard-coded version strings to version.h and update them via misc/setpatch instead of misc/addpatch - Compile cleanup - Fixed some compiler warnings - General bugfixes Eggdrop v1.8.0 - Support for utf-8 encoding with a fallback of iso8859-1 - Support for IPv6 - SSL support has been added for all kinds of connections, including certificate verification and authorization, and partyline SSL. - The wire module has been removed from eggdrop - Config file changes: e.g. my-ip and my-hostname settings are replaced by vhost4, vhost6 and the listen-addr.
2018-02-27 20:08:48 +01:00
INSTALLATION_DIRS= bin ${PKGMANDIR}
INSTALLATION_DIRS+= lib/eggdrop
INSTALLATION_DIRS+= share/doc
INSTALLATION_DIRS+= share/eggdrop
INSTALLATION_DIRS+= share/examples/eggdrop
SUBST_CLASSES+= dir
SUBST_FILES.dir= eggdrop.conf
SUBST_STAGE.dir= pre-configure
SUBST_SED.dir+= -e 's,modules/,${PREFIX}/lib/eggdrop/,'
SUBST_SED.dir+= -e 's,source scripts/,source ${PREFIX}/share/eggdrop/scripts/,'
SUBST_SED.dir+= -e 's,set help-path .*,set help-path "${PREFIX}/share/eggdrop/help/",'
SUBST_SED.dir+= -e 's,set text-path .*,set text-path "${PREFIX}/share/eggdrop/text/",'
SUBST_SED.dir+= -e 's,set motd .*,set motd "${PREFIX}/share/eggdrop/text/motd",'
SUBST_SED.dir+= -e 's,set telnet-banner .*,set telnet-banner "${PREFIX}/share/eggdrop/text/banner",'
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
CONFIGURE_ENV+= TCLLIB="${PREFIX}/lib" TCLINC="${PREFIX}/include"
CFLAGS+= -DLANGDIR=\"${PREFIX}/share/eggdrop/language\"
chat/eggdrop: Update to 1.8.3. - Loosely based on joyent/pkgsrc/pull/38 by ismell@. - Removed the static build option as it didn't work at all. Eggdrop v1.8.3 Tcl-API changes: - Added "handle ipaddress botport userport" syntax to the addbot Tcl command. General changes: - Fixed a bug where ssl-enabled ports were not able to be reverted to non-SSL ports via the setuser Tcl command. - SSL certs: Fail earlier if SSL certs have issues. Also fatally error if only one of ssl-privatekey/certificate config settings is set. - Correctly check against invalid flags with the .match partyline command and matchattr Tcl command. - Prevent loop when writing to stdout in foreground mode that results in a segfault. - Lots of additional error checking against values for .+bot, .chaddr and the Tcl addbot command. - No longer trigger CHON binds when returning from a control script. - Added the '.resetconsole' command, allowing a user to reset console flags to those specified in the config file. Botnet changes: - Added the 'l' console flag to handle messages sent from linked bots, reserving the 'b' console flag to handle messages related to botnet- linkings. - Split the "raw share traffic" flag into incoming (h) and outgoing (g). - Fixed a race condition in SSL userfile sharing, causing the transfer to stall with 511 bytes missing. - Fixed a bug introduced in v1.8.2 with copy-to-tmp, where the userfile being received is now properly being sent to a tmpfile first if copy-to-tmp is set. - Botnet sharing: A slave will now use the address of the hub (to which it's succesfully connected) instead of an IP given by the hub which was wrong in certain cases (especially in NAT situations). - Bots request existing channel flags for users upon adding a new channel. Deprecations: - Deprecated the "ipv4address:botport/userport" and "[ipv6address]:botport/userport" address formats for addbot. Eggdrop v1.8.2 eggdrop.conf changes: - temp-path renamed to tmpfile and its purpose changed. It is now only used by filesys.mod/transfer.mod and optional. - blowfish-use-mode is a new setting for Tcl encrypt/decrypt. Allows using CBC instead of ECB mode for encryption. Tcl scripts not using the same mode are incompatible with each other. Does NOT affect password hashing for the userfile. CBC will be the NEW DEFAULT in a later version of eggdrop. Will be removed in a future Eggdrop version and forced to CBC. - global-* is renamed to default-*. This clarifies their purpose as default channel settings, not ones that override for existing channels. global-* still works for backwards compatibility. Tcl-API changes: - encrypt/decrypt: These commands can now encrypt/decrypt in CBC mode instead of the current ECB mode. This does NOT affect password hashing for the userfile. - getuser: Can now be called without a second argument. Returns a flat key/value list (dict) of settings for that user. - configureargs: New global variable holding the ./configure arguments. This is a _string_, not a list. User needs to split it themselves. - maskhost: New types 30-39 set hostmask to * (to allow e.g. nick!*@*). General changes: - Improved command line argument parsing. - Portuguese language file added. - Eggdrop no longer changes nick on every rehash if altnick uses '?'. - Terminal-mode (commandline -nt) always has full owner access now. - Allow spaces in server passwords in serverlist. Eggdrop v1.8.1 - Autobotchk - Added functionality improvements to the tried-and-true autobotchk script, allowing characters such as {} and [] to be used in filenames - .who linkedbot output - Truncates listings appropriately - Minutely hook - The minutely hook was only called for missed minutes mod 60, now it is still listed in minutes but it can be greater than 60. - New OpenSSL version detection - Moved previously hard-coded version strings to version.h and update them via misc/setpatch instead of misc/addpatch - Compile cleanup - Fixed some compiler warnings - General bugfixes Eggdrop v1.8.0 - Support for utf-8 encoding with a fallback of iso8859-1 - Support for IPv6 - SSL support has been added for all kinds of connections, including certificate verification and authorization, and partyline SSL. - The wire module has been removed from eggdrop - Config file changes: e.g. my-ip and my-hostname settings are replaced by vhost4, vhost6 and the listen-addr.
2018-02-27 20:08:48 +01:00
BUILD_TARGET= eggdrop
2002-06-26 05:48:10 +02:00
post-configure:
cd ${WRKSRC} && ${MAKE} config
chat/eggdrop: Update to 1.8.3. - Loosely based on joyent/pkgsrc/pull/38 by ismell@. - Removed the static build option as it didn't work at all. Eggdrop v1.8.3 Tcl-API changes: - Added "handle ipaddress botport userport" syntax to the addbot Tcl command. General changes: - Fixed a bug where ssl-enabled ports were not able to be reverted to non-SSL ports via the setuser Tcl command. - SSL certs: Fail earlier if SSL certs have issues. Also fatally error if only one of ssl-privatekey/certificate config settings is set. - Correctly check against invalid flags with the .match partyline command and matchattr Tcl command. - Prevent loop when writing to stdout in foreground mode that results in a segfault. - Lots of additional error checking against values for .+bot, .chaddr and the Tcl addbot command. - No longer trigger CHON binds when returning from a control script. - Added the '.resetconsole' command, allowing a user to reset console flags to those specified in the config file. Botnet changes: - Added the 'l' console flag to handle messages sent from linked bots, reserving the 'b' console flag to handle messages related to botnet- linkings. - Split the "raw share traffic" flag into incoming (h) and outgoing (g). - Fixed a race condition in SSL userfile sharing, causing the transfer to stall with 511 bytes missing. - Fixed a bug introduced in v1.8.2 with copy-to-tmp, where the userfile being received is now properly being sent to a tmpfile first if copy-to-tmp is set. - Botnet sharing: A slave will now use the address of the hub (to which it's succesfully connected) instead of an IP given by the hub which was wrong in certain cases (especially in NAT situations). - Bots request existing channel flags for users upon adding a new channel. Deprecations: - Deprecated the "ipv4address:botport/userport" and "[ipv6address]:botport/userport" address formats for addbot. Eggdrop v1.8.2 eggdrop.conf changes: - temp-path renamed to tmpfile and its purpose changed. It is now only used by filesys.mod/transfer.mod and optional. - blowfish-use-mode is a new setting for Tcl encrypt/decrypt. Allows using CBC instead of ECB mode for encryption. Tcl scripts not using the same mode are incompatible with each other. Does NOT affect password hashing for the userfile. CBC will be the NEW DEFAULT in a later version of eggdrop. Will be removed in a future Eggdrop version and forced to CBC. - global-* is renamed to default-*. This clarifies their purpose as default channel settings, not ones that override for existing channels. global-* still works for backwards compatibility. Tcl-API changes: - encrypt/decrypt: These commands can now encrypt/decrypt in CBC mode instead of the current ECB mode. This does NOT affect password hashing for the userfile. - getuser: Can now be called without a second argument. Returns a flat key/value list (dict) of settings for that user. - configureargs: New global variable holding the ./configure arguments. This is a _string_, not a list. User needs to split it themselves. - maskhost: New types 30-39 set hostmask to * (to allow e.g. nick!*@*). General changes: - Improved command line argument parsing. - Portuguese language file added. - Eggdrop no longer changes nick on every rehash if altnick uses '?'. - Terminal-mode (commandline -nt) always has full owner access now. - Allow spaces in server passwords in serverlist. Eggdrop v1.8.1 - Autobotchk - Added functionality improvements to the tried-and-true autobotchk script, allowing characters such as {} and [] to be used in filenames - .who linkedbot output - Truncates listings appropriately - Minutely hook - The minutely hook was only called for missed minutes mod 60, now it is still listed in minutes but it can be greater than 60. - New OpenSSL version detection - Moved previously hard-coded version strings to version.h and update them via misc/setpatch instead of misc/addpatch - Compile cleanup - Fixed some compiler warnings - General bugfixes Eggdrop v1.8.0 - Support for utf-8 encoding with a fallback of iso8859-1 - Support for IPv6 - SSL support has been added for all kinds of connections, including certificate verification and authorization, and partyline SSL. - The wire module has been removed from eggdrop - Config file changes: e.g. my-ip and my-hostname settings are replaced by vhost4, vhost6 and the listen-addr.
2018-02-27 20:08:48 +01:00
do-install:
cd "${WRKSRC}" && ${SETENV} ${MAKE_ENV} ${MAKE} DEST=${WRKDIR}/eggdrop install
${INSTALL_PROGRAM} ${WRKDIR}/eggdrop/${DISTNAME} ${DESTDIR}${PREFIX}/bin/eggdrop
cd ${WRKDIR}/eggdrop && ${PAX} -rw -pp help language scripts text \
${DESTDIR}${PREFIX}/share/eggdrop/
cd ${WRKDIR}/eggdrop/doc && ${PAX} -rw -pp * ${DESTDIR}${PREFIX}/share/doc/eggdrop/
mv -f ${DESTDIR}${PREFIX}/share/doc/eggdrop/man1 ${DESTDIR}/${PREFIX}/${PKGMANDIR}/
${INSTALL_DATA} ${WRKSRC}/eggdrop.conf ${DESTDIR}${EGDIR}/eggdrop.conf
${INSTALL_LIB} ${WRKDIR}/eggdrop/modules/* \
${DESTDIR}${PREFIX}/lib/eggdrop
2002-06-26 05:48:10 +02:00
.include "../../devel/zlib/buildlink3.mk"
chat/eggdrop: Update to 1.8.3. - Loosely based on joyent/pkgsrc/pull/38 by ismell@. - Removed the static build option as it didn't work at all. Eggdrop v1.8.3 Tcl-API changes: - Added "handle ipaddress botport userport" syntax to the addbot Tcl command. General changes: - Fixed a bug where ssl-enabled ports were not able to be reverted to non-SSL ports via the setuser Tcl command. - SSL certs: Fail earlier if SSL certs have issues. Also fatally error if only one of ssl-privatekey/certificate config settings is set. - Correctly check against invalid flags with the .match partyline command and matchattr Tcl command. - Prevent loop when writing to stdout in foreground mode that results in a segfault. - Lots of additional error checking against values for .+bot, .chaddr and the Tcl addbot command. - No longer trigger CHON binds when returning from a control script. - Added the '.resetconsole' command, allowing a user to reset console flags to those specified in the config file. Botnet changes: - Added the 'l' console flag to handle messages sent from linked bots, reserving the 'b' console flag to handle messages related to botnet- linkings. - Split the "raw share traffic" flag into incoming (h) and outgoing (g). - Fixed a race condition in SSL userfile sharing, causing the transfer to stall with 511 bytes missing. - Fixed a bug introduced in v1.8.2 with copy-to-tmp, where the userfile being received is now properly being sent to a tmpfile first if copy-to-tmp is set. - Botnet sharing: A slave will now use the address of the hub (to which it's succesfully connected) instead of an IP given by the hub which was wrong in certain cases (especially in NAT situations). - Bots request existing channel flags for users upon adding a new channel. Deprecations: - Deprecated the "ipv4address:botport/userport" and "[ipv6address]:botport/userport" address formats for addbot. Eggdrop v1.8.2 eggdrop.conf changes: - temp-path renamed to tmpfile and its purpose changed. It is now only used by filesys.mod/transfer.mod and optional. - blowfish-use-mode is a new setting for Tcl encrypt/decrypt. Allows using CBC instead of ECB mode for encryption. Tcl scripts not using the same mode are incompatible with each other. Does NOT affect password hashing for the userfile. CBC will be the NEW DEFAULT in a later version of eggdrop. Will be removed in a future Eggdrop version and forced to CBC. - global-* is renamed to default-*. This clarifies their purpose as default channel settings, not ones that override for existing channels. global-* still works for backwards compatibility. Tcl-API changes: - encrypt/decrypt: These commands can now encrypt/decrypt in CBC mode instead of the current ECB mode. This does NOT affect password hashing for the userfile. - getuser: Can now be called without a second argument. Returns a flat key/value list (dict) of settings for that user. - configureargs: New global variable holding the ./configure arguments. This is a _string_, not a list. User needs to split it themselves. - maskhost: New types 30-39 set hostmask to * (to allow e.g. nick!*@*). General changes: - Improved command line argument parsing. - Portuguese language file added. - Eggdrop no longer changes nick on every rehash if altnick uses '?'. - Terminal-mode (commandline -nt) always has full owner access now. - Allow spaces in server passwords in serverlist. Eggdrop v1.8.1 - Autobotchk - Added functionality improvements to the tried-and-true autobotchk script, allowing characters such as {} and [] to be used in filenames - .who linkedbot output - Truncates listings appropriately - Minutely hook - The minutely hook was only called for missed minutes mod 60, now it is still listed in minutes but it can be greater than 60. - New OpenSSL version detection - Moved previously hard-coded version strings to version.h and update them via misc/setpatch instead of misc/addpatch - Compile cleanup - Fixed some compiler warnings - General bugfixes Eggdrop v1.8.0 - Support for utf-8 encoding with a fallback of iso8859-1 - Support for IPv6 - SSL support has been added for all kinds of connections, including certificate verification and authorization, and partyline SSL. - The wire module has been removed from eggdrop - Config file changes: e.g. my-ip and my-hostname settings are replaced by vhost4, vhost6 and the listen-addr.
2018-02-27 20:08:48 +01:00
.include "../../lang/tcl/buildlink3.mk"
.include "../../security/openssl/buildlink3.mk"
2002-06-26 05:48:10 +02:00
.include "../../mk/bsd.pkg.mk"