summaryrefslogtreecommitdiff
path: root/eclass/flx-init-scripts.eclass
blob: 8b49968c25985411fedc6fd9fe4344fac4723d14 (plain) (blame)
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
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

# @ECLASS: flx-init-scripts.eclass
# @MAINTAINER:
# Bertrand Jacquin <bertrand@jacquin.bzh>
# @BLURB: Eclass for Formilux init scripts
# @DESCRIPTION:
# Formilux init scripts helper

inherit git-r3

SVCNAME="${PN//init-}"

DESCRIPTION="Formilux init script for ${SVCNAME}"
HOMEPAGE="http://master.formilux.org/git/dist/pkg/${SVCNAME}.git"
EGIT_REPO_URI="http://master.formilux.org/git/dist/pkg/${SVCNAME}.git"

LICENSE="public-domain"
SLOT="0"
IUSE=""

EXPORT_FUNCTIONS src_prepare src_install

flx-init-scripts_src_prepare() {
	if [[ -d addons && ! -e add-ons ]] ; then
		mv addons add-ons
	fi

	local _f
	for _f in \
		add-ons/initscript \
		"add-ons/init.d/${SVCNAME}" \
		"add-ons/${SVCNAME}.init"
	do
		if [[ -e "${_f}" ]] ; then
			mv "${_f}" "add-ons/${SVCNAME}"
			break
		fi
	done

}

flx-init-scripts_src_install() {
	cd "${S}"

	exeinto /sbin/init.d
	doexe "add-ons/${SVCNAME}"

	[[ -e ChangeLog ]] && dodoc ChangeLog
}