diff options
Diffstat (limited to 'net/minder')
-rw-r--r-- | net/minder/Makefile | 61 | ||||
-rw-r--r-- | net/minder/distinfo | 3 | ||||
-rw-r--r-- | net/minder/files/minder.cfg.sample | 7 | ||||
-rw-r--r-- | net/minder/files/patch-Makefile | 20 | ||||
-rw-r--r-- | net/minder/pkg-descr | 20 |
5 files changed, 0 insertions, 111 deletions
diff --git a/net/minder/Makefile b/net/minder/Makefile deleted file mode 100644 index 2f63ae568968..000000000000 --- a/net/minder/Makefile +++ /dev/null @@ -1,61 +0,0 @@ -# New ports collection makefile for: minder -# Date created: Sun Jan 16 01:16:28 UTC 2005 -# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= minder -PORTVERSION= 1.2 -PORTREVISION= 1 -CATEGORIES= net -MASTER_SITES= http://www.alhem.net/project/minder/ - -MAINTAINER= lioux@FreeBSD.org -COMMENT= A small network application for automatic maintenance of peer lists - -BUILD_DEPENDS= ${LOCALBASE}/lib/libSockets.a:${PORTSDIR}/net/Sockets - -USE_GMAKE= yes -USE_OPENSSL= yes -WITH_OPENSSL_BASE= yes -MAKE_ENV= CXX="${CXX}" -USE_REINPLACE= yes - -# ssl support -CFLAGS+= ${PTHREAD_CFLAGS} -DHAVE_OPENSSL - -PLIST_DIRS= \ - %%EXAMPLESDIR%% -PLIST_FILES= \ - %%EXAMPLESDIR%%/minder.cfg \ - bin/${PORTNAME} - -post-patch: -# CXX safeness -# CXXFLAGS safeness -# SSL include safeness - @${REINPLACE_CMD} -E \ - -e 's|-O2||' \ - -e 's|g\+\+|${CXX}|' \ - -e 's|^INCLUDE.+$$|INCLUDE=-I${OPENSSLINC} -I${LOCALBASE}/include/Sockets|' \ - -e 's|^LIBS.+$$|LIBS=-L${OPENSSLLIB} ${PTHREAD_LIBS} -L${LOCALBASE}/lib \\|' \ - ${BUILD_WRKSRC}/${MAKEFILE} - @${REINPLACE_CMD} -E \ - -e 's|\(__sighandler_t\)||' \ - ${WRKSRC}/minder.cpp - -do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin - @${MKDIR} ${EXAMPLESDIR} - @${INSTALL_DATA} ${FILESDIR}/minder.cfg.sample \ - ${EXAMPLESDIR}/minder.cfg - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 500000 -IGNORE= FreeBSD prior to 500000 does not support uuid(3) required\ - for building -.endif - -.include <bsd.port.post.mk> diff --git a/net/minder/distinfo b/net/minder/distinfo deleted file mode 100644 index c381a05731d5..000000000000 --- a/net/minder/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (minder-1.2.tar.gz) = d82b1a0646889e93003f1964bd5a38e3 -SHA256 (minder-1.2.tar.gz) = 2efe5e5cc1f0e9afdfcf6effb304258578af95a2a0606843e31a2de827f92aa3 -SIZE (minder-1.2.tar.gz) = 12228 diff --git a/net/minder/files/minder.cfg.sample b/net/minder/files/minder.cfg.sample deleted file mode 100644 index f00feb49fe08..000000000000 --- a/net/minder/files/minder.cfg.sample +++ /dev/null @@ -1,7 +0,0 @@ -frimud/dbname -frimud/update_host -minder_port 9696 -next_host_id 16 -redir_port -viawww/dbname -viawww/update_host diff --git a/net/minder/files/patch-Makefile b/net/minder/files/patch-Makefile deleted file mode 100644 index 4139caf9d998..000000000000 --- a/net/minder/files/patch-Makefile +++ /dev/null @@ -1,20 +0,0 @@ ---- Makefile.orig Sun Sep 25 02:56:46 2005 -+++ Makefile Sun Sep 25 02:57:16 2005 -@@ -6,7 +6,7 @@ - CPPFLAGS = $(CFLAGS) - - LIBS = -L/usr/local/lib -lSockets \ -- -lssl -lcrypto -luuid -lpthread -+ -lssl -lcrypto -lSockets - - PROGS = minder - all: $(PROGS) -@@ -21,7 +21,7 @@ - rm -f *.o *~ *.d slask $(PROGS) - - install: all -- install --strip $(PROGS) /usr/local/bin -+ @${BSD_INSTALL_PROGRAM} $(PROGS) /usr/local/bin - - -include *.d - diff --git a/net/minder/pkg-descr b/net/minder/pkg-descr deleted file mode 100644 index 39c481e41ada..000000000000 --- a/net/minder/pkg-descr +++ /dev/null @@ -1,20 +0,0 @@ -[ excerpt from developer's web site ] - -The minder is a small network application for automatic maintenance -of peer lists. The application accepts connections from other network -entities ("minions") and returns a list of other identitical minions. - -When a minion contacts the minder, the minion supplies its type, -network port and address, and its unique node identification. - -The framework for building a minion is included in the C++ Sockets -Library. The framework consists of classes representing connections -between minion-minder and minion-minion, and also a controller class -for them both. - -The minder itself is also built with the C++ Sockets Library as its -foundation. - -WWW: http://www.alhem.net/project/minder/index.html - --- lioux@FreeBSD.org |