summaryrefslogtreecommitdiff
path: root/net-dns/openresolv/openresolv-3.13.0.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-04-23 18:08:08 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-04-23 18:08:08 +0100
commit622b78d0d832282505f685f2f442c34ea0e8a7b1 (patch)
tree6c8da6dc24185f6abeac5388572b48fd1db79e04 /net-dns/openresolv/openresolv-3.13.0.ebuild
parent57dda344760f34c8c8f93c3c161ab10e55dc3860 (diff)
gentoo auto-resync : 23:04:2023 - 18:08:08
Diffstat (limited to 'net-dns/openresolv/openresolv-3.13.0.ebuild')
-rw-r--r--net-dns/openresolv/openresolv-3.13.0.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/net-dns/openresolv/openresolv-3.13.0.ebuild b/net-dns/openresolv/openresolv-3.13.0.ebuild
deleted file mode 100644
index a636872c4657..000000000000
--- a/net-dns/openresolv/openresolv-3.13.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A framework for managing DNS information"
-HOMEPAGE="https://roy.marples.name/projects/openresolv"
-SRC_URI="https://github.com/NetworkConfiguration/openresolv/archive/${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
-IUSE="selinux"
-
-RDEPEND="!sys-apps/systemd[resolvconf]
- selinux? ( sec-policy/selinux-resolvconf )"
-
-S="${WORKDIR}/${PN}-${P}"
-
-src_configure() {
- local myeconfargs=(
- --prefix="${EPREFIX}"
- --rundir="${EPREFIX}"/var/run
- --libexecdir="${EPREFIX}"/lib/resolvconf
- )
- econf "${myeconfargs[@]}"
-}
-
-pkg_config() {
- if [[ -n ${ROOT} ]]; then
- eerror "We cannot configure unless \$ROOT is empty"
- 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
-}
-
-DOCS=( LICENSE README.md )