# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=6 DESCRIPTION="Test ebuild to demonstrate an invalid repoman warning" HOMEPAGE="https://www.gentoo.org" SRC_URI="" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64" IUSE="pcre" RDEPEND="pcre? ( >=dev-libs/libpcre:= )" DEPEND="" src_unpack() { mkdir "${S}" || die "Failed to create ${S}" } src_prepare() { default } src_compile() { true; } src_test() { true; } src_install() { true; }