small changes in openrc-branding; adding baselayout-branding

This commit is contained in:
belliash 2012-01-17 00:31:04 +01:00
rodzic 9b9606fca7
commit 564e8e98d2
4 zmienionych plików z 21 dodań i 3 usunięć

Wyświetl plik

@ -0,0 +1,4 @@
# This directive defines the new branding for BaseLayout package that will be set by the
# baselayout-branding module. Usually this should be a string representing distribution
# name.
CUSTOM_BRANDING="MyOwn Base System"

Wyświetl plik

@ -1,3 +1,3 @@
# This directive defines the new branding for OpenRC that will be set by openrc-branding
# module. Usually this should be a distribution name.
# This directive defines the new branding for OpenRC package that will be set by
# openrc-branding module. Usually this should be a distribution name.
CUSTOM_BRANDING="MyOwn"

Wyświetl plik

@ -0,0 +1,14 @@
# Copyright 2010-2012, Asio Software Technologies
# Distributed under the terms of the GNU General Public License v3
EZMOD_DESCRIPTION="Allows to re-brand the sys-apps/baselayout package"
EZMOD_COMPATIBILITY="ezsync"
EZMOD_AUTHOR="Rafal Kupiec"
EZMOD_VERSION="1.0"
ezsync_precommit() {
printInfo "Enabling custom BaseLayout branding..."
find ${PORTAGESDIR}/${PORTAGE_BUILD[0]}/sys-apps/baselayout -type f -name \*.ebuild | while read EBUILD; do
sed -i "s/echo \"Gentoo Base System release/echo \"${CUSTOM_BRANDING}/g" ${EBUILD} || return 1
done
return 0
}

Wyświetl plik

@ -1,6 +1,6 @@
# Copyright 2010-2012, Asio Software Technologies
# Distributed under the terms of the GNU General Public License v3
EZMOD_DESCRIPTION="Allows to re-brand the OpenRC package"
EZMOD_DESCRIPTION="Allows to re-brand the sys-apps/openrc package"
EZMOD_COMPATIBILITY="ezsync"
EZMOD_AUTHOR="Rafal Kupiec"
EZMOD_VERSION="1.0"