summaryrefslogtreecommitdiff
path: root/eclass/flx-init-scripts.eclass
blob: 04b6713d0e46d5506deb1ac425925fab0396fe51 (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
53
# 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() {
	[ -d addons -a ! -e add-ons ] \
	  && mv addons add-ons

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

	[ -n "${fINIT}" ] \
	  && mv ${fINIT} add-ons/${SVCNAME}
}

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

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

	[ -e ChangeLog ] && dodoc ChangeLog
}