# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI="6" #inherit eutils SRC_URI="" KEYWORDS="~amd64 ~x86" DESCRIPTION="Ebuild to test ebuild" HOMEPAGE="http://about:blank" LICENSE="GPL-3" SLOT="0" IUSE="" DEPEND="" RDEPEND="" src_unpack() { mkdir "${S}" || die "Failed to create ${S}" } src_prepare() { default } src_compile() { true; } src_test() { true; } src_install() { true; }