1
0
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:
Cheng-Lung Sung 2008-04-15 01:02:20 +00:00
parent 906205dde8
commit 851b613b5b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=211271
6 changed files with 72 additions and 0 deletions

View File

@ -533,6 +533,7 @@
SUBDIR += rubygem-postgres
SUBDIR += rubygem-rrdtool
SUBDIR += rubygem-sqlite3
SUBDIR += sharedance
SUBDIR += skytools
SUBDIR += slony1
SUBDIR += sqlcached

View 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>

View 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

View 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");

View 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

View 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%%