logo

overlay

My own overlay for experimentations, use with caution, no support is provided git clone https://anongit.hacktivis.me/git/overlay.git/

qarma-1.1.0.ebuild (711B)


  1. # Copyright 2020-2026 Gentoo Authors
  2. # Distributed under the terms of the GNU General Public License v2
  3. EAPI=8
  4. inherit qmake-utils
  5. DESCRIPTION="Zenity Clone for Qt5 (lanodan's branch)"
  6. HOMEPAGE="https://github.com/lanodan/qarma"
  7. SRC_URI="https://github.com/luebking/qarma/archive/v${PV}.tar.gz -> ${P}.tar.gz"
  8. LICENSE="GPL-2"
  9. SLOT="0"
  10. KEYWORDS="~amd64"
  11. IUSE="+dbus +X"
  12. DEPEND="dev-qt/qtbase:6[X?,dbus?,gui,widgets]"
  13. RDEPEND="${DEPEND}"
  14. PATCHES=(
  15. "${FILESDIR}/1.1.0-0001-Make-DBus-optionnal.patch"
  16. "${FILESDIR}/1.1.0-0002-Allow-to-disable-X11-support.patch"
  17. )
  18. src_configure() {
  19. eqmake6 \
  20. $(usex dbus "" "CONFIG+=DISABLE_DBUS") \
  21. $(usex X "" "CONFIG+=DISABLE_X11")
  22. }
  23. src_install() {
  24. dobin qarma
  25. }