diff options
author | rillig <rillig@pkgsrc.org> | 2007-11-04 10:06:06 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-11-04 10:06:06 +0000 |
commit | 936cc1a2c8bdd8e8dcb263d8647f7f8548b1aa57 (patch) | |
tree | 063f15fbec45d9f440720a61878705f884e8444f /editors/obby | |
parent | 2bab46882d75147da0da7fcfee903a26a5bb49f4 (diff) | |
download | pkgsrc-936cc1a2c8bdd8e8dcb263d8647f7f8548b1aa57.tar.gz |
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 (limited to 'editors/obby')
-rw-r--r-- | editors/obby/DESCR | 3 | ||||
-rw-r--r-- | editors/obby/Makefile | 22 | ||||
-rw-r--r-- | editors/obby/PLIST | 51 | ||||
-rw-r--r-- | editors/obby/buildlink3.mk | 23 | ||||
-rw-r--r-- | editors/obby/distinfo | 5 |
5 files changed, 104 insertions, 0 deletions
diff --git a/editors/obby/DESCR b/editors/obby/DESCR new file mode 100644 index 00000000000..c7317ab61ee --- /dev/null +++ b/editors/obby/DESCR @@ -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 --git a/editors/obby/Makefile b/editors/obby/Makefile new file mode 100644 index 00000000000..3d6dbca8f11 --- /dev/null +++ b/editors/obby/Makefile @@ -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 +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 --git a/editors/obby/PLIST b/editors/obby/PLIST new file mode 100644 index 00000000000..f7ad6bd2808 --- /dev/null +++ b/editors/obby/PLIST @@ -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 --git a/editors/obby/buildlink3.mk b/editors/obby/buildlink3.mk new file mode 100644 index 00000000000..befc82ab738 --- /dev/null +++ b/editors/obby/buildlink3.mk @@ -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 --git a/editors/obby/distinfo b/editors/obby/distinfo new file mode 100644 index 00000000000..6908d8f094b --- /dev/null +++ b/editors/obby/distinfo @@ -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 |