mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
Sharedance is a high-performance server that centralize ephemeral
key/data pairs on remote hosts, without the overhead and the complexity of an SQL database. WWW: http://sharedance.pureftpd.org/project/sharedance PR: ports/122722 Submitted by: Gea-Suan Lin <gslin at gslin.org>
This commit is contained in:
parent
906205dde8
commit
851b613b5b
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=211271
@ -533,6 +533,7 @@
|
||||
SUBDIR += rubygem-postgres
|
||||
SUBDIR += rubygem-rrdtool
|
||||
SUBDIR += rubygem-sqlite3
|
||||
SUBDIR += sharedance
|
||||
SUBDIR += skytools
|
||||
SUBDIR += slony1
|
||||
SUBDIR += sqlcached
|
||||
|
26
databases/sharedance/Makefile
Normal file
26
databases/sharedance/Makefile
Normal file
@ -0,0 +1,26 @@
|
||||
# New ports collection makefile for: sharedance
|
||||
# Date created: 2008-04-13
|
||||
# Whom: Gea-Suan Lin <gslin@gslin.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= sharedance
|
||||
PORTVERSION= 0.6
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= http://download.pureftpd.org/pub/sharedance/
|
||||
|
||||
MAINTAINER= gslin@gslin.org
|
||||
COMMENT= A daemon to centralize keys and associated data
|
||||
|
||||
LIB_DEPENDS= event-1.3e:${PORTSDIR}/devel/libevent
|
||||
|
||||
CONFIGURE_ARGS= --with-largefile
|
||||
GNU_CONFIGURE= yes
|
||||
USE_BZIP2= yes
|
||||
|
||||
post-install:
|
||||
${MKDIR} ${DATADIR}
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/php/*.php ${DATADIR}
|
||||
|
||||
.include <bsd.port.mk>
|
3
databases/sharedance/distinfo
Normal file
3
databases/sharedance/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
MD5 (sharedance-0.6.tar.bz2) = 73e60374cc04a825090530e90ce3e2ba
|
||||
SHA256 (sharedance-0.6.tar.bz2) = ed7df7c1b204027f992689cbca87420c21c3e2fc0b07169c1cb43e11ed634d05
|
||||
SIZE (sharedance-0.6.tar.bz2) = 88571
|
30
databases/sharedance/files/patch-src-sharedanced.c
Normal file
30
databases/sharedance/files/patch-src-sharedanced.c
Normal file
@ -0,0 +1,30 @@
|
||||
--- src/sharedanced.c.orig 2008-04-15 00:45:17.000000000 +0800
|
||||
+++ src/sharedanced.c 2008-04-15 00:45:25.000000000 +0800
|
||||
@@ -99,27 +99,6 @@
|
||||
#endif
|
||||
}
|
||||
|
||||
-static void setprogname(const char * const title)
|
||||
-{
|
||||
-#ifndef NO_PROCNAME_CHANGE
|
||||
-# ifdef HAVE_SETPROCTITLE
|
||||
- setproctitle("-%s", title);
|
||||
-# elif defined(__linux__)
|
||||
- if (argv0 != NULL) {
|
||||
- memset(argv0[0], 0, argv_lth);
|
||||
- strncpy(argv0[0], title, argv_lth - 2);
|
||||
- argv0[1] = NULL;
|
||||
- }
|
||||
-# elif defined(__hpux__)
|
||||
- union pstun pst;
|
||||
-
|
||||
- pst.pst_command = title;
|
||||
- pstat(PSTAT_SETCMD, pst, strlen(title), 0, 0);
|
||||
-# endif
|
||||
-#endif
|
||||
- (void) title;
|
||||
-}
|
||||
-
|
||||
static void usage(void)
|
||||
{
|
||||
puts("\n" PACKAGE_STRING " - " __DATE__ "\n");
|
5
databases/sharedance/pkg-descr
Normal file
5
databases/sharedance/pkg-descr
Normal file
@ -0,0 +1,5 @@
|
||||
Sharedance is a high-performance server that centralize ephemeral
|
||||
key/data pairs on remote hosts, without the overhead and the
|
||||
complexity of an SQL database.
|
||||
|
||||
WWW: http://sharedance.pureftpd.org/project/sharedance
|
7
databases/sharedance/pkg-plist
Normal file
7
databases/sharedance/pkg-plist
Normal file
@ -0,0 +1,7 @@
|
||||
@comment $FreeBSD$
|
||||
%%DATADIR%%/session_handler.php
|
||||
%%DATADIR%%/sharedance.php
|
||||
%%DATADIR%%/test_session.php
|
||||
%%DATADIR%%/test_sharedance.php
|
||||
sbin/sharedanced
|
||||
@dirrmtry %%DATADIR%%
|
Loading…
Reference in New Issue
Block a user