Files
sablink-distro/app-misc/sabayon-version/sabayon-version-5.ebuild
T
2009-08-08 09:41:08 +02:00

27 lines
579 B
Bash

# Copyright 2004-2009 Sabayon Linux
# Distributed under the terms of the GNU General Public License v2
DESCRIPTION="Sabayon Linux Release version file"
HOMEPAGE="http://www.sabayon.org/"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 amd64"
IUSE=""
SABAYON_VER="${PV}"
SABAYON_HEADER="Sabayon Linux"
SABAYON_RELEASE="sabayon-release"
src_unpack () {
if use x86; then
echo ${SABAYON_HEADER}" x86 "${SABAYON_VER} > ${SABAYON_RELEASE}
else
echo ${SABAYON_HEADER}" amd64 "${SABAYON_VER} > ${SABAYON_RELEASE}
fi
}
src_install () {
insinto /etc/
doins sabayon-release
}