blob: bb91a3c538ae3c1a087d93c7589ddbea2c97cbd5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Created by: Jason Bacon <bacon4000@gmail.com>
# $FreeBSD$
PORTNAME= qterminal
PORTVERSION= 0.6.0
CATEGORIES= x11
MAINTAINER= bacon4000@gmail.com
COMMENT= Lightweight Qt-based terminal emulator
LICENSE= GPLv2
LIB_DEPENDS= libqtermwidget5.so:x11-toolkits/qtermwidget
RUN_DEPENDS= liberation-fonts-ttf>=2.00:x11-fonts/liberation-fonts-ttf
USES= cmake:outsource compiler:c++11-lang gettext localbase:ldflags \
pkgconfig
USE_QT5+= buildtools_build core gui linguisttools_build qmake_build widgets
USE_XORG+= x11
CMAKE_ARGS+= -DUSE_SYSTEM_QXT:BOOL=OFF -DUSE_QT5:BOOL=ON
USE_GITHUB= yes
GH_ACCOUNT= lxde
.include <bsd.port.pre.mk>
.if ${OPSYS} == FreeBSD
LDFLAGS+= -lulog
.endif
.include <bsd.port.post.mk>
|