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. WWW: http://gobby.0x539.de PR: ports/87687 Submitted by: Andreas Kohn <andreas@syndrom23.de>
This commit is contained in:
parent
d8b39dfd0d
commit
a6c0dd327d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=146378
5 changed files with 90 additions and 0 deletions
|
@ -622,6 +622,7 @@
|
|||
SUBDIR += nspr
|
||||
SUBDIR += nx
|
||||
SUBDIR += oaf
|
||||
SUBDIR += obby
|
||||
SUBDIR += ocaml-camomile
|
||||
SUBDIR += ocaml-classes
|
||||
SUBDIR += ocaml-equeue
|
||||
|
|
45
devel/obby/Makefile
Normal file
45
devel/obby/Makefile
Normal file
|
@ -0,0 +1,45 @@
|
|||
# Ports collection makefile for: obby
|
||||
# Date created: 2005-10-14
|
||||
# Whom: Andreas Kohn <andreas@syndrom23.de>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= obby
|
||||
PORTVERSION= 0.2.1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://releases.0x539.de/obby/
|
||||
|
||||
MAINTAINER= andreas@syndrom23.de
|
||||
COMMENT= A library for synced document buffers
|
||||
|
||||
LIB_DEPENDS= sigc++-2.0.0:${PORTSDIR}/devel/libsigc++20 \
|
||||
gmp.6:${PORTSDIR}/math/libgmp4 \
|
||||
net6:${PORTSDIR}/net/net6
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --with-libgmp-prefix=${LOCALBASE} --without-howl
|
||||
USE_REINPLACE= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_LIBTOOL_VER= 15
|
||||
|
||||
.if !defined(WITHOUT_NLS)
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
|
||||
USE_GETTEXT= yes
|
||||
PLIST_SUB+= NLS=""
|
||||
.else
|
||||
CONFIGURE_ARGS+= --disable-nls
|
||||
PLIST_SUB+= NLS="@comment "
|
||||
.endif
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} 's,^pkgconfigdir = .*,pkgconfigdir=$$(prefix)/libdata/pkgconfig,' \
|
||||
${WRKSRC}/Makefile.in
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 500000
|
||||
IGNORE= "Some dependencies does not run on FreeBSD \< 5.x"
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
2
devel/obby/distinfo
Normal file
2
devel/obby/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
MD5 (obby-0.2.1.tar.gz) = 5e28bfbf6e72b007aa6d055594754810
|
||||
SIZE (obby-0.2.1.tar.gz) = 404106
|
5
devel/obby/pkg-descr
Normal file
5
devel/obby/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
|||
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.
|
||||
|
||||
WWW: http://gobby.0x539.de
|
37
devel/obby/pkg-plist
Normal file
37
devel/obby/pkg-plist
Normal file
|
@ -0,0 +1,37 @@
|
|||
include/obby/buffer.hpp
|
||||
include/obby/client_buffer.hpp
|
||||
include/obby/client_document.hpp
|
||||
include/obby/client_document_info.hpp
|
||||
include/obby/common.hpp
|
||||
include/obby/delete_record.hpp
|
||||
include/obby/document.hpp
|
||||
include/obby/document_info.hpp
|
||||
include/obby/duplex_signal.hpp
|
||||
include/obby/error.hpp
|
||||
include/obby/format_string.hpp
|
||||
include/obby/host_buffer.hpp
|
||||
include/obby/host_document.hpp
|
||||
include/obby/host_document_info.hpp
|
||||
include/obby/insert_record.hpp
|
||||
include/obby/line.hpp
|
||||
include/obby/local_buffer.hpp
|
||||
include/obby/local_document.hpp
|
||||
include/obby/local_document_info.hpp
|
||||
include/obby/position.hpp
|
||||
include/obby/ptr_iterator.hpp
|
||||
include/obby/record.hpp
|
||||
include/obby/rsa.hpp
|
||||
include/obby/server_buffer.hpp
|
||||
include/obby/server_document.hpp
|
||||
include/obby/server_document_info.hpp
|
||||
include/obby/sha1.hpp
|
||||
include/obby/user.hpp
|
||||
include/obby/user_table.hpp
|
||||
lib/libobby-0.2.so
|
||||
lib/libobby-0.2.so.0
|
||||
lib/libobby.a
|
||||
lib/libobby.so
|
||||
libdata/pkgconfig/obby-0.2.pc
|
||||
%%NLS%%share/locale/de/LC_MESSAGES/obby.mo
|
||||
%%NLS%%share/locale/fr/LC_MESSAGES/obby.mo
|
||||
@dirrm include/obby
|
Loading…
Reference in a new issue