diff options
Diffstat (limited to 'ebuild-test/minorsyn/minorsyn-0.ebuild')
-rw-r--r-- | ebuild-test/minorsyn/minorsyn-0.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/ebuild-test/minorsyn/minorsyn-0.ebuild b/ebuild-test/minorsyn/minorsyn-0.ebuild new file mode 100644 index 0000000..45c2609 --- /dev/null +++ b/ebuild-test/minorsyn/minorsyn-0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="Minor syntax errors" +HOMEPAGE="http://example.com/" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + + # leading space +: trailing space +: unquoted variable: ${S} + +WANT_AUTOMAKE=latest + +src_unpack() { + # quoted ${A} + unpack "${A}" + epatch +} + +src_compile() { + econf + built_with_use foo + useq foo + hasq foo +} + +src_install() { + cd "${S}" + dodoc COPYING + preserve_old_lib foo + bindnow-flags foo +} + +# blank line in the middle + + +# blank line at the end + |