pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/chat/loudmouth Move loudmouth from devel to chat, as t...
details: https://anonhg.NetBSD.org/pkgsrc/rev/37704a20b91d
branches: trunk
changeset: 469165:37704a20b91d
user: jmmv <jmmv%pkgsrc.org@localhost>
date: Fri Feb 20 14:16:18 2004 +0000
description:
Move loudmouth from devel to chat, as this is a library to write Jabber
clients. This is version 0.15.1. Ok'ed by xtraeme@ (maintainer).
diffstat:
chat/loudmouth/DESCR | 3 +++
chat/loudmouth/Makefile | 36 ++++++++++++++++++++++++++++++++++++
chat/loudmouth/PLIST | 18 ++++++++++++++++++
chat/loudmouth/buildlink3.mk | 31 +++++++++++++++++++++++++++++++
chat/loudmouth/distinfo | 4 ++++
5 files changed, 92 insertions(+), 0 deletions(-)
diffs (112 lines):
diff -r 0c7a2b28dc61 -r 37704a20b91d chat/loudmouth/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/chat/loudmouth/DESCR Fri Feb 20 14:16:18 2004 +0000
@@ -0,0 +1,3 @@
+Loudmouth is a lightweight and easy-to-use C library for programming with the
+Jabber protocol. It's designed to be easy to get started with and yet
+extensible to let you do anything the Jabber protocol allows.
diff -r 0c7a2b28dc61 -r 37704a20b91d chat/loudmouth/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/chat/loudmouth/Makefile Fri Feb 20 14:16:18 2004 +0000
@@ -0,0 +1,36 @@
+# $NetBSD: Makefile,v 1.1.1.1 2004/02/20 14:16:18 jmmv Exp $
+#
+
+DISTNAME= loudmouth-0.15.1
+CATEGORIES= chat
+MASTER_SITES= ${MASTER_SITE_GNOME:=sources/loudmouth/0.15/}
+EXTRACT_SUFX= .tar.bz2
+
+MAINTAINER= xtraeme%NetBSD.org@localhost
+HOMEPAGE= http://loudmouth.imendio.org/
+COMMENT= Lightweight Jabber client library
+
+USE_BUILDLINK3= yes
+USE_LIBTOOL= yes
+GNU_CONFIGURE= yes
+USE_GNU_TOOLS+= make
+
+PKGCONFIG_OVERRIDE+= loudmouth-1.0.pc.in
+
+CONFIGURE_ARGS+= --disable-debug
+
+.include "../../mk/bsd.prefs.mk"
+
+BUILD_DEFS+= LOUDMOUTH_USE_SSL
+
+.if defined(LOUDMOUTH_USE_SSL) && !empty(LOUDMOUTH_USE_SSL:M[Yy][Ee][Ss])
+BUILDLINK_DEPENDS.gnutls= gnutls>=1.0.0
+.include "../../security/gnutls/buildlink3.mk"
+.else
+CONFIGURE_ARGS+= --with-ssl=no
+.endif
+
+.include "../../converters/libiconv/buildlink3.mk"
+.include "../../devel/glib2/buildlink3.mk"
+.include "../../devel/pkgconfig/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 0c7a2b28dc61 -r 37704a20b91d chat/loudmouth/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/chat/loudmouth/PLIST Fri Feb 20 14:16:18 2004 +0000
@@ -0,0 +1,18 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2004/02/20 14:16:19 jmmv Exp $
+include/loudmouth-1.0/loudmouth/lm-connection.h
+include/loudmouth-1.0/loudmouth/lm-error.h
+include/loudmouth-1.0/loudmouth/lm-message-handler.h
+include/loudmouth-1.0/loudmouth/lm-message-node.h
+include/loudmouth-1.0/loudmouth/lm-message.h
+include/loudmouth-1.0/loudmouth/lm-proxy.h
+include/loudmouth-1.0/loudmouth/lm-ssl.h
+include/loudmouth-1.0/loudmouth/lm-utils.h
+include/loudmouth-1.0/loudmouth/loudmouth.h
+lib/libloudmouth-1.a
+lib/libloudmouth-1.la
+lib/libloudmouth-1.so
+lib/libloudmouth-1.so.0
+lib/libloudmouth-1.so.0.0
+lib/pkgconfig/loudmouth-1.0.pc
+@dirrm include/loudmouth-1.0/loudmouth
+@dirrm include/loudmouth-1.0
diff -r 0c7a2b28dc61 -r 37704a20b91d chat/loudmouth/buildlink3.mk
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/chat/loudmouth/buildlink3.mk Fri Feb 20 14:16:18 2004 +0000
@@ -0,0 +1,31 @@
+# $NetBSD: buildlink3.mk,v 1.1.1.1 2004/02/20 14:16:19 jmmv Exp $
+#
+# This Makefile fragment is included by packages that use loudmouth.
+#
+# This file was created automatically using createbuildlink-3.1.
+#
+
+BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
+LOUDMOUTH_BUILDLINK3_MK:= ${LOUDMOUTH_BUILDLINK3_MK}+
+
+.if !empty(BUILDLINK_DEPTH:M+)
+BUILDLINK_DEPENDS+= loudmouth
+.endif
+
+.if !empty(LOUDMOUTH_BUILDLINK3_MK:M+)
+BUILDLINK_PACKAGES+= loudmouth
+BUILDLINK_DEPENDS.loudmouth+= loudmouth>=0.10.1
+BUILDLINK_PKGSRCDIR.loudmouth?= ../../chat/loudmouth
+
+.include "../../mk/bsd.prefs.mk"
+
+.include "../../devel/glib2/buildlink3.mk"
+.include "../../converters/libiconv/buildlink3.mk"
+.if defined(LOUDMOUTH_USE_SSL) && !empty(LOUDMOUTH_USE_SSL:M[Yy][Ee][Ss])
+BUILDLINK_DEPENDS.gnutls= gnutls>=1.0.0
+.include "../../security/gnutls/buildlink3.mk"
+.endif
+
+.endif # LOUDMOUTH_BUILDLINK3_MK
+
+BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
diff -r 0c7a2b28dc61 -r 37704a20b91d chat/loudmouth/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/chat/loudmouth/distinfo Fri Feb 20 14:16:18 2004 +0000
@@ -0,0 +1,4 @@
+$NetBSD: distinfo,v 1.1.1.1 2004/02/20 14:16:18 jmmv Exp $
+
+SHA1 (loudmouth-0.15.1.tar.bz2) = 91734b4852a896234025d70373caaf6d290cd907
+Size (loudmouth-0.15.1.tar.bz2) = 273915 bytes
Home |
Main Index |
Thread Index |
Old Index