summaryrefslogtreecommitdiff
path: root/productivity
diff options
context:
space:
mode:
authorVineet Kumar <git@vineetk.net>2026-06-15 14:54:51 -0400
committerVineet Kumar <git@vineetk.net>2026-06-15 14:54:51 -0400
commite81f04fa53e7e01afdc834d9c22b5c982c98f59b (patch)
tree763d6d68516ca9d184ddd2402978adcc4027a99d /productivity
parent92e45e47c29ec037842c4a34ebc0c14143d413ff (diff)
remove all ports to start from clean slateHEADmaster
This is due to the following two reasons: 1. it's very out of date compared with current ports tree (like by 2+ years!) - some of the ports here were mainly just updates I didn't upstream, which have since now been part of openbsd, like verilator 2. removing dependencies is a lot of headache to stay in sync and/or for ports I no longer use - e.g. dbus is very difficult to remove in a desktop while patching to remove from gtk and downstream - I don't want to spend more time reducing number of dependencies when I can be working instead. I no longer have as much free time as I did in high school :(
Diffstat (limited to 'productivity')
-rw-r--r--productivity/calcurse/CVS/Entries4
-rw-r--r--productivity/calcurse/CVS/Repository1
-rw-r--r--productivity/calcurse/CVS/Root1
-rw-r--r--productivity/calcurse/Makefile27
-rw-r--r--productivity/calcurse/distinfo2
-rw-r--r--productivity/calcurse/patches/CVS/Entries2
-rw-r--r--productivity/calcurse/patches/CVS/Repository1
-rw-r--r--productivity/calcurse/patches/CVS/Root1
-rw-r--r--productivity/calcurse/patches/patch-src_args_c19
-rw-r--r--productivity/calcurse/pkg/CVS/Entries3
-rw-r--r--productivity/calcurse/pkg/CVS/Repository1
-rw-r--r--productivity/calcurse/pkg/CVS/Root1
-rw-r--r--productivity/calcurse/pkg/DESCR5
-rw-r--r--productivity/calcurse/pkg/PLIST38
14 files changed, 0 insertions, 106 deletions
diff --git a/productivity/calcurse/CVS/Entries b/productivity/calcurse/CVS/Entries
deleted file mode 100644
index 2edd3b6..0000000
--- a/productivity/calcurse/CVS/Entries
+++ /dev/null
@@ -1,4 +0,0 @@
1/Makefile/1.41/Fri Mar 11 19:51:40 2022//
2/distinfo/1.22/Sat May 1 13:42:25 2021//
3D/patches////
4D/pkg////
diff --git a/productivity/calcurse/CVS/Repository b/productivity/calcurse/CVS/Repository
deleted file mode 100644
index bf3c4dd..0000000
--- a/productivity/calcurse/CVS/Repository
+++ /dev/null
@@ -1 +0,0 @@
1ports/productivity/calcurse
diff --git a/productivity/calcurse/CVS/Root b/productivity/calcurse/CVS/Root
deleted file mode 100644
index 3811072..0000000
--- a/productivity/calcurse/CVS/Root
+++ /dev/null
@@ -1 +0,0 @@
1/cvs
diff --git a/productivity/calcurse/Makefile b/productivity/calcurse/Makefile
deleted file mode 100644
index 6e94766..0000000
--- a/productivity/calcurse/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
1COMMENT= text-based calendar and scheduling application
2
3DISTNAME= calcurse-4.8.0
4REVISION= 1
5EPOCH= 0
6
7CATEGORIES= productivity
8
9HOMEPAGE= https://calcurse.org/
10
11# BSD
12PERMIT_PACKAGE= Yes
13
14WANTLIB += c curses iconv intl m pthread
15
16MASTER_SITES= ${HOMEPAGE}files/
17
18LIB_DEPENDS= devel/gettext,-runtime
19
20CONFIGURE_STYLE=gnu
21CONFIGURE_ARGS= --without-asciidoc
22
23post-install:
24 rm ${PREFIX}/bin/calcurse-{caldav,vdir}
25 ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/calcurse
26
27.include <bsd.port.mk>
diff --git a/productivity/calcurse/distinfo b/productivity/calcurse/distinfo
deleted file mode 100644
index bc2edde..0000000
--- a/productivity/calcurse/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
1SHA256 (calcurse-4.8.0.tar.gz) = SKc2ZmzEtrUwEtc7OqcBUsGLQebHtIB/qw8WjWRa4yw=
2SIZE (calcurse-4.8.0.tar.gz) = 716234
diff --git a/productivity/calcurse/patches/CVS/Entries b/productivity/calcurse/patches/CVS/Entries
deleted file mode 100644
index e29a83d..0000000
--- a/productivity/calcurse/patches/CVS/Entries
+++ /dev/null
@@ -1,2 +0,0 @@
1/patch-src_args_c/1.5/Fri Mar 11 19:51:40 2022//
2D
diff --git a/productivity/calcurse/patches/CVS/Repository b/productivity/calcurse/patches/CVS/Repository
deleted file mode 100644
index 3f23a24..0000000
--- a/productivity/calcurse/patches/CVS/Repository
+++ /dev/null
@@ -1 +0,0 @@
1ports/productivity/calcurse/patches
diff --git a/productivity/calcurse/patches/CVS/Root b/productivity/calcurse/patches/CVS/Root
deleted file mode 100644
index 3811072..0000000
--- a/productivity/calcurse/patches/CVS/Root
+++ /dev/null
@@ -1 +0,0 @@
1/cvs
diff --git a/productivity/calcurse/patches/patch-src_args_c b/productivity/calcurse/patches/patch-src_args_c
deleted file mode 100644
index 1378b34..0000000
--- a/productivity/calcurse/patches/patch-src_args_c
+++ /dev/null
@@ -1,19 +0,0 @@
1calcurse uses long for times all over the place; dirty fix for 32-bit
2arch with 64-bit time_t
3
4Index: src/args.c
5--- src/args.c.orig
6+++ src/args.c
7@@ -251,10 +251,11 @@ static void next_arg(void)
8 /*
9 * Print the date on stdout.
10 */
11-static void arg_print_date(long date)
12+static void arg_print_date(long date_l)
13 {
14 char date_str[BUFSIZ];
15 struct tm lt;
16+ time_t date = date_l;
17
18 localtime_r((time_t *) & date, &lt);
19 strftime(date_str, BUFSIZ, conf.output_datefmt, &lt);
diff --git a/productivity/calcurse/pkg/CVS/Entries b/productivity/calcurse/pkg/CVS/Entries
deleted file mode 100644
index 5b5f4d3..0000000
--- a/productivity/calcurse/pkg/CVS/Entries
+++ /dev/null
@@ -1,3 +0,0 @@
1/DESCR/1.1.1.1/Sat Oct 27 15:25:37 2007//
2/PLIST/1.13/Fri Mar 11 19:51:40 2022//
3D
diff --git a/productivity/calcurse/pkg/CVS/Repository b/productivity/calcurse/pkg/CVS/Repository
deleted file mode 100644
index d1c715b..0000000
--- a/productivity/calcurse/pkg/CVS/Repository
+++ /dev/null
@@ -1 +0,0 @@
1ports/productivity/calcurse/pkg
diff --git a/productivity/calcurse/pkg/CVS/Root b/productivity/calcurse/pkg/CVS/Root
deleted file mode 100644
index 3811072..0000000
--- a/productivity/calcurse/pkg/CVS/Root
+++ /dev/null
@@ -1 +0,0 @@
1/cvs
diff --git a/productivity/calcurse/pkg/DESCR b/productivity/calcurse/pkg/DESCR
deleted file mode 100644
index d0e2f49..0000000
--- a/productivity/calcurse/pkg/DESCR
+++ /dev/null
@@ -1,5 +0,0 @@
1Calcurse is a text-based calendar and scheduling application. It helps
2keeping track of events, appointments and everyday tasks.
3A configurable notification system reminds user of upcoming deadlines,
4and the curses based interface can be customized to suit user needs.
5All of the commands are documented within an online help system.
diff --git a/productivity/calcurse/pkg/PLIST b/productivity/calcurse/pkg/PLIST
deleted file mode 100644
index 7160a7e..0000000
--- a/productivity/calcurse/pkg/PLIST
+++ /dev/null
@@ -1,38 +0,0 @@
1@bin bin/calcurse
2bin/calcurse-upgrade
3@man man/man1/calcurse.1
4share/doc/calcurse/
5share/doc/calcurse/add.txt
6share/doc/calcurse/config.txt
7share/doc/calcurse/copy-paste.txt
8share/doc/calcurse/credits.txt
9share/doc/calcurse/delete.txt
10share/doc/calcurse/displacement.txt
11share/doc/calcurse/edit.txt
12share/doc/calcurse/enote.txt
13share/doc/calcurse/export.txt
14share/doc/calcurse/flag.txt
15share/doc/calcurse/general.txt
16share/doc/calcurse/goto.txt
17share/doc/calcurse/import.txt
18share/doc/calcurse/intro.txt
19share/doc/calcurse/manual.html
20share/doc/calcurse/manual.txt
21share/doc/calcurse/other.txt
22share/doc/calcurse/pipe.txt
23share/doc/calcurse/priority.txt
24share/doc/calcurse/reload.txt
25share/doc/calcurse/repeat.txt
26share/doc/calcurse/save.txt
27share/doc/calcurse/submitting-patches.html
28share/doc/calcurse/tab.txt
29share/doc/calcurse/view.txt
30share/doc/calcurse/vnote.txt
31share/examples/calcurse/
32share/locale/de/LC_MESSAGES/calcurse.mo
33share/locale/en/LC_MESSAGES/calcurse.mo
34share/locale/es/LC_MESSAGES/calcurse.mo
35share/locale/fr/LC_MESSAGES/calcurse.mo
36share/locale/nl/LC_MESSAGES/calcurse.mo
37share/locale/pt_BR/LC_MESSAGES/calcurse.mo
38share/locale/ru/LC_MESSAGES/calcurse.mo