net-dns/openresolv: cleanup
authorAlon Bar-Lev <alonbl@gentoo.org>
Sat, 7 Apr 2018 21:59:06 +0000 (00:59 +0300)
committerAlon Bar-Lev <alonbl@gentoo.org>
Sat, 7 Apr 2018 21:59:06 +0000 (00:59 +0300)
Package-Manager: Portage-2.3.24, Repoman-2.3.6

net-dns/openresolv/Manifest
net-dns/openresolv/openresolv-3.8.1.ebuild [deleted file]

index 68417c02f457f5e6edc91cefe9855a2d0384df4a..a95699af1762f622fd1089105bca7bf46f230b2e 100644 (file)
@@ -1,2 +1 @@
-DIST openresolv-3.8.1.tar.xz 18396 BLAKE2B bddfb919728cb49baba6df6226abe2f893d36770643e735b41717dfd98edf17255d8b293f01b335d6ae31c7075884ea65aa150ebac9d34f252be724aa0a695ec SHA512 390bf30bb85b071839104e5c7e276b402f6f485edc038e38da389730d82e614bb11b0dde44a55aa2ca5e790b374671a9c89cc07b053633401a608150eebbf2c8
 DIST openresolv-3.9.0.tar.xz 18844 BLAKE2B 0aa2125d79305aab04a8d052d56328493d51aa6ff5b44fdfe08e96ccc78ae1d84f2115e5d59940e7e1cedf7e4fe7dc36a461839bcef8fc2c5b2e21242e441f36 SHA512 4498db60f0b5a762194dd3651b94cc8b01a349a8cfb891e10d040cd6b8e22fa0e9897909517831591787ad22ffad97c78d3281e32296aa1ee67de5dff9bf765e
diff --git a/net-dns/openresolv/openresolv-3.8.1.ebuild b/net-dns/openresolv/openresolv-3.8.1.ebuild
deleted file mode 100644 (file)
index cc55e31..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="A framework for managing DNS information"
-HOMEPAGE="https://roy.marples.name/projects/openresolv"
-SRC_URI="https://roy.marples.name/downloads/${PN}/${P}.tar.xz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd"
-IUSE="selinux"
-
-DEPEND="!net-dns/resolvconf-gentoo
-       !<net-dns/dnsmasq-2.40-r1"
-RDEPEND="selinux? ( sec-policy/selinux-resolvconf )"
-
-PATCHES=(
-       "${FILESDIR}/3.8.1-restore-newline.patch"
-)
-
-src_configure() {
-       econf \
-               --prefix="${EPREFIX}" \
-               --rundir="${EPREFIX}"/var/run \
-               --libexecdir="${EPREFIX}"/lib/resolvconf
-}
-
-pkg_config() {
-       if [[ ${ROOT} != / ]]; then
-               eerror "We cannot configure unless \$ROOT=/"
-               return 1
-       fi
-
-       if [[ -n "$(resolvconf -l)" ]]; then
-               einfo "${PN} already has DNS information"
-       else
-               ebegin "Copying /etc/resolv.conf to resolvconf -a dummy"
-               resolvconf -a dummy </etc/resolv.conf
-               eend $? || return $?
-               einfo "The dummy interface will disappear when you next reboot"
-       fi
-}