blob: 600e7805ccf549db2065da3022671deca6753f74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/resolvconf-gentoo/resolvconf-gentoo-1.3.ebuild,v 1.2 2007/05/06 09:23:21 genone Exp $
inherit eutils
DESCRIPTION="A framework for managing DNS information"
HOMEPAGE="http://www.gentoo.org/"
SRC_URI="http://dev.gentoo.org/~uberlord/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE=""
DEPEND=""
RDEPEND=""
src_install() {
make ROOT="${D}" install || die "Failed to install"
}
pkg_postinst() {
if [ ! -"L ${ROOT}/etc/resolv.conf" ] \
|| [ "$(readlink "${ROOT}/etc/resolv.conf")" != \
"resolvconf/run/resolv.conf" ] ; then
ewarn "resolvconf requires ${ROOT}etc/resolv.conf to be a symbolic"
ewarn "to resolvconf/run/resolv.conf"
ewarn "To set this up automatically type"
ewarn " emerge --config =${PF}"
fi
}
pkg_config() {
cd "${ROOT}/etc"
if [ -L resolv.conf -a "$(readlink resolv.conf)" = \
"resolvconf/run/resolv.conf" ] ; then
einfo "${ROOT}etc/resolv.conf is already configured for ${PN}"
else
if [ -e resolv.conf ] ; then
einfo "Your existing resolv.conf is will be mapped to an"
einfo "interface called \"dummy\" in resolvconf. This will"
einfo "disappear when you reboot."
cp resolv.conf resolvconf/run/resolv.conf
[ ! -d resolvconf/run/interfaces ] \
&& mkdir resolvconf/run/interfaces
cp resolv.conf resolvconf/run/interfaces/dummy
echo "dummy" > resolvconf/run/add_order
fi
rm -f resolv.conf
ln -snf resolvconf/run/resolv.conf .
einfo "${ROOT}etc/resolv.conf is now correctly configured for ${PN}"
fi
}
|