diff options
author | David Seifert <soap@gentoo.org> | 2021-05-02 01:55:07 +0200 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2021-05-02 11:24:50 -0400 |
commit | 170c4ba528dfb6a9685f8abcf2ca82eeac6f0329 (patch) | |
tree | e1026d1717c40f6422c05b8951d3a18c7d13d16b /x11-misc | |
parent | x11-libs/xtrans: Define XORG_CONFIGURE_OPTIONS in src_configure (diff) | |
download | gentoo-170c4ba528dfb6a9685f8abcf2ca82eeac6f0329.tar.gz gentoo-170c4ba528dfb6a9685f8abcf2ca82eeac6f0329.tar.bz2 gentoo-170c4ba528dfb6a9685f8abcf2ca82eeac6f0329.zip |
x11-misc/compose-tables: sort src_* phase functions
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: David Seifert <soap@gentoo.org>
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/compose-tables/compose-tables-1.7.0.ebuild | 10 |
1 files 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 7e7d9e2e4120..0a4741cd8b43 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 +} |