diff options
author | David Seifert <soap@gentoo.org> | 2020-02-22 22:07:26 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2020-02-22 22:07:26 +0100 |
commit | 3b8cba93fab70dd0fa89cebdd4b37c732580e9ac (patch) | |
tree | cbcb946c9c0769acaec3648b63979c24ec30a5c2 /dev-libs/libite | |
parent | x11-libs/libxcb: Version bump to 1.14 (diff) | |
download | gentoo-3b8cba93fab70dd0fa89cebdd4b37c732580e9ac.tar.gz gentoo-3b8cba93fab70dd0fa89cebdd4b37c732580e9ac.tar.bz2 gentoo-3b8cba93fab70dd0fa89cebdd4b37c732580e9ac.zip |
*/*: [QA] Use consistent function definition formatting
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-libs/libite')
-rw-r--r-- | dev-libs/libite/libite-2.0.0.ebuild | 6 | ||||
-rw-r--r-- | dev-libs/libite/libite-2.1.0.ebuild | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/dev-libs/libite/libite-2.0.0.ebuild b/dev-libs/libite/libite-2.0.0.ebuild index 0380b8e161c4..b5328e1645dd 100644 --- a/dev-libs/libite/libite-2.0.0.ebuild +++ b/dev-libs/libite/libite-2.0.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -17,11 +17,11 @@ PATCHES=( "${FILESDIR}"/${P}-fix-path.patch ) -src_configure(){ +src_configure() { econf --enable-static=$(usex static-libs) } -src_install(){ +src_install() { default find "${D}" -name '*.la' -delete || die rm "${D}/usr/share/doc/${PF}/LICENSE" || die diff --git a/dev-libs/libite/libite-2.1.0.ebuild b/dev-libs/libite/libite-2.1.0.ebuild index 285bb078460a..f0baf554132e 100644 --- a/dev-libs/libite/libite-2.1.0.ebuild +++ b/dev-libs/libite/libite-2.1.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,11 +12,11 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="static-libs" -src_configure(){ +src_configure() { econf --enable-static=$(usex static-libs) } -src_install(){ +src_install() { default find "${D}" -name '*.la' -delete || die rm "${D}/usr/share/doc/${PF}/LICENSE" || die |