summaryrefslogtreecommitdiffstats
path: root/misc/misterproper
diff options
context:
space:
mode:
authormezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059>2007-05-04 10:23:30 +0800
committermezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059>2007-05-04 10:23:30 +0800
commitc99f038b1770f44b0ef7520b6a66bddeb89438f3 (patch)
tree6cce27b28249ae2b023a3cab001cbbb399c99fce /misc/misterproper
parent482f24c9552a62b9dd5ac390c8327176b5a19816 (diff)
downloadmarcuscom-ports-c99f038b1770f44b0ef7520b6a66bddeb89438f3.tar
marcuscom-ports-c99f038b1770f44b0ef7520b6a66bddeb89438f3.tar.gz
marcuscom-ports-c99f038b1770f44b0ef7520b6a66bddeb89438f3.tar.bz2
marcuscom-ports-c99f038b1770f44b0ef7520b6a66bddeb89438f3.tar.lz
marcuscom-ports-c99f038b1770f44b0ef7520b6a66bddeb89438f3.tar.xz
marcuscom-ports-c99f038b1770f44b0ef7520b6a66bddeb89438f3.tar.zst
marcuscom-ports-c99f038b1770f44b0ef7520b6a66bddeb89438f3.zip
share/gnome/ -> share/
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@8806 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'misc/misterproper')
-rw-r--r--misc/misterproper/Makefile26
-rw-r--r--misc/misterproper/distinfo3
-rw-r--r--misc/misterproper/files/patch-aa31
-rw-r--r--misc/misterproper/pkg-descr13
-rw-r--r--misc/misterproper/pkg-plist8
5 files changed, 81 insertions, 0 deletions
diff --git a/misc/misterproper/Makefile b/misc/misterproper/Makefile
new file mode 100644
index 000000000..33e841fba
--- /dev/null
+++ b/misc/misterproper/Makefile
@@ -0,0 +1,26 @@
+# New ports collection makefile for: misterproper
+# Date created: 12 December 2000
+# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= misterproper
+PORTVERSION= 0.4
+PORTREVISION= 3
+CATEGORIES= misc gnome
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+#ftp://misterproper.sourceforge.net/pub/misterproper/releases/ \
+MASTER_SITE_SUBDIR= ${PORTNAME}
+
+MAINTAINER= ports@FreeBSD.org
+COMMENT= A GNOME application designed to manage cyclic tasks
+
+USE_X_PREFIX= yes
+USE_GNOME= gnomehack gnomelibs gnomeprefix gnometarget
+USE_GMAKE= yes
+GNU_CONFIGURE= yes
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+
+.include <bsd.port.mk>
diff --git a/misc/misterproper/distinfo b/misc/misterproper/distinfo
new file mode 100644
index 000000000..490750f02
--- /dev/null
+++ b/misc/misterproper/distinfo
@@ -0,0 +1,3 @@
+MD5 (misterproper-0.4.tar.gz) = 38e5548ca8b7f05ecdf825678012c600
+SHA256 (misterproper-0.4.tar.gz) = 443a4f92e02c5ed74afc5d6f4121c88ac4be496fffe17393d72c68617d6ae458
+SIZE (misterproper-0.4.tar.gz) = 357107
diff --git a/misc/misterproper/files/patch-aa b/misc/misterproper/files/patch-aa
new file mode 100644
index 000000000..84e9850b1
--- /dev/null
+++ b/misc/misterproper/files/patch-aa
@@ -0,0 +1,31 @@
+
+$FreeBSD$
+
+--- src/main.c.orig Sat Mar 3 15:03:28 2001
++++ src/main.c Fri Aug 31 15:28:37 2001
+@@ -2,7 +2,6 @@
+ # include <config.h>
+ #endif
+
+-#include <getopt.h>
+ #include <gnome.h>
+
+ #include "interface.h"
+@@ -230,7 +229,7 @@
+ g_free(thing);
+ continue;
+ }
+- if ((thing->frequency = (time_t) strtoull(skunk, NULL, 10))
++ if ((thing->frequency = (time_t) strtoul(skunk, NULL, 10))
+ == (time_t) 0ULL) {
+ g_warning(_("Corrupted database : null frequency\n"));
+ g_free(thing);
+@@ -247,7 +246,7 @@
+ (rand() % (thing->frequency * 4)) -
+ (thing->frequency * 2) + thing->frequency / 2;
+ } else {
+- thing->last = (time_t) strtoull(skunk, NULL, 10);
++ thing->last = (time_t) strtoul(skunk, NULL, 10);
+ }
+ if ((skunk = strtok(NULL, DBSEP)) == NULL) {
+ g_warning(_
diff --git a/misc/misterproper/pkg-descr b/misc/misterproper/pkg-descr
new file mode 100644
index 000000000..636d0a7bf
--- /dev/null
+++ b/misc/misterproper/pkg-descr
@@ -0,0 +1,13 @@
+Mister Proper is a GNOME application designed to manage cyclic tasks. It was
+especially designed to keep your house clean with the best possible tidying
+organization.
+
+Although Mister Proper is really handy as a time-scheduler for your home
+tidying, it is also good at any cyclic task such as going to the doctor's,
+giving your grandmother a phone call, and so on.
+
+English and French locales are supported. If you are able to translate this
+piece of software into other languages, please do. Patches, comments and
+suggestions are also welcome.
+
+WWW: http://misterproper.sourceforge.net/
diff --git a/misc/misterproper/pkg-plist b/misc/misterproper/pkg-plist
new file mode 100644
index 000000000..d488520f5
--- /dev/null
+++ b/misc/misterproper/pkg-plist
@@ -0,0 +1,8 @@
+bin/misterproper
+share/locale/de/LC_MESSAGES/misterproper.mo
+share/locale/es/LC_MESSAGES/misterproper.mo
+share/locale/fr/LC_MESSAGES/misterproper.mo
+share/locale/pt/LC_MESSAGES/misterproper.mo
+share/locale/sv/LC_MESSAGES/misterproper.mo
+share/pixmaps/misterproper/misterproper.xpm
+@dirrm share/pixmaps/misterproper