summaryrefslogtreecommitdiff
path: root/mail/sigit
diff options
context:
space:
mode:
Diffstat (limited to 'mail/sigit')
-rw-r--r--mail/sigit/Makefile40
-rw-r--r--mail/sigit/distinfo2
-rw-r--r--mail/sigit/files/patch-configure34
-rw-r--r--mail/sigit/files/patch-data-Makefile11
-rw-r--r--mail/sigit/pkg-descr5
-rw-r--r--mail/sigit/pkg-plist8
6 files changed, 0 insertions, 100 deletions
diff --git a/mail/sigit/Makefile b/mail/sigit/Makefile
deleted file mode 100644
index 30d4ec7e3523..000000000000
--- a/mail/sigit/Makefile
+++ /dev/null
@@ -1,40 +0,0 @@
-# Created by: petef
-# $FreeBSD$
-
-PORTNAME= sigit
-PORTVERSION= 0.3.0
-CATEGORIES= mail
-MASTER_SITES= http://www.redhead.dk/download/stable/
-DISTNAME= Sigit-${PORTVERSION}
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= A tool to create random signatures
-
-DEPRECATED= No more public distfiles
-EXPIRATION_DATE= 2014-03-10
-
-BUILD_DEPENDS= ${LOCALBASE}/bin/boxes:${PORTSDIR}/misc/boxes
-
-LICENSE= GPLv2
-
-USES= perl5
-USE_PERL5= build
-USE_GMAKE= yes
-HAS_CONFIGURE= yes
-CONFIGURE_ARGS= --prefix=${DATADIR} \
- --bin-dir=${PREFIX}/bin \
- --man-dir=${PREFIX}/man \
- --etc-dir=${PREFIX}/etc
-
-MAN1= sigit.1 sigitdb.1
-MAN5= sigit.rc.5
-
-NO_STAGE= yes
-post-patch:
- @${MV} ${WRKSRC}/data/sigit.rc ${WRKSRC}/data/sigit.rc.dist
-
-post-install:
- @(if [ ! -f ${PREFIX}/etc/sigit.rc ]; then \
- ${CP} ${PREFIX}/etc/sigit.rc.dist ${PREFIX}/etc/sigit.rc; fi)
-
-.include <bsd.port.mk>
diff --git a/mail/sigit/distinfo b/mail/sigit/distinfo
deleted file mode 100644
index 56b564a36dea..000000000000
--- a/mail/sigit/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (Sigit-0.3.0.tar.gz) = 1ad816a86fddaddb2d2891bddd30bb8d0296d71b28edf9c809942ed0b10bc1ab
-SIZE (Sigit-0.3.0.tar.gz) = 133414
diff --git a/mail/sigit/files/patch-configure b/mail/sigit/files/patch-configure
deleted file mode 100644
index c2dcc1bc1a93..000000000000
--- a/mail/sigit/files/patch-configure
+++ /dev/null
@@ -1,34 +0,0 @@
---- configure.orig 2003-07-28 19:47:51.000000000 +0200
-+++ configure 2010-07-20 15:00:43.000000000 +0200
-@@ -1084,16 +1084,25 @@
- echo $echo_front "Checking for POSIX threads... $echo_end" 1>&5
- fi
- cat <<EOF >__conftest.c
--#include <unistd.h>
- #include <pthread.h>
--int count=0;
--void *handle() { count++;}
--int main() {
-+#include <stdio.h>
-+#define NUM_THREADS 5
-+
-+int count = 0;
-+
-+void *test_thread()
-+{
-+ count++;
-+ pthread_exit(NULL);
-+}
-+
-+int main (int argc, char *argv[])
-+{
- pthread_t thread;
-- pthread_attr_t attr;
-- pthread_create(&thread, &attr, handle, NULL);
-+ pthread_create(&thread, NULL, test_thread, 0);
- return 0;
- }
-+
- EOF
-
- if [ x"$PRELINK" = x ]; then
diff --git a/mail/sigit/files/patch-data-Makefile b/mail/sigit/files/patch-data-Makefile
deleted file mode 100644
index b7fe4bc840f2..000000000000
--- a/mail/sigit/files/patch-data-Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
---- data/Makefile.orig 2010-07-18 20:52:04.000000000 +0200
-+++ data/Makefile 2010-07-18 20:52:39.000000000 +0200
-@@ -18,7 +18,7 @@
- $(INSTALL) -d $(INSTALLROOT)$(ETCDIR)
- $(INSTALL) -m $(MANMODE) sigit.data $(INSTALLROOT)$(PREFIX)
- $(INSTALL) -m $(MANMODE) sigit.sig $(INSTALLROOT)$(PREFIX)
-- $(INSTALL) -m $(MANMODE) sigit.rc $(INSTALLROOT)$(ETCDIR)
-+ $(INSTALL) -m $(MANMODE) sigit.rc.dist $(INSTALLROOT)$(ETCDIR)
-
- # and a way to remove it again.
- uninstall:
diff --git a/mail/sigit/pkg-descr b/mail/sigit/pkg-descr
deleted file mode 100644
index c3e4f4284cae..000000000000
--- a/mail/sigit/pkg-descr
+++ /dev/null
@@ -1,5 +0,0 @@
-sigit is a tool that runs in the background and puts a random quote
-in a file (usually .plan or .signature) at a configurable interval.
-It comes with sample data, and custom quotes can be added.
-
-WWW: http://www.redhead.dk/download/
diff --git a/mail/sigit/pkg-plist b/mail/sigit/pkg-plist
deleted file mode 100644
index cc72cb0eccc2..000000000000
--- a/mail/sigit/pkg-plist
+++ /dev/null
@@ -1,8 +0,0 @@
-bin/sigit
-bin/sigitdb
-@unexec if cmp -s %D/etc/sigit.rc.dist %D/etc/sigit.rc; then rm -f %D/etc/sigit.rc; fi
-etc/sigit.rc.dist
-@exec if [ ! -f %D/etc/sigit.rc ]; then cp %D/etc/%f %D/etc/sigit.rc; fi
-%%DATADIR%%/sigit.data
-%%DATADIR%%/sigit.sig
-@dirrm %%DATADIR%%