Getting this compile error.
What do I need to update?
[ 62%] Building CXX object CMakeFiles/qterminal.dir/src/mainwindow.cpp.o
/tmp/yaourt-tmp-korn/aur-qterminal-git/src/qterminal/src/mainwindow.cpp:433:6: warning: #warning TODO/FIXME: disable the action when there is only one terminal [-Wcpp]
#warning TODO/FIXME: disable the action when there is only one terminal
^~~~~~~
/tmp/yaourt-tmp-korn/aur-qterminal-git/src/qterminal/src/mainwindow.cpp: In member function 'void MainWindow::setupCustomDirs()':
/tmp/yaourt-tmp-korn/aur-qterminal-git/src/qterminal/src/mainwindow.cpp:444:5: error: 'addCustomColorSchemeDir' is not a member of 'TermWidgetImpl'
TermWidgetImpl::addCustomColorSchemeDir(dir);
Search Criteria
Package Details: qterminal-git 0.7.1.41.g9d92b3c-2
Git Clone URL: | https://aur.archlinux.org/qterminal-git.git (read-only) |
---|---|
Package Base: | qterminal-git |
Description: | Lightweight Qt-based terminal emulator |
Upstream URL: | https://github.com/lxde/qterminal |
Licenses: | |
Conflicts: | |
Provides: | |
Submitter: | vicky91 |
Maintainer: | jleclanche (yan12125) |
Last Packager: | yan12125 |
Votes: | 43 |
Popularity: | 0.051994 |
First Submitted: | 2011-12-15 22:33 |
Last Updated: | 2017-10-20 19:05 |
Dependencies (6)
- qt5-x11extras (qt5-x11extras-git)
- qtermwidget-git
- cmake (cmake-git) (make)
- git (git-git) (make)
- lxqt-build-tools-git (make)
- qt5-tools (qt5-tools-git) (make)
Required by (3)
- hedera-theme-git (requires qterminal) (optional)
- lxqt-desktop-git (optional)
- tkpacman (requires qterminal) (optional)
Sources (1)
Latest Comments
NonerKao commented on 2017-10-20 05:05
c-korn commented on 2017-01-20 20:14
grubersjoe commented on 2017-01-19 13:36
lxqt-build-tools should also be added as a depedency. Same reaon.
djb1034 commented on 2016-08-06 12:12
I think liblxqt should be added as a dependency, as it wouldn't build without it as well.
pmattern commented on 2015-12-22 19:22
Upstream URL and source should point to github.com/lxde/qterminal by now.
Anonymous comment on 2015-10-04 06:11
I can confirm that 'qt5-x11extras' is a dependency of this package, both for compiling and running.
AlfredoRamos commented on 2015-09-30 22:18
I'm not sure if this package or qtermwidget[-git] needs qt5-x11extras, but I couldn't compile without it (clean install).
fluxboxer commented on 2015-03-12 17:49
Same here. With qtermwidget I too get "/usr/lib64 exists" error. qtermwidget-git works.
rohshall commented on 2015-03-03 16:07
I confirm that adding qtermwidget-git as a dependency instead of qtermwidget works. I no longer get "/usr/lib64 exists" error.
SneakySnake commented on 2015-02-08 22:59
Shouldn't this depend on qtermwidget-git instead of qtermwidget?
AlfredoRamos commented on 2014-10-24 07:13
If you get:
==> ERROR: pkgver is not allowed to contain colons, hyphens or whitespace.
==> ERROR: Makepkg was unable to build
Just edit the PKGBUILD:
pkgver() {
cd "$srcdir/$_pkgname"
git describe --always | sed "s/-/./g"
}
jleclanche commented on 2014-10-02 19:10
That package needs to be merged into qtermwidget-git. You need to update qtermwidget-git *before* rebuilding qterminal-git.
ekpyron commented on 2014-10-02 17:49
For me this only works with qtermwidget-qt5-git instead of qtermwidget-git as dependency.
jleclanche commented on 2014-10-01 20:44
Thanks, fixed.
flu commented on 2014-10-01 20:42
qt5-tools is required too.
Cheers.
jleclanche commented on 2014-10-01 19:47
qterminal and qtermwidget have been upgraded to use qt5.
blackhole commented on 2014-06-02 12:22
Now OK, thank you
jleclanche commented on 2014-06-02 12:18
You need to then rebuild qterminal-git.
blackhole commented on 2014-06-02 12:16
I have reinstalled qtermwidget-git, but result is the same.
jleclanche commented on 2014-06-02 12:09
Please make sure to update qtermwidget-git. I will update this to require the most up to date version.
blackhole commented on 2014-06-02 12:09
Cannot start:
qterminal
LxQtGuiPlatformPlugin constructed
LxQtGuiPlatformPlugin::systemIconThemeName() is called
TRANSLATIONS_DIR: Loading translation file "qterminal_en.qm" from dir /usr/share/qterminal/translations
load success: false
LxQtGuiPlatformPlugin::platformHint() is called http://www.tforumhifi.com/t44016-audiolinux-lxqt-realtime-archlinux
Properties constructor called
Canot open file "/home/audiolinux/.config/qterminal.org/qterminal_bookmarks.xml"
default KB_LAYOUT_DIR: "/usr/share/qtermwidget4/kb-layouts/"
LxQtGuiPlatformPlugin::systemIconThemeName() is called
loadAllColorSchemes
Using color-schemes: "/usr/share/qtermwidget4/color-schemes//"
Using color-schemes: "/usr/share/qtermwidget4/color-schemes//"
qterminal: symbol lookup error: qterminal: undefined symbol: _ZN11QTermWidget15setTerminalFontER5QFont
stobbsm commented on 2014-05-30 19:54
Created a patch for the PKGBUILD:
diff -aur qterminal-git.orig/PKGBUILD qterminal-git/PKGBUILD
--- qterminal-git.orig/PKGBUILD 2014-05-30 13:50:30.980223126 -0600
+++ qterminal-git/PKGBUILD 2014-05-30 13:50:55.313556277 -0600
@@ -24,6 +24,7 @@
build() {
cd "$srcdir/$_pkgname"
mkdir -p build
+ ln -s src/icons icons
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
make
miko commented on 2014-05-29 08:45
You can easily fix it for now by adding:
ln -s src/icons icons
just before "cd build" in package() function.
jleclanche commented on 2014-05-28 07:05
This is an upstream problem, please don't mark packages out of date like this.
pioner14 commented on 2014-05-28 04:46
CMake Error at cmake_install.cmake:76 (FILE):
file INSTALL cannot find
"/tmp/yaourt-tmp-nick/aur-qterminal-git/src/qterminal/icons/qterminal.png".
Makefile:65: ошибка выполнения рецепта для цели «install»
make: *** [install] Ошибка 1
==> ОШИБКА: Произошел сбой в package().
Преждевременный выход...
==> ERROR: Makepkg was unable to build qterminal-git.
jleclanche commented on 2014-04-11 20:14
@adaptee Due to the lack of updates since 2013 despite three requests (now deleted mine), I will be asking for orphaning on the AUR ML.
ArthurBorsboom commented on 2014-04-09 14:28
Package does not build, probably due to missing dependency (see below):
-- Qxt includes: QXT_INCLUDE_PATH-NOTFOUND
-- Qxt libs: QXT_CORE_LIB-NOTFOUND QXT_GUI_LIB-NOTFOUND
CMake Error at CMakeLists.txt:50 (message):
System Qxt not found. Install Qxt devel package or use -DUSE_SYSTEM_QXT=0
to build with internal copy of this library
-- Configuring incomplete, errors occurred!
Would you mind to fix this?
jleclanche commented on 2014-03-25 03:37
'libqxt' should be added to dependencies.
ant32 commented on 2013-11-29 03:18
please add cmake to makedepends
jleclanche commented on 2013-04-03 01:03
With pacman 4.1 out, you can now use the new-style vcs packages. Example here:
https://aur.archlinux.org/packages/qt/qtermwidget-git/PKGBUILD
Anonymous comment on 2012-12-16 14:23
thank you
alium commented on 2012-08-02 09:16
@myra:
Not for qtterminal, but for qtermwidget-git is needed add mv $pkgdir/usr/lib64 $pkgdir/usr/lib
Anonymous comment on 2012-07-31 07:43
For those of you who would like to use this package edit the package build as follows;
package() {
cd "$srcdir/$_gitname-build"
make DESTDIR="$pkgdir/" install
mv $pkgdir/usr/lib64 $pkgdir/usr/lib
}
Just to make sure I ran sudo ldconfig afterwards. The move to /usr/lib doesn't put the libs in a symlink but in the proper location.
Myra
Anonymous comment on 2012-07-19 16:08
Hello,
Linking CXX executable qterminal
/usr/bin/ld: cannot find -lqtermwidget
collect2: error: ld returned 1 exit status
make[2]: *** [src/qterminal] Error 1
make[1]: *** [src/CMakeFiles/qterminal.dir/all] Error 2
make: *** [all] Error 2
==> ERROR: A failure occurred in build().
Aborting...
The build failed.
vicky91 commented on 2012-01-20 17:02
It works now!n :)
vicky91 commented on 2012-01-19 16:35
I have the same problem
Anonymous comment on 2012-01-19 01:22
[100%] Building CXX object src/CMakeFiles/qterminal.dir/qrc_icons.cxx.o
Linking CXX executable qterminal
/usr/bin/ld: CMakeFiles/qterminal.dir/third-party/qxtglobalshortcut_x11.cpp.o: undefined reference to symbol 'XSync'
/usr/bin/ld: note: 'XSync' is defined in DSO /usr/lib/libX11.so.6 so try adding it to the linker command line
/usr/lib/libX11.so.6: could not read symbols: Invalid operation
collect2: ld returned 1 exit status
make[2]: *** [src/qterminal] Error 1
make[1]: *** [src/CMakeFiles/qterminal.dir/all] Error 2
make: *** [all] Error 2
==> ERROR: A failure occurred in build().
Aborting...
Compilation error,
......../src/qterminal/src/main.cpp:19:24: fatal error: QApplication: No such file or directory
#include <QApplication>
^
compilation terminated.