Make installation of bl-1 stuff optional.

for/master
Wulf C. Krueger 2010-10-09 22:13:09 +02:00 committed by Daniel Mierswa
parent 71a33a9a62
commit 7b318317e7
1 changed files with 5 additions and 3 deletions

View File

@ -13,7 +13,7 @@ can be launched when specific patterns are found.
"
LICENCES="GPL-2"
MYOPTIONS=""
MYOPTIONS="baselayout"
DEPENDENCIES="
build+run:
@ -27,7 +27,9 @@ UPSTREAM_DOCUMENTATION="${HOMEPAGE}/README"
src_install() {
default
newinitd "${FILES}/metalog.initd" metalog
newconfd "${FILES}/metalog.confd" metalog
if option baselayout ; then
newinitd "${FILES}/metalog.initd" metalog
newconfd "${FILES}/metalog.confd" metalog
fi
}