megacoffee.net Gentoo overlay - legacy mirror
We have moved to Git. This repository is only provided for compatibility with old installations. Learn how to migrate your installation here.
view app-misc/qutescoop/qutescoop-2.2_pre20201118.ebuild @ 259:32efd9258ce5
[sync] imported 04d1b06..9f7fbcb from upstream
commit 9f7fbcb8451c6c4f26ff0e7989d2ccd92ad27f1c
Author: Daniel Neugebauer <dneuge@energiequant.de>
Date: Thu Sep 7 23:01:52 2023 +0200
net-misc/asterisk-softmodem: bump to EAPI 8
commit 96dadefa000fde6e61bd2a01c668a9cda4fa30b8
Author: Daniel Neugebauer <dneuge@energiequant.de>
Date: Thu Sep 7 23:00:56 2023 +0200
app-crypt/acmetool: delete old patch for 0.0.58
commit 349d4168444f2b28345a010ce3ec5952fe51a845
Author: Daniel Neugebauer <dneuge@energiequant.de>
Date: Thu Sep 7 22:58:09 2023 +0200
app-crypt/acmetool: stitch up old eclass still used to run on EAPI 8
commit 6be702bd1f6723fd4e724de5a1aaa0274d53f1a3
Author: Daniel Neugebauer <dneuge@energiequant.de>
Date: Thu Sep 7 22:57:29 2023 +0200
app-crypt/acmetool: removed 0.0.58 and 0.2.1 due to EAPI deprecation
commit ae0227d3d8fe72eacbd3b1099cf8514131d553a9
Author: Daniel Neugebauer <dneuge@energiequant.de>
Date: Thu Sep 7 22:45:39 2023 +0200
app-admin/boinctui-extended: bump to EAPI 8
commit 861f2d6873a4cde9c30138d1f7d7739801596ae7
Author: Daniel Neugebauer <dneuge@energiequant.de>
Date: Thu Sep 7 22:38:38 2023 +0200
app-admin/boinctui-extended: removed 9999 development ebuild, fork has been terminated
commit cecf3a2a466ce707b2538ba82cfdbf9575474991
Author: Daniel Neugebauer <dneuge@energiequant.de>
Date: Thu Sep 7 22:35:25 2023 +0200
app-admin/boinc-status: bump to EAPI 8
author | Migration Sync <gentoo-overlay@megacoffee.net> |
---|---|
date | Thu, 07 Sep 2023 21:15:02 +0000 |
parents | 6aca0fc3b7cd |
children |
line wrap: on
line source
# Copyright 1999-2022 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=8 inherit git-r3 inherit qmake-utils # Note: GitHub page only states VATSIM as of January 2021 although other networks # are currently still supported. DESCRIPTION="A status monitor for VATSIM and other online flight simulation networks." HOMEPAGE="https://qutescoop.github.io/qutescoop/" EGIT_REPO_URI="https://github.com/qutescoop/qutescoop.git" EGIT_COMMIT="85cbd8e5877ba4186f7498c78c4646d2b9513f0e" LICENSE="GPL-3" SLOT="0" # only 64 bits because at least paths ("unix64") would need to be changed KEYWORDS="~amd64" # bash is needed for our wrapper script DEPEND=" app-shells/bash dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-libs/libglvnd sys-libs/glibc virtual/glu " RDEPEND="${DEPEND}" src_prepare() { eapply_user eqmake5 QuteScoop.pro } src_compile() { emake } src_install() { # instead of using QuteScoop directly install a wrapper script # this is needed because QuteScoop needs write permissions to a data directory # for every user and does not create the necessary directories which need to # contain specific data # TODO: script should somehow handle updates cp -a ${FILESDIR}/execution-wrapper.sh QuteScoop dobin QuteScoop dodoc CHANGELOG dodoc COPYING dodoc README.html into /usr/share/QuteScoop dobin DIST-unix64/QuteScoop insinto /usr/share/applications doins ${FILESDIR}/QuteScoop.desktop insinto /usr/share/icons/hicolor/32x32/apps doins src/qutescoop.png insinto /usr/share/QuteScoop/data-template doins -r data doins -r downloaded doins -r screenshots doins -r textures # all directories may currently have a "notes" file but in case those should # ever get removed, better add our own "keep" file to the otherwise empty directories keepdir /usr/share/QuteScoop/data-template/downloaded keepdir /usr/share/QuteScoop/data-template/screenshots keepdir /usr/share/QuteScoop/data-template/textures/clouds } pkg_postinst() { # 12345678901234567890123456789012345678901234567890123456789012345678901234567890 einfo "QuteScoop expects a fully prepared user-writable directory. Such a directory" einfo "cannot be provisioned by this ebuild directly. Instead a wrapper script is used" einfo "in place of the original binary which creates a template in the user's home" einfo "directory on first run. Future updates to this package may require the user" einfo "to delete that directory manually in order to have it re-created:" einfo "" einfo " ~/.local/share/QuteScoop" einfo "" einfo "Please report any issues with the wrapper script to the ebuild author, not" einfo "QuteScoop." einfo "" einfo "Note that this is an unsupported snapshot of an old development version which" einfo "did not yet support VATSIM's JSON format. This version may work for other" einfo "but is no longer capable of displaying VATSIM traffic without workarounds." einfo "" einfo "If you want to see VATSIM traffic, you should use version 2.3 or later." }