Make installation of bl-1 stuff optional.
This commit is contained in:
parent
297690bb38
commit
71a33a9a62
1 changed files with 4 additions and 2 deletions
|
@ -9,7 +9,7 @@ DOWNLOADS="mirror://savannah/halevt/${PNV}.tar.gz"
|
||||||
LICENCES="GPL-2"
|
LICENCES="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
PLATFORMS="~amd64"
|
PLATFORMS="~amd64"
|
||||||
MYOPTIONS=""
|
MYOPTIONS="baselayout"
|
||||||
|
|
||||||
DEPENDENCIES="
|
DEPENDENCIES="
|
||||||
build:
|
build:
|
||||||
|
@ -36,7 +36,8 @@ src_install() {
|
||||||
insinto /etc/halevt
|
insinto /etc/halevt
|
||||||
doins *.xml
|
doins *.xml
|
||||||
|
|
||||||
hereinitd halevt <<EOF
|
if option baselayout ; then
|
||||||
|
hereinitd halevt <<EOF
|
||||||
#!/sbin/runscript
|
#!/sbin/runscript
|
||||||
# Copyright 2009 Daniel Mierswa <impulze@impulze.org>
|
# Copyright 2009 Daniel Mierswa <impulze@impulze.org>
|
||||||
# Distributed under the terms of the GNU General Public License, v2 or later
|
# Distributed under the terms of the GNU General Public License, v2 or later
|
||||||
|
@ -57,5 +58,6 @@ stop() {
|
||||||
eend $?
|
eend $?
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue