summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2020-08-06 12:21:14 +0200
committerLars Wendler <polynomial-c@gentoo.org>2020-08-06 12:21:14 +0200
commitf60299eaeebd4d7b31a525112bfaecf28199d8cb (patch)
tree6391d17c266cde5b289cacbdcc6a331cbe3b970a /net-misc/dhcpcd-ui/dhcpcd-ui-0.7.5-r1.ebuild
parentnet-misc/dhcpcd-ui: Revbump to update icon cache (diff)
downloadgentoo-f60299eaeebd4d7b31a525112bfaecf28199d8cb.tar.gz
gentoo-f60299eaeebd4d7b31a525112bfaecf28199d8cb.tar.bz2
gentoo-f60299eaeebd4d7b31a525112bfaecf28199d8cb.zip
net-misc/dhcpcd-ui: Removed old
Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'net-misc/dhcpcd-ui/dhcpcd-ui-0.7.5-r1.ebuild')
-rw-r--r--net-misc/dhcpcd-ui/dhcpcd-ui-0.7.5-r1.ebuild54
1 files changed, 0 insertions, 54 deletions
diff --git a/net-misc/dhcpcd-ui/dhcpcd-ui-0.7.5-r1.ebuild b/net-misc/dhcpcd-ui/dhcpcd-ui-0.7.5-r1.ebuild
deleted file mode 100644
index a89c1a8d7012..000000000000
--- a/net-misc/dhcpcd-ui/dhcpcd-ui-0.7.5-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit systemd
-
-DESCRIPTION="Desktop notification and configuration for dhcpcd"
-HOMEPAGE="https://roy.marples.name/projects/dhcpcd-ui/"
-SRC_URI="https://roy.marples.name/downloads/${PN%-ui}/${P}.tar.bz2"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="debug gtk gtk3 libnotify"
-
-REQUIRED_USE="
- ?? ( gtk gtk3 )
- libnotify? ( || ( gtk gtk3 ) )"
-
-DEPEND="
- virtual/libintl
- gtk? (
- dev-libs/glib:2
- x11-libs/gdk-pixbuf:2
- x11-libs/gtk+:2
- )
- gtk3? (
- dev-libs/glib:2
- x11-libs/gdk-pixbuf:2
- x11-libs/gtk+:3
- )
- libnotify? ( x11-libs/libnotify )"
-
-RDEPEND="${DEPEND}
- >=net-misc/dhcpcd-6.4.4"
-
-src_configure() {
- local myeconfargs=(
- --without-qt
- $(use_enable debug)
- $(usex gtk '--with-gtk=gtk+-2.0 --with-icons' '')
- $(usex gtk3 '--with-gtk=gtk+-3.0 --with-icons' '')
- $(use_enable libnotify notification)
- $(use gtk || use gtk3 || echo '--without-icons --without-gtk')
- )
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- emake DESTDIR="${D}" INSTALL_ROOT="${D}" install
-
- systemd_dounit src/dhcpcd-online/dhcpcd-wait-online.service
-}