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-lang/lisaac | |
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-lang/lisaac')
-rw-r--r-- | dev-lang/lisaac/lisaac-0.13.1-r2.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dev-lang/lisaac/lisaac-0.13.1-r2.ebuild b/dev-lang/lisaac/lisaac-0.13.1-r2.ebuild index dffa1101fd40..7d7646984cb0 100644 --- a/dev-lang/lisaac/lisaac-0.13.1-r2.ebuild +++ b/dev-lang/lisaac/lisaac-0.13.1-r2.ebuild @@ -20,12 +20,12 @@ RDEPEND="${DEPEND}" SITEFILE=50${PN}-gentoo.el -src_prepare(){ +src_prepare() { epatch "${FILESDIR}/${P}-makefile.patch" rm lib/number/essai } -src_compile(){ +src_compile() { emake CC="$(tc-getCC)" if use emacs; then @@ -34,7 +34,7 @@ src_compile(){ fi } -src_install(){ +src_install() { emake DESTDIR="${D}" DOC="/usr/share/doc/${PF}" install if use vim-syntax; then @@ -57,7 +57,7 @@ src_install(){ fi } -pkg_postinst(){ +pkg_postinst() { if use vim-syntax; then elog "Add the following line to your vimrc if you want" elog "to enable the lisaac support :" @@ -68,6 +68,6 @@ pkg_postinst(){ use emacs && elisp-site-regen } -pkg_postrm(){ +pkg_postrm() { use emacs && elisp-site-regen } |