blob: 4ef1383e182346f9efc310887078dcff83052fa0 [file] [log] [blame]
# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
# Distributed under the terms of the GNU General Public License v2
EAPI=4
inherit toolchain-funcs
DESCRIPTION="App that disables ECHO on tty1 for Chromium OS"
HOMEPAGE="http://www.chromium.org/"
SRC_URI=""
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86"
IUSE=""
S="${WORKDIR}"
src_unpack() {
cp -R "${FILESDIR}"/* ./ || die
}
src_compile() {
tc-export CC
emake
}
src_install() {
into /
dosbin disable_echo
insinto /etc/init
doins disable_echo.conf
}