summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Vaněk <arkamar@gentoo.org>2024-09-14 18:25:17 +0200
committerPetr Vaněk <arkamar@gentoo.org>2024-09-14 18:25:17 +0200
commitff567edf350a4145cc887b4d86511f11625715d1 (patch)
treef071727fd9b1688a455f670f31d11901f5a3bd02 /net-misc/dhcpcd-ui
parentdev-lang/rust-bin: add bootstraped tarballs mips,sparc,musl (diff)
downloadgentoo-ff567edf350a4145cc887b4d86511f11625715d1.tar.gz
gentoo-ff567edf350a4145cc887b4d86511f11625715d1.tar.bz2
gentoo-ff567edf350a4145cc887b4d86511f11625715d1.zip
net-misc/dhcpcd-ui: drop 0.7.8
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'net-misc/dhcpcd-ui')
-rw-r--r--net-misc/dhcpcd-ui/Manifest1
-rw-r--r--net-misc/dhcpcd-ui/dhcpcd-ui-0.7.8.ebuild66
2 files changed, 0 insertions, 67 deletions
diff --git a/net-misc/dhcpcd-ui/Manifest b/net-misc/dhcpcd-ui/Manifest
index 833a02dd0790..8c4dd0a48790 100644
--- a/net-misc/dhcpcd-ui/Manifest
+++ b/net-misc/dhcpcd-ui/Manifest
@@ -1,2 +1 @@
-DIST dhcpcd-ui-0.7.8.tar.xz 135028 BLAKE2B f3e79bb00708e2ce2ebb93d917506bb0fb015071b415768c47979d7f2b5e35d6f22bf71a58c43989dedc6561f0a8be738824f06627d2fa0995e335d7ef1925cd SHA512 5f0d2c32c32fc141feca0ab43a531d9b4f45e071a8a1e3ee1923d6394a3e5d6322e6f7e607b91154af4cfee93d649164c7ed3b805731dfc242c3ac367ec156c4
DIST dhcpcd-ui-0.7.9.tar.xz 104100 BLAKE2B 7e2bbbb9ad657deccc16296a0c7191f35fa15dbc84f1f8ac4f8ac5de4c56e5948da457398409527774ffc62e58659cac2dd37aa66842179f710db04a9791ab9e SHA512 fe0c9ff2f777e7b97438eb50507fce765b8e18b1a71883d76e9b6570a18e6f13414f8e64d8034f9c3352496775c283a0540e331ec449d6fbe48ddc8d64e14691
diff --git a/net-misc/dhcpcd-ui/dhcpcd-ui-0.7.8.ebuild b/net-misc/dhcpcd-ui/dhcpcd-ui-0.7.8.ebuild
deleted file mode 100644
index fbb1017029b5..000000000000
--- a/net-misc/dhcpcd-ui/dhcpcd-ui-0.7.8.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit qmake-utils systemd xdg
-
-DESCRIPTION="Desktop notification and configuration for dhcpcd"
-HOMEPAGE="https://github.com/NetworkConfiguration/dhcpcd-ui https://roy.marples.name/projects/dhcpcd-ui/"
-SRC_URI="https://roy.marples.name/downloads/${PN%-ui}/${P}.tar.xz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="debug gtk libnotify ncurses qt5"
-
-REQUIRED_USE="libnotify? ( gtk )
- qt5? ( !libnotify )"
-
-BDEPEND="
- virtual/libintl
-"
-DEPEND="
- gtk? (
- dev-libs/glib:2
- x11-libs/gdk-pixbuf:2
- x11-libs/gtk+:3
- )
- libnotify? ( x11-libs/libnotify )
- ncurses? ( sys-libs/ncurses:0= )
- qt5? (
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtwidgets:5
- media-libs/mesa
- )
-"
-RDEPEND="${DEPEND}
- >=net-misc/dhcpcd-6.4.4
-"
-
-src_configure() {
- local myeconfargs=(
- --without-qt
- $(use_enable debug)
- $(use_enable libnotify notification)
- $(use_with gtk gtk 'gtk+-3.0')
- $(use_with ncurses curses)
- $(use_with qt5 qt)
- )
- QMAKE="$(qt5_get_bindir)/qmake" \
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- emake DESTDIR="${D}" INSTALL_ROOT="${D}" install
- systemd_dounit src/dhcpcd-online/dhcpcd-wait-online.service
-}
-
-pkg_postinst() {
- xdg_icon_cache_update
-}
-
-pkg_postrm() {
- xdg_icon_cache_update
-}