blob: 297fc1785d0a900e8c2cce73d456ad7d75cdaf9f (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/ifplugd/ifplugd-0.28-r9.ebuild,v 1.5 2008/02/05 18:06:53 jer Exp $
inherit eutils
DESCRIPTION="Brings up/down ethernet ports automatically with cable detection"
HOMEPAGE="http://0pointer.de/lennart/projects/ifplugd/"
SRC_URI="http://0pointer.de/lennart/projects/ifplugd/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 hppa ppc x86"
IUSE="doc"
DEPEND="dev-util/pkgconfig
doc? ( www-client/lynx )
>=dev-libs/libdaemon-0.5"
RDEPEND=">=dev-libs/libdaemon-0.5
>=sys-apps/baselayout-1.12"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-nlapi.diff"
epatch "${FILESDIR}/${P}-interface.patch"
epatch "${FILESDIR}/${P}-strictalias.patch"
epatch "${FILESDIR}/${P}-noip.patch"
}
src_compile() {
econf $(use_enable doc lynx) \
--with-initdir=/etc/init.d \
--disable-xmltoman \
--disable-subversion \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
# Remove init.d configuration as we no longer use it
rm -rf "${D}/etc/ifplugd" "${D}/etc/init.d/${PN}"
dodir "/etc/${PN}"
exeinto "/etc/${PN}"
newexe "${FILESDIR}/${PN}.action" "${PN}.action" || die
cd "${S}/doc"
dodoc README SUPPORTED_DRIVERS
use doc && dohtml *.html *.css
}
pkg_postinst() {
# Warn about old init script
einfo "baselayout now starts ifplugd automatically on wired interfaces"
einfo "If you do not want this behaviour then add !plug to your modules"
einfo "in /etc/conf.d/net like so"
einfo " modules=( \"!plug\" )"
if [ -e "${ROOT}/etc/init.d/ifplugd" -o -e "${ROOT}/etc/conf.d/ifplugd" ] ; then
echo
ewarn "You should stop the ifplugd service now and remove its init"
ewarn "script and config file"
if [ "${ROOT}" = "/" ] ; then
ewarn " /etc/init.d/ifplugd stop"
ewarn " rc-update del ifplugd"
ewarn " rm -f /etc/{conf,init}.d/ifplugd"
fi
fi
}
|