diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2018-04-08 00:59:06 +0300 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2018-04-08 00:59:06 +0300 |
commit | 1638f06c9a4f61fbbfb554346987c1ff76f62fe3 (patch) | |
tree | 1fbb806b4e5c8895e48c77d58a8eed694c107eed /net-dns/openresolv | |
parent | media-libs/libvorbis-1.3.6: ppc64 stable, bug 650654 (diff) | |
download | gentoo-1638f06c9a4f61fbbfb554346987c1ff76f62fe3.tar.gz gentoo-1638f06c9a4f61fbbfb554346987c1ff76f62fe3.tar.bz2 gentoo-1638f06c9a4f61fbbfb554346987c1ff76f62fe3.zip |
net-dns/openresolv: cleanup
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'net-dns/openresolv')
-rw-r--r-- | net-dns/openresolv/Manifest | 1 | ||||
-rw-r--r-- | net-dns/openresolv/openresolv-3.8.1.ebuild | 44 |
2 files changed, 0 insertions, 45 deletions
diff --git a/net-dns/openresolv/Manifest b/net-dns/openresolv/Manifest index 68417c02f457..a95699af1762 100644 --- a/net-dns/openresolv/Manifest +++ b/net-dns/openresolv/Manifest @@ -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 index cc55e3160f11..000000000000 --- a/net-dns/openresolv/openresolv-3.8.1.ebuild +++ /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 -} |