diff options
Diffstat (limited to 'ebuildgen')
-rw-r--r-- | ebuildgen/ebuildoutput.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ebuildgen/ebuildoutput.py b/ebuildgen/ebuildoutput.py index a8ca3a6..dd212e0 100644 --- a/ebuildgen/ebuildoutput.py +++ b/ebuildgen/ebuildoutput.py @@ -57,15 +57,15 @@ def outputebuild(iuse,deps,usedeps,dltype,adress,installmethod): '# Copyright 1999-' + strftime("%Y") + ' Gentoo Foundation', '# Distributed under the terms of the GNU General Public License v2', '# $Header: $', - '' + '', + 'EAPI=3', + '', ] inheritstr = 'inherit ' + eclass[dltype] + ' autotools' text.append(inheritstr) text += [ '', - 'EAPI=3', - '', 'DESCRIPTION=""', 'HOMEPAGE=""' ] |