commit: 170c4ba528dfb6a9685f8abcf2ca82eeac6f0329
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat May 1 23:55:07 2021 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun May 2 15:24:50 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=170c4ba5
x11-misc/compose-tables: sort src_* phase functions
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: David Seifert <soap <AT> gentoo.org>
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
x11-misc/compose-tables/compose-tables-1.7.0.ebuild | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/x11-misc/compose-tables/compose-tables-1.7.0.ebuild
b/x11-misc/compose-tables/compose-tables-1.7.0.ebuild
index 7e7d9e2e412..0a4741cd8b4 100644
--- a/x11-misc/compose-tables/compose-tables-1.7.0.ebuild
+++ b/x11-misc/compose-tables/compose-tables-1.7.0.ebuild
@@ -6,11 +6,11 @@ EAPI=7
XORG_MULTILIB=no
inherit xorg-3
+DESCRIPTION="X.Org Compose Key tables from libX11"
# xorg-3.eclass would attempt to fetch a tarball with a matching name to this
package
SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/lib/libX11-${PV}.tar.${XORG_TARBALL_SUFFIX}"
S="${WORKDIR}/libX11-${PV}/"
-DESCRIPTION="X.Org Compose Key tables from libX11"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
# Only needed by configure
@@ -31,10 +31,10 @@ src_compile() {
emake -C nls
}
-src_install() {
- emake DESTDIR="${D}" -C nls install
-}
-
src_test() {
:;
}
+
+src_install() {
+ emake DESTDIR="${D}" -C nls install
+}