blob: 45c26096cc77aee5f6f02ae9e50de0ac853a36e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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
|