Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

6
time/ptimetracker/DESCR Normal file
View File

@@ -0,0 +1,6 @@
PTimeTracker is a small Qt-based program that helps you keep track
of the time spent on projects. The time in minutes spent on the
active project is displayed on the icon and title bar and therefore
viewable even when the program is minimised. A detailed report is
available on total hours worked on different projects. This report
displays the amount of time spent on each of the projects per day.

View File

@@ -0,0 +1,27 @@
# $NetBSD: Makefile,v 1.25 2013/06/06 12:55:08 wiz Exp $
DISTNAME= ptimetracker-1.7.3
PKGREVISION= 13
CATEGORIES= time kde
MASTER_SITES= http://www.eggtart.plus.com/ptt/prog/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.eggtart.plus.com/ptt/
COMMENT= Keep track of the time spent on projects
# USE_GNOME= gnomehack gnomeprefix libgtkhtml libgnomeui
USE_LANGUAGES= c++
USE_TOOLS+= gmake
USE_LIBTOOL= yes
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
do-configure:
cd ${WRKSRC} && ${QTDIR}/bin/qmake -o Makefile ptt.pro
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/ptimetracker ${DESTDIR}${PREFIX}/bin/
${INSTALL_MAN} ${WRKSRC}/ptimetracker.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/
.include "../../x11/qt3-libs/buildlink3.mk"
.include "../../x11/qt3-tools/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

3
time/ptimetracker/PLIST Normal file
View File

@@ -0,0 +1,3 @@
@comment $NetBSD: PLIST,v 1.1.1.1 2004/10/23 07:10:26 jdolecek Exp $
bin/ptimetracker
man/man1/ptimetracker.1

View File

@@ -0,0 +1,10 @@
$NetBSD: distinfo,v 1.3 2011/11/22 20:03:56 joerg Exp $
SHA1 (ptimetracker-1.7.3.tar.gz) = f5a3fddab046b36d3c96a4f8572ec3f0509883f1
RMD160 (ptimetracker-1.7.3.tar.gz) = ab1d0cfe90ee715d005b002ab8bc20e47b040862
Size (ptimetracker-1.7.3.tar.gz) = 36992 bytes
SHA1 (patch-src-sucker.cc) = 7fa071ff585354e3c3c5174b4b3379e782b12e3f
SHA1 (patch-src-sucker.hh) = de174699ebae69842bb1e9e61bf7031b18f5626c
SHA1 (patch-src-weeport.cc) = 48506b9339df00e986c30f9d935ee00971428b60
SHA1 (patch-src-weeport.hh) = 2376e84a07837f56f3fbcd3c03ef629a03b63264
SHA1 (patch-src-widgets.hh) = a3a2ceab676bddb4ab3c113b337b86d4444dcb98

View File

@@ -0,0 +1,22 @@
$NetBSD: patch-src-sucker.cc,v 1.1 2011/11/22 20:03:56 joerg Exp $
--- src/sucker.cc.orig 2011-11-22 19:09:34.000000000 +0000
+++ src/sucker.cc
@@ -24,7 +24,7 @@
#include "sucker.hh"
#include <math.h>
-#include <iostream.h>
+#include <iostream>
#include <qtable.h>
#include <qfile.h>
#include <qtextstream.h>
@@ -33,6 +33,8 @@
#include <qmessagebox.h>
#include <assert.h>
+using namespace std;
+
/********************************************************************
class for handling projects
*/

View File

@@ -0,0 +1,15 @@
$NetBSD: patch-src-sucker.hh,v 1.1 2011/11/22 20:03:56 joerg Exp $
--- src/sucker.hh.orig 2011-11-22 19:09:36.000000000 +0000
+++ src/sucker.hh
@@ -29,8 +29,9 @@
#include <qstring.h>
#include <qtable.h>
#include <qdatetime.h>
-#include <vector.h>
+#include <vector>
+using namespace std;
/********************************************************************
class for handling projects

View File

@@ -0,0 +1,18 @@
$NetBSD: patch-src-weeport.cc,v 1.1 2011/11/22 20:03:56 joerg Exp $
--- src/weeport.cc.orig 2011-11-22 19:09:39.000000000 +0000
+++ src/weeport.cc
@@ -24,5 +24,5 @@
****************************************************************************/
-#include <iostream.h>
+#include <iostream>
#include <stdlib.h>
@@ -49,4 +49,6 @@
#include "weeport.hh"
+using namespace std;
+
/*--------------------------------------------------------------------
Class : Weeport

View File

@@ -0,0 +1,15 @@
$NetBSD: patch-src-weeport.hh,v 1.1 2011/11/22 20:03:56 joerg Exp $
--- src/weeport.hh.orig 2011-11-22 19:09:45.000000000 +0000
+++ src/weeport.hh
@@ -31,7 +31,9 @@
#include <qfont.h>
#include <qtextview.h>
-#include <vector.h>
+#include <vector>
+
+using namespace std;
class QListBox;
class QPopupMenu;

View File

@@ -0,0 +1,18 @@
$NetBSD: patch-src-widgets.hh,v 1.1 2011/11/22 20:03:56 joerg Exp $
--- src/widgets.hh.orig 2011-11-22 19:09:42.000000000 +0000
+++ src/widgets.hh
@@ -31,10 +31,12 @@
#include <qcombobox.h>
#include <qspinbox.h>
#include <qpopupmenu.h>
-#include <vector.h>
+#include <vector>
#include <qcheckbox.h>
#include <qlistbox.h>
+using namespace std;
+
class QToolBar;
class QToolButton;
class Sucker;