View | Details | Raw Unified | Return to bug 284371 | Differences between
and this patch

Collapse All | Expand All

(-)b/ports-mgmt/portrac/Makefile (-6 / +7 lines)
Lines 1-8 Link Here
1
PORTNAME=	portrac
1
PORTNAME=	portrac
2
PORTVERSION=	0.5.1
2
PORTVERSION=	0.6
3
CATEGORIES=	ports-mgmt
3
CATEGORIES=	ports-mgmt
4
MASTER_SITES=	http://e-soul.org/distfiles/ \
4
DISTNAME=       v${PORTVERSION}
5
		http://home.e-soul.org/~mgp/distfiles/
5
MASTER_SITES=	https://github.com/e-soul/portrac/archive/refs/tags/
6
WRKSRC=         ${WRKDIR}/${PORTNAME}-${PORTVERSION}
6
7
7
MAINTAINER=	Mario.G.Pavlov@gmail.com
8
MAINTAINER=	Mario.G.Pavlov@gmail.com
8
COMMENT=	Simple GUI tool for tracking port updates
9
COMMENT=	Simple GUI tool for tracking port updates
Lines 10-16 WWW= https://portrac.e-soul.org/ Link Here
10
11
11
LICENSE=	BSD2CLAUSE
12
LICENSE=	BSD2CLAUSE
12
13
13
USES=		compiler:c++11-lib gl qmake qt:5 tar:bzip2
14
USES=		compiler:c++11-lib gl qmake qt:5
14
USE_CXXSTD=	c++11
15
USE_CXXSTD=	c++11
15
USE_GL=		gl
16
USE_GL=		gl
16
USE_QT=		buildtools:build core gui widgets
17
USE_QT=		buildtools:build core gui widgets
Lines 21-28 PLIST_FILES= bin/portrac \ Link Here
21
		share/portrac/updates-available.png
22
		share/portrac/updates-available.png
22
23
23
do-install:
24
do-install:
24
	${INSTALL_PROGRAM} ${WRKDIR}/${DISTNAME}/portrac ${STAGEDIR}${PREFIX}/bin && \
25
	${INSTALL_PROGRAM} ${WRKSRC}/portrac ${STAGEDIR}${PREFIX}/bin && \
25
		${MKDIR} ${STAGEDIR}${DATADIR} && \
26
		${MKDIR} ${STAGEDIR}${DATADIR} && \
26
		${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/*.png ${STAGEDIR}${DATADIR}
27
		${INSTALL_DATA} ${WRKSRC}/*.png ${STAGEDIR}${DATADIR}
27
28
28
.include <bsd.port.mk>
29
.include <bsd.port.mk>
(-)b/ports-mgmt/portrac/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1634741583
1
TIMESTAMP = 1737922519
2
SHA256 (portrac-0.5.1.tar.bz2) = 1cbd8e6059db7414f2cb3da903fc9750ca4fb4157a14218745926cd1c393b8cd
2
SHA256 (v0.6.tar.gz) = 9221682f36b2bd451107682383ebbd6d74ecdfb2cc0a4586c2f6e6123da12de2
3
SIZE (portrac-0.5.1.tar.bz2) = 9692
3
SIZE (v0.6.tar.gz) = 9987
(-)a/ports-mgmt/portrac/files/patch-PortChecker.cc (-11 lines)
Removed Link Here
1
--- PortChecker.cc.orig	2014-09-29 18:19:21 UTC
2
+++ PortChecker.cc
3
@@ -31,6 +31,8 @@
4
 #include <string>
5
 #include <algorithm>
6
 #include <iostream>
7
+#include <cstdio>
8
+#include <cerrno>
9
 
10
 #include <QStringList>
11
 
(-)a/ports-mgmt/portrac/files/patch-Preferences.cc (-10 lines)
Removed Link Here
1
--- Preferences.cc.orig	2014-09-29 18:19:21 UTC
2
+++ Preferences.cc
3
@@ -29,6 +29,7 @@
4
 #include <map>
5
 #include <iostream>
6
 #include <fstream>
7
+#include <cstdlib>
8
 
9
 #include "Preferences.hh"
10
 

Return to bug 284371