aboutsummaryrefslogtreecommitdiff
path: root/port-files/Makefile
diff options
context:
space:
mode:
authorKris Moore <kris@pcbsd.org>2015-04-28 12:17:03 -0400
committerKris Moore <kris@pcbsd.org>2015-04-28 12:17:03 -0400
commit4b45ccdb4c45d26d5229119f872e9b5b13958a91 (patch)
treedf86e2c7ad4609135681d5518c17fe3968e1beaa /port-files/Makefile
parentMove the timer to launch the startup applications into the session itself (in... (diff)
downloadlumina-4b45ccdb4c45d26d5229119f872e9b5b13958a91.tar.gz
lumina-4b45ccdb4c45d26d5229119f872e9b5b13958a91.tar.bz2
lumina-4b45ccdb4c45d26d5229119f872e9b5b13958a91.zip
Improve the x11/lumima port to pull from GitHub releases now
Diffstat (limited to 'port-files/Makefile')
-rw-r--r--port-files/Makefile13
1 files changed, 6 insertions, 7 deletions
diff --git a/port-files/Makefile b/port-files/Makefile
index 91d0c088..b1a9d27b 100644
--- a/port-files/Makefile
+++ b/port-files/Makefile
@@ -2,12 +2,9 @@
# $FreeBSD$
PORTNAME= lumina
-PORTVERSION= 0.8.4.${GITVERSION}
+PORTVERSION= 0.8.4
PORTEPOCH= 1
CATEGORIES= x11
-MASTER_SITES= http://www.pcbsd.org/~kris/software/ \
- ftp://ftp.pcbsd.org/pub/software/
-DISTNAME= ${PORTNAME}-${GITVERSION}
MAINTAINER= kmoore@FreeBSD.org
COMMENT= Lumina Desktop Environment
@@ -37,15 +34,17 @@ RUN_DEPENDS+= gstreamer-plugins-core>=0:${PORTSDIR}/multimedia/gstreamer-plugins
MAKE_JOBS_UNSAFE=yes
-GITVERSION= CHGVERSION
+GITVERSION= 1430233908
USE_XORG= x11 xcomposite xdamage xrender
USE_XCB= x11extras wm
USE_LDCONFIG= yes
USE_QT5= core gui network svg linguist multimedia imageformats \
buildtools x11extras
USES= qmake tar:bzip2
-
-WRKSRC= ${WRKDIR}/lumina
+USE_GITHUB= yes
+GH_ACCOUNT= pcbsd
+GH_COMMIT= e07dfbb
+GH_TAGNAME= v0.8.4-Release
QMAKE_ARGS= CONFIG+="configure"
bgstack15