pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/editors/obby Imported obby.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/0211b03509c4
branches:  trunk
changeset: 534955:0211b03509c4
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Sun Nov 04 10:06:06 2007 +0000

description:
Imported obby.

libobby is a library which provides synced document buffers. It supports
multiple documents in one session and is portable to both Windows and
Unix-like platforms.

diffstat:

 editors/obby/DESCR         |   3 ++
 editors/obby/Makefile      |  22 +++++++++++++++++++
 editors/obby/PLIST         |  51 ++++++++++++++++++++++++++++++++++++++++++++++
 editors/obby/buildlink3.mk |  23 ++++++++++++++++++++
 editors/obby/distinfo      |   5 ++++
 5 files changed, 104 insertions(+), 0 deletions(-)

diffs (124 lines):

diff -r 7d33d1b0fc29 -r 0211b03509c4 editors/obby/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/editors/obby/DESCR        Sun Nov 04 10:06:06 2007 +0000
@@ -0,0 +1,3 @@
+libobby is a library which provides synced document buffers. It supports
+multiple documents in one session and is portable to both Windows and
+Unix-like platforms.
diff -r 7d33d1b0fc29 -r 0211b03509c4 editors/obby/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/editors/obby/Makefile     Sun Nov 04 10:06:06 2007 +0000
@@ -0,0 +1,22 @@
+# $NetBSD: Makefile,v 1.1.1.1 2007/11/04 10:06:06 rillig Exp $
+#
+
+DISTNAME=      obby-0.4.4
+CATEGORIES=    editors
+MASTER_SITES=  http://releases.0x539.de/obby/
+
+MAINTAINER=    rillig%NetBSD.org@localhost
+HOMEPAGE=      http://gobby.0x539.de/
+COMMENT=       Library for distributed editing
+
+GNU_CONFIGURE=         yes
+USE_LIBTOOL=           yes
+USE_TOOLS+=            pkg-config
+USE_PKGLOCALEDIR=      yes
+USE_LANGUAGES=         c c++
+
+PKGCONFIG_OVERRIDE+=   obby-0.4.pc.in
+
+.include "../../devel/libsigc++/buildlink3.mk"
+.include "../../net/net6/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 7d33d1b0fc29 -r 0211b03509c4 editors/obby/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/editors/obby/PLIST        Sun Nov 04 10:06:06 2007 +0000
@@ -0,0 +1,51 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2007/11/04 10:06:06 rillig Exp $
+include/obby/buffer.hpp
+include/obby/chat.hpp
+include/obby/client_buffer.hpp
+include/obby/client_document_info.hpp
+include/obby/colour.hpp
+include/obby/command.hpp
+include/obby/common.hpp
+include/obby/delete_operation.hpp
+include/obby/document.hpp
+include/obby/document_info.hpp
+include/obby/document_packet.hpp
+include/obby/duplex_signal.hpp
+include/obby/error.hpp
+include/obby/format_string.hpp
+include/obby/host_buffer.hpp
+include/obby/host_document_info.hpp
+include/obby/insert_operation.hpp
+include/obby/jupiter_algorithm.hpp
+include/obby/jupiter_client.hpp
+include/obby/jupiter_error.hpp
+include/obby/jupiter_server.hpp
+include/obby/jupiter_undo.hpp
+include/obby/local_buffer.hpp
+include/obby/local_document_info.hpp
+include/obby/no_operation.hpp
+include/obby/operation.hpp
+include/obby/position.hpp
+include/obby/ptr_iterator.hpp
+include/obby/record.hpp
+include/obby/ring.hpp
+include/obby/serialise/attribute.hpp
+include/obby/serialise/error.hpp
+include/obby/serialise/object.hpp
+include/obby/serialise/parser.hpp
+include/obby/serialise/token.hpp
+include/obby/server_buffer.hpp
+include/obby/server_document_info.hpp
+include/obby/split_operation.hpp
+include/obby/text.hpp
+include/obby/user.hpp
+include/obby/user_table.hpp
+include/obby/vector_time.hpp
+lib/libobby.la
+lib/pkgconfig/obby-0.4.pc
+share/locale/ca/LC_MESSAGES/obby.mo
+share/locale/de/LC_MESSAGES/obby.mo
+share/locale/es/LC_MESSAGES/obby.mo
+share/locale/fr/LC_MESSAGES/obby.mo
+share/locale/nl/LC_MESSAGES/obby.mo
+share/locale/sv/LC_MESSAGES/obby.mo
diff -r 7d33d1b0fc29 -r 0211b03509c4 editors/obby/buildlink3.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/editors/obby/buildlink3.mk        Sun Nov 04 10:06:06 2007 +0000
@@ -0,0 +1,23 @@
+# $NetBSD: buildlink3.mk,v 1.1.1.1 2007/11/04 10:06:06 rillig Exp $
+#
+
+BUILDLINK_DEPTH:=      ${BUILDLINK_DEPTH}+
+OBBY_BUILDLINK3_MK:=   ${OBBY_BUILDLINK3_MK}+
+
+.if ${BUILDLINK_DEPTH} == "+"
+BUILDLINK_DEPENDS+=    obby
+.endif
+
+BUILDLINK_PACKAGES:=   ${BUILDLINK_PACKAGES:Nobby}
+BUILDLINK_PACKAGES+=   obby
+BUILDLINK_ORDER:=      ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}obby
+
+.if ${OBBY_BUILDLINK3_MK} == "+"
+BUILDLINK_API_DEPENDS.obby+=   obby>=0.4.4
+BUILDLINK_PKGSRCDIR.obby?=     ../../editors/obby
+.endif # OBBY_BUILDLINK3_MK
+
+.include "../../devel/libsigc++/buildlink3.mk"
+.include "../../net/net6/buildlink3.mk"
+
+BUILDLINK_DEPTH:=      ${BUILDLINK_DEPTH:S/+$//}
diff -r 7d33d1b0fc29 -r 0211b03509c4 editors/obby/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/editors/obby/distinfo     Sun Nov 04 10:06:06 2007 +0000
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2007/11/04 10:06:06 rillig Exp $
+
+SHA1 (obby-0.4.4.tar.gz) = 5886027b64a19b8f111bddf14902cb8329ce2766
+RMD160 (obby-0.4.4.tar.gz) = 88c83138f1f59736a910cd9266fc8294bc54e95f
+Size (obby-0.4.4.tar.gz) = 507564 bytes



Home | Main Index | Thread Index | Old Index