3efcee68bd
- copy and paste into msg windows caused html to be passed on to the icb-server. - implemented keepalive so that my connection doesn't drop when behind crapy firewalls that timeout idle tcp connections quickly. - fixed a crash in the auto reconnect code path where "group" is not in the hash table in icb_join_chat(). - implemented a defensive programming check in icb_send() to prevent other NULL fields from crashing pidgin. - fixed some amd64 warnings. Maintainer timeout
34 lines
681 B
Makefile
34 lines
681 B
Makefile
# $OpenBSD: Makefile,v 1.6 2009/08/29 22:14:43 kurt Exp $
|
|
|
|
SHARED_ONLY= Yes
|
|
|
|
COMMENT= ICB protocol plugin for Pidgin
|
|
|
|
DISTNAME= pidgin-icb-20070505
|
|
PKGNAME= ${DISTNAME}p3
|
|
CATEGORIES= net
|
|
|
|
HOMEPAGE= http://nic.com.pl/~alek/pidgin-icb/
|
|
|
|
MAINTAINER= Aleksander Piotrowski <alek@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
RUN_DEPENDS= :pidgin->=2.0.0:net/pidgin
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/pidgin
|
|
${INSTALL_DATA} ${WRKSRC}/README \
|
|
${PREFIX}/share/doc/pidgin/icb-plugin.txt
|
|
|
|
.include <bsd.port.mk>
|