2013-01-06 21:33:21 +00:00
|
|
|
# Created by: Julien Laffaye <kimelto@gmail.com>
|
libircclient is a small but powerful library, which implements client-server
IRC protocol. It is designed to be small, fast, portable and compatible to RFC
standards, and most IRC clients.
libircclient features include:
* Full multi-threading support.
* Single threads handles all the IRC processing.
* Support for single-threaded applications, and socket-based applications,
which use select()
* Synchronous and asynchronous interfaces.
* CTCP support with optional build-in reply code.
* Flexible DCC support, including both DCC chat, and DCC file transfer.
* Can both initiate and react to initiated DCC.
* Can accept or decline DCC sessions asynchronously.
* Plain C interface and implementation
(possible to use from C++ code, obviously)
* Compatible with RFC 1459 and most IRC clients.
* Free, licensed under LGPL license.
* Good documentation and examples available.
WWW: http://libircclient.sourceforge.net/
PR: ports/129278
Submitted by: Julien Laffaye <kimelto at gmail.com>
2008-11-29 20:11:47 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= libircclient
|
2014-03-09 17:16:36 +00:00
|
|
|
PORTVERSION= 1.7
|
libircclient is a small but powerful library, which implements client-server
IRC protocol. It is designed to be small, fast, portable and compatible to RFC
standards, and most IRC clients.
libircclient features include:
* Full multi-threading support.
* Single threads handles all the IRC processing.
* Support for single-threaded applications, and socket-based applications,
which use select()
* Synchronous and asynchronous interfaces.
* CTCP support with optional build-in reply code.
* Flexible DCC support, including both DCC chat, and DCC file transfer.
* Can both initiate and react to initiated DCC.
* Can accept or decline DCC sessions asynchronously.
* Plain C interface and implementation
(possible to use from C++ code, obviously)
* Compatible with RFC 1459 and most IRC clients.
* Free, licensed under LGPL license.
* Good documentation and examples available.
WWW: http://libircclient.sourceforge.net/
PR: ports/129278
Submitted by: Julien Laffaye <kimelto at gmail.com>
2008-11-29 20:11:47 +00:00
|
|
|
CATEGORIES= irc devel
|
|
|
|
MASTER_SITES= SF
|
|
|
|
|
2011-06-08 16:52:32 +00:00
|
|
|
MAINTAINER= jlaffaye@FreeBSD.org
|
2014-06-13 07:36:27 +00:00
|
|
|
COMMENT= IRC library to create IRC clients
|
libircclient is a small but powerful library, which implements client-server
IRC protocol. It is designed to be small, fast, portable and compatible to RFC
standards, and most IRC clients.
libircclient features include:
* Full multi-threading support.
* Single threads handles all the IRC processing.
* Support for single-threaded applications, and socket-based applications,
which use select()
* Synchronous and asynchronous interfaces.
* CTCP support with optional build-in reply code.
* Flexible DCC support, including both DCC chat, and DCC file transfer.
* Can both initiate and react to initiated DCC.
* Can accept or decline DCC sessions asynchronously.
* Plain C interface and implementation
(possible to use from C++ code, obviously)
* Compatible with RFC 1459 and most IRC clients.
* Free, licensed under LGPL license.
* Good documentation and examples available.
WWW: http://libircclient.sourceforge.net/
PR: ports/129278
Submitted by: Julien Laffaye <kimelto at gmail.com>
2008-11-29 20:11:47 +00:00
|
|
|
|
2017-11-15 09:00:09 +00:00
|
|
|
LICENSE= LGPL3+
|
|
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
2014-03-09 17:16:36 +00:00
|
|
|
|
|
|
|
OPTIONS_DEFINE= OPENSSL IPV6 EXAMPLES
|
2013-01-06 21:33:21 +00:00
|
|
|
OPTIONS_DEFAULT= OPENSSL
|
2012-02-26 21:24:04 +00:00
|
|
|
|
2016-09-10 18:32:26 +00:00
|
|
|
OPENSSL_USES= ssl
|
2018-12-09 06:39:47 +00:00
|
|
|
OPENSSL_CONFIGURE_ENV= ac_cv_lib_ssl_SSL_library_init=yes
|
2016-09-10 18:32:26 +00:00
|
|
|
OPENSSL_CONFIGURE_ENABLE= openssl
|
|
|
|
OPENSSL_LDFLAGS= -L${OPENSSLLIB}
|
|
|
|
OPENSSL_CFLAGS= -I${OPENSSLINC}
|
|
|
|
IPV6_CONFIGURE_ENABLE= ipv6
|
|
|
|
|
2012-02-26 21:24:04 +00:00
|
|
|
BUILD_WRKSRC= ${WRKSRC}/src
|
libircclient is a small but powerful library, which implements client-server
IRC protocol. It is designed to be small, fast, portable and compatible to RFC
standards, and most IRC clients.
libircclient features include:
* Full multi-threading support.
* Single threads handles all the IRC processing.
* Support for single-threaded applications, and socket-based applications,
which use select()
* Synchronous and asynchronous interfaces.
* CTCP support with optional build-in reply code.
* Flexible DCC support, including both DCC chat, and DCC file transfer.
* Can both initiate and react to initiated DCC.
* Can accept or decline DCC sessions asynchronously.
* Plain C interface and implementation
(possible to use from C++ code, obviously)
* Compatible with RFC 1459 and most IRC clients.
* Free, licensed under LGPL license.
* Good documentation and examples available.
WWW: http://libircclient.sourceforge.net/
PR: ports/129278
Submitted by: Julien Laffaye <kimelto at gmail.com>
2008-11-29 20:11:47 +00:00
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
|
|
|
|
do-install:
|
2017-11-15 09:00:09 +00:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/include/*.h ${STAGEDIR}${PREFIX}/include
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/src/libircclient.a ${STAGEDIR}${PREFIX}/lib
|
|
|
|
|
|
|
|
do-install-EXAMPLES-on:
|
|
|
|
(cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
|
libircclient is a small but powerful library, which implements client-server
IRC protocol. It is designed to be small, fast, portable and compatible to RFC
standards, and most IRC clients.
libircclient features include:
* Full multi-threading support.
* Single threads handles all the IRC processing.
* Support for single-threaded applications, and socket-based applications,
which use select()
* Synchronous and asynchronous interfaces.
* CTCP support with optional build-in reply code.
* Flexible DCC support, including both DCC chat, and DCC file transfer.
* Can both initiate and react to initiated DCC.
* Can accept or decline DCC sessions asynchronously.
* Plain C interface and implementation
(possible to use from C++ code, obviously)
* Compatible with RFC 1459 and most IRC clients.
* Free, licensed under LGPL license.
* Good documentation and examples available.
WWW: http://libircclient.sourceforge.net/
PR: ports/129278
Submitted by: Julien Laffaye <kimelto at gmail.com>
2008-11-29 20:11:47 +00:00
|
|
|
|
|
|
|
.include <bsd.port.mk>
|