summaryrefslogtreecommitdiff
blob: d494dad3718a4f95f4e081977c208225388dacb4 (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hprofile/hprofile-2.0_beta2.ebuild,v 1.2 2005/05/14 08:36:32 blubb Exp $

DESCRIPTION="Utility to manage hardware, network, power or other profiles"
HOMEPAGE="http://hprofile.sourceforge.net/"
SRC_URI="mirror://sourceforge/hprofile/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""

DEPEND=">=app-shells/bash-2.0
	>=app-admin/sudo-1.6"

src_unpack() {
	unpack ${A}
	cd ${S}
	for f in $(grep /usr/local * -rl) ; do
		sed -i 's:/usr/local:/usr:g' ${f}
	done
}

src_install() {
	dosbin scripts/* || die "dosbin"

	dodir /etc/hprofile
	cp -r config/hprofile/* ${D}/etc/hprofile/ || die "cp"

	exeinto /etc/init.d
	doexe extra/rc-scripts/gentoo/*

	dodoc README
}

pkg_postinst() {
	einfo "Example profiles have been installed into /etc/hprofile/example-profiles"
	einfo "Initscripts have been been installed to /etc/init.d."
	einfo
	einfo "Scripts that should be run from the 'boot' runlevel:"
	einfo "  - hprofile      (applies the 'boot' profile)"
	einfo "  - hprunlevel    (switches to profile-specific runlevel)"
	einfo "Scripts that should be run from your default runlevel:"
	einfo "  - net.profile   (applies the current 'net' profile)"
	einfo "  - power-profile (applies the current 'power' profile)"
	einfo
	einfo "If you get an error message that 'hprunlevel' and 'local' have a"
	einfo "circular dependency of type 'iafter', this is not a problem, since"
	einfo "'hprunlevel' and 'local' are not started from the same runlevel"
	einfo
	einfo "Also note that the file /etc/runlevels/.critical has been created."
	einfo "This file contains the 'critical' boot services; since hprofile"
	einfo "should be started before modules (which is a critical service),"
	einfo "it must be mentioned in this file."
}