diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2021-03-20 14:27:17 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2021-03-20 14:27:17 +0000 |
commit | 5bb9ff1ee56d2b5e75e01a7f066d8b0cec84ec02 (patch) | |
tree | 66e860a5099bcad013f1cf667255dc372a7c11b3 /x11-libs/libXaw3d | |
parent | 7218e1b46bceac05841e90472501742d905fb3fc (diff) |
gentoo resync : 20.03.2021
Diffstat (limited to 'x11-libs/libXaw3d')
-rw-r--r-- | x11-libs/libXaw3d/Manifest | 2 | ||||
-rw-r--r-- | x11-libs/libXaw3d/libXaw3d-1.6.3.ebuild | 20 |
2 files changed, 12 insertions, 10 deletions
diff --git a/x11-libs/libXaw3d/Manifest b/x11-libs/libXaw3d/Manifest index 890796959d5e..655a07be54a1 100644 --- a/x11-libs/libXaw3d/Manifest +++ b/x11-libs/libXaw3d/Manifest @@ -1,3 +1,3 @@ DIST libXaw3d-1.6.3.tar.bz2 561594 BLAKE2B 85f3fb6d39a9a0ccb7d2c529eff84a4a9e85bf81be16487f2119da0a670e40c2d328e17b06ca237f69029e8d43daf6eeba8488029e6e4d2f56bc1093a2f305ad SHA512 f79f997ff8442563c74f38c7d76fab2c9253691743ca3143047ce698adb4c126d02dc968be7bdc79ab3052b785fd705375d2f01171e3a3266736beb531c91424 -EBUILD libXaw3d-1.6.3.ebuild 710 BLAKE2B 45b1dd1c312dd246d37050cfd29a2798f7783a6ccd229551ba69cf2102fe04889442f797b6118d64c67108d8c7bde896de6456ae5bb94f7c21067e9ac84f075c SHA512 a02f3b95e6fbe0e9ffa9aa34e2db3d51ff49bacb6d672d6b63da9a86aa654f333f89e5d47019d537dfda9e9f295972e6494e746277f17bc9e3c1a46a287ddbb2 +EBUILD libXaw3d-1.6.3.ebuild 737 BLAKE2B e7a9946155da58edbb71fe21f9496bb66ea4159f2024d154dc8b532abb746c37be6fb864c2b4ab1340f12efd7055c7d2142e09fa24b69b444137ca5635eef0a2 SHA512 0d144618d3b9d602f17069693863802e2eff73547231ae87b1902c3e23ac574ba2aa158ca68e7d8e2877d284ca84123a9b1b4a103fe8b4afd96911a116037dcc MISC metadata.xml 230 BLAKE2B 70bf59e64305ef14908197f2aa7ffbc1769ade265097da68e001245451658af5921760c91cb74aae717543ea0017e2471fd94bfc5c4c447d2d60e2c23aa3b007 SHA512 d7a2643abd1904cc5ff4d91cbb6f1baeb7f75fd1db542c5e14f19412f4f0bd4b903f8e703a7662ba7482c79dac5529057760b6427599d35e0842755fd946e057 diff --git a/x11-libs/libXaw3d/libXaw3d-1.6.3.ebuild b/x11-libs/libXaw3d/libXaw3d-1.6.3.ebuild index 5d7c268e916a..0cc685fca9df 100644 --- a/x11-libs/libXaw3d/libXaw3d-1.6.3.ebuild +++ b/x11-libs/libXaw3d/libXaw3d-1.6.3.ebuild @@ -1,31 +1,33 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit xorg-2 +EAPI=7 + +inherit xorg-3 DESCRIPTION="X.Org Xaw3d library" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris" IUSE="unicode xpm" -RDEPEND="x11-libs/libX11 +RDEPEND=" + x11-libs/libX11 x11-libs/libXext x11-libs/libXmu x11-libs/libXt xpm? ( x11-libs/libXpm )" DEPEND="${RDEPEND} - sys-devel/flex - virtual/yacc x11-base/xorg-proto" +BDEPEND=" + sys-devel/flex + virtual/yacc" -pkg_setup() { - XORG_CONFIGURE_OPTIONS=( +src_configure() { + local XORG_CONFIGURE_OPTIONS=( $(use_enable unicode internationalization) $(use_enable xpm multiplane-bitmaps) --enable-arrow-scrollbars --enable-gray-stipples ) - - xorg-2_pkg_setup + xorg-3_src_configure } |