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

Collapse All | Expand All

(-)Makefile (-8 / +18 lines)
Lines 2-12 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	octopkg
4
PORTNAME=	octopkg
5
PORTVERSION=	v0.1.0
5
PORTVERSION=	0.1.0
6
DISTVERSIONPREFIX=	v
6
CATEGORIES=	ports-mgmt
7
CATEGORIES=	ports-mgmt
7
8
8
MAINTAINER=	kmoore@FreeBSD.org
9
MAINTAINER=	kmoore@FreeBSD.org
9
COMMENT=	OctoPkg graphical package manager
10
COMMENT=	Graphical front-end to the FreeBSD pkg-ng package manager
10
11
11
LICENSE=	LGPL20
12
LICENSE=	LGPL20
12
LICENSE_FILE=	${WRKSRC}/LICENSE
13
LICENSE_FILE=	${WRKSRC}/LICENSE
Lines 14-26 Link Here
14
USE_GITHUB=	yes
15
USE_GITHUB=	yes
15
GH_ACCOUNT=	aarnt
16
GH_ACCOUNT=	aarnt
16
17
17
USE_QT5=	core concurrent gui network linguist svg \
18
USE_QT5=	core concurrent gui network xml dbus widgets quick concurrent \
18
		buildtools x11extras
19
		buildtools_build
19
USES=		qmake tar:xz
20
USES=		qmake compiler:c++11-lib
20
PLIST_FILES=	bin/octopkg
21
21
22
PLIST_FILES=	bin/${PORTNAME} share/pixmaps/octopi_green.png
23
24
DESKTOP_ENTRIES=	"OctoPkg" "A powerful pkgng front-end" \
25
			"${PREFIX}/share/pixmaps/octopi_green.png" \
26
			"${PORTNAME}" "System;" false
27
28
.include <bsd.port.options.mk>
29
22
do-install:
30
do-install:
23
	@${MKDIR} ${STAGEDIR}${PREFIX}/bin
31
	${MKDIR} ${STAGEDIR}${PREFIX}/bin
24
	${INSTALL_PROGRAM} ${WRKSRC}/bin/octopkg ${STAGEDIR}${PREFIX}/bin/octopkg
32
	${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
33
	${INSTALL_DATA} ${WRKSRC}/resources/images/octopi_green.png \
34
		${STAGEDIR}${PREFIX}/share/pixmaps/
25
35
26
.include <bsd.port.mk>
36
.include <bsd.port.mk>
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (aarnt-octopkg-v0.1.0_GH0.tar.xz) = e374150b309ec737ad5c9b8f4a9ffd818bd142c717599efc7fe22043f3eed770
1
SHA256 (aarnt-octopkg-v0.1.0_GH0.tar.gz) = e374150b309ec737ad5c9b8f4a9ffd818bd142c717599efc7fe22043f3eed770
2
SIZE (aarnt-octopkg-v0.1.0_GH0.tar.xz) = 158474
2
SIZE (aarnt-octopkg-v0.1.0_GH0.tar.gz) = 158474
(-)pkg-descr (-1 / +3 lines)
Lines 1-3 Link Here
1
OctoPkg is a powerful pkgng GUI front-end written in Qt
1
OctoPkg is a graphical front-end to the pkg-ng package manager. OctoPkg enables
2
users to search for, install, remove and upgrade pkg-ng packages through a
3
simple GUI interface.
2
4
3
WWW: https://octopkg.wordpress.com/
5
WWW: https://octopkg.wordpress.com/

Return to bug 201358