Initial import of loudmouth 0.10.1
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. -- http://www.imendio.com/projects/loudmouth/
This commit is contained in:
parent
cded412e64
commit
a9b371a01f
5 changed files with 99 additions and 0 deletions
3
loudmouth/DESCR
Normal file
3
loudmouth/DESCR
Normal file
|
@ -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.
|
34
loudmouth/Makefile
Normal file
34
loudmouth/Makefile
Normal file
|
@ -0,0 +1,34 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 2003/07/08 11:04:10 xtraeme Exp $
|
||||
#
|
||||
|
||||
DISTNAME= loudmouth-0.10.1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/loudmouth/0.10/}
|
||||
EXTRACT_SUFX= .tar.bz2
|
||||
|
||||
MAINTAINER= jrp@hispabsd.org
|
||||
HOMEPAGE= http://www.imendio.com/projects/loudmouth/
|
||||
COMMENT= Lightweight Jabber client library
|
||||
|
||||
USE_BUILDLINK2= yes
|
||||
USE_LIBTOOL= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNU_ICONV= yes
|
||||
|
||||
LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
|
||||
PKGCONFIG_OVERRIDE+= ${WRKSRC}/loudmouth-1.0.pc.in
|
||||
|
||||
CONFIGURE_ARGS+= --disable-gtk-doc
|
||||
CONFIGURE_ARGS+= --disable-debug
|
||||
|
||||
HTMLDIR= ${PREFIX}/share/doc/html/loudmouth
|
||||
|
||||
pre-install:
|
||||
${INSTALL_DATA_DIR} ${HTMLDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/docs/reference/html/* ${HTMLDIR}
|
||||
|
||||
.include "../../devel/glib2/buildlink2.mk"
|
||||
.include "../../devel/pkgconfig/buildlink2.mk"
|
||||
.include "../../converters/libiconv/buildlink2.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
29
loudmouth/PLIST
Normal file
29
loudmouth/PLIST
Normal file
|
@ -0,0 +1,29 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2003/07/08 11:04:10 xtraeme 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-utils.h
|
||||
include/loudmouth-1.0/loudmouth/loudmouth.h
|
||||
lib/libloudmouth.a
|
||||
lib/libloudmouth.la
|
||||
lib/libloudmouth.so
|
||||
lib/libloudmouth.so.0
|
||||
lib/libloudmouth.so.0.0
|
||||
lib/pkgconfig/loudmouth-1.0.pc
|
||||
share/doc/html/loudmouth/ch01.html
|
||||
share/doc/html/loudmouth/home.png
|
||||
share/doc/html/loudmouth/index.html
|
||||
share/doc/html/loudmouth/index.sgml
|
||||
share/doc/html/loudmouth/left.png
|
||||
share/doc/html/loudmouth/loudmouth-lm-connection.html
|
||||
share/doc/html/loudmouth/loudmouth-lm-error.html
|
||||
share/doc/html/loudmouth/loudmouth-lm-message-handler.html
|
||||
share/doc/html/loudmouth/loudmouth-lm-message-node.html
|
||||
share/doc/html/loudmouth/loudmouth-lm-message.html
|
||||
share/doc/html/loudmouth/loudmouth.devhelp
|
||||
share/doc/html/loudmouth/right.png
|
||||
share/doc/html/loudmouth/up.png
|
||||
@dirrm share/doc/html/loudmouth
|
||||
@dirrm include/loudmouth-1.0/loudmouth
|
29
loudmouth/buildlink2.mk
Normal file
29
loudmouth/buildlink2.mk
Normal file
|
@ -0,0 +1,29 @@
|
|||
# $NetBSD: buildlink2.mk,v 1.1.1.1 2003/07/08 11:04:10 xtraeme Exp $
|
||||
#
|
||||
# This Makefile fragment is included by packages that use loudmouth.
|
||||
#
|
||||
# This file was created automatically using createbuildlink 2.6.
|
||||
#
|
||||
|
||||
.if !defined(LOUDMOUTH_BUILDLINK2_MK)
|
||||
LOUDMOUTH_BUILDLINK2_MK= # defined
|
||||
|
||||
BUILDLINK_PACKAGES+= loudmouth
|
||||
BUILDLINK_DEPENDS.loudmouth?= loudmouth>=0.10.1
|
||||
BUILDLINK_PKGSRCDIR.loudmouth?= ../../wip/loudmouth
|
||||
|
||||
EVAL_PREFIX+= BUILDLINK_PREFIX.loudmouth=loudmouth
|
||||
BUILDLINK_PREFIX.loudmouth_DEFAULT= ${LOCALBASE}
|
||||
BUILDLINK_FILES.loudmouth+= include/loudmouth-1.0/loudmouth/*.h
|
||||
BUILDLINK_FILES.loudmouth+= lib/libloudmouth.*
|
||||
BUILDLINK_FILES.loudmouth+= lib/pkgconfig/loudmouth-1.0.pc
|
||||
|
||||
.include "../../devel/glib2/buildlink2.mk"
|
||||
.include "../../devel/pkgconfig/buildlink2.mk"
|
||||
.include "../../converters/libiconv/buildlink2.mk"
|
||||
|
||||
BUILDLINK_TARGETS+= loudmouth-buildlink
|
||||
|
||||
loudmouth-buildlink: _BUILDLINK_USE
|
||||
|
||||
.endif # LOUDMOUTH_BUILDLINK2_MK
|
4
loudmouth/distinfo
Normal file
4
loudmouth/distinfo
Normal file
|
@ -0,0 +1,4 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2003/07/08 11:04:10 xtraeme Exp $
|
||||
|
||||
SHA1 (loudmouth-0.10.1.tar.bz2) = fae6774fe64a6833be5835b9d8d891e0068b64bb
|
||||
Size (loudmouth-0.10.1.tar.bz2) = 231670 bytes
|
Loading…
Reference in a new issue