summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorRaphael Kubo da Costa <rakuco@FreeBSD.org>2015-01-28 01:15:22 +0000
committerRaphael Kubo da Costa <rakuco@FreeBSD.org>2015-01-28 01:15:22 +0000
commit34d0f208cc5af53a6d80572fd3678092ae882c64 (patch)
tree4e6ecee0f96f50b36e1482e56b176bdffa4f6b61 /sysutils
parent- Drop @dirrm* from and add empty directories to pkg-plists (diff)
Add sysutils/qt5-qtpaths.
This is a command-line interface to QStandardPaths, part of qttools. It is used by the KDE Frameworks 5 ports, which will be added in the future. While here, also add x11-toolkits/qt5-quickcontrols to devel/qt5 which I had forgotten to do before. Submitted by: Tobias Berner <tcberner@gmail.com>
Notes
Notes: svn path=/head/; revision=378033
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/Makefile1
-rw-r--r--sysutils/qt5-qtpaths/Makefile25
-rw-r--r--sysutils/qt5-qtpaths/pkg-descr1
3 files changed, 27 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile
index 9d6a3fd3cadd..b3c738c1cff4 100644
--- a/sysutils/Makefile
+++ b/sysutils/Makefile
@@ -761,6 +761,7 @@
SUBDIR += qlogtools
SUBDIR += qpxtool
SUBDIR += qsynergy
+ SUBDIR += qt5-qtpaths
SUBDIR += quicksynergy
SUBDIR += qzeitgeist
SUBDIR += racktables
diff --git a/sysutils/qt5-qtpaths/Makefile b/sysutils/qt5-qtpaths/Makefile
new file mode 100644
index 000000000000..0276a7064ac3
--- /dev/null
+++ b/sysutils/qt5-qtpaths/Makefile
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+PORTNAME= qtpaths
+DISTVERSION= ${QT5_VERSION}
+CATEGORIES= sysutils
+PKGNAMEPREFIX= qt5-
+
+MAINTAINER= kde@FreeBSD.org
+COMMENT= Command line client to QStandardPaths
+
+USE_QT5= core
+QT_DIST= tools
+USES= qmake
+
+PLIST_FILES= ${QT_BINDIR}/qtpaths
+
+# Similarly to x11/qt5-qev, it makes more sense to just run the build system
+# from the qtpaths directory. If we run it from the top of the source tree, it
+# will look for a lot more dependencies for other tools such as lupdate, which
+# we do not really have to depend on.
+WRKSRC_SUBDIR= src/${PORTNAME}
+post-patch:
+ ${CP} ${WRKSRC}/../../.qmake.conf ${WRKSRC}
+
+.include <bsd.port.mk>
diff --git a/sysutils/qt5-qtpaths/pkg-descr b/sysutils/qt5-qtpaths/pkg-descr
new file mode 100644
index 000000000000..dcdc1a68be74
--- /dev/null
+++ b/sysutils/qt5-qtpaths/pkg-descr
@@ -0,0 +1 @@
+Command line client to QStandardPaths.