diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-05-13 05:50:34 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-05-13 05:50:34 +0100 |
commit | 4b718beb7d5fd4e0b5d741ff3a4c5c570519195e (patch) | |
tree | eb9b412ce4b9457ccbb2a6481d80e5f407fdd499 /x11-libs/libXaw3d | |
parent | 241157fae4eae88cefc48b4644bad8b9e53583dc (diff) |
gentoo auto-resync : 13:05:2023 - 05:50:34
Diffstat (limited to 'x11-libs/libXaw3d')
-rw-r--r-- | x11-libs/libXaw3d/Manifest | 2 | ||||
-rw-r--r-- | x11-libs/libXaw3d/libXaw3d-1.6.5.ebuild | 33 |
2 files changed, 35 insertions, 0 deletions
diff --git a/x11-libs/libXaw3d/Manifest b/x11-libs/libXaw3d/Manifest index b8e3684a55fc..43dacc2f273d 100644 --- a/x11-libs/libXaw3d/Manifest +++ b/x11-libs/libXaw3d/Manifest @@ -1,3 +1,5 @@ DIST libXaw3d-1.6.4.tar.xz 482168 BLAKE2B a1e2e66ef4c5d102523080beae903b21b9b6bd0a5e4bd1e685bbfc4e1eaa3dc594f65f357d027f93808fd34d7e05ed8631fe33b6849760fc1fcc919c8b85d526 SHA512 388e905871a823d0f87fbc29e9ea2de95ac13ccaf50e031a01602d8d388d61bcf1823b4ded8c1a06bdce382e8ddcbc1b0182ccef00cde8064b09176163283dba +DIST libXaw3d-1.6.5.tar.xz 483496 BLAKE2B 54dc1bb06b40685e3e2f00bc1aa8447a23ff61226c0b8d20cb0fe070bb7d914290cc4a5f2c70925da528bd9f02a283748178cb2b17111a56fbcc938a1eae25c9 SHA512 b2fbceffcbaff7c332f37769fd6b496ac820de8a80fbf9777416f1895b74a07e4efc3f2bd64db3f584983b24d2b10e9b60cf4aae3ec4a30c06510ae7c213a663 EBUILD libXaw3d-1.6.4.ebuild 763 BLAKE2B bf842e8576b3f3e3dc6d004ac6980e0a5bb3d22090bbd193a13aa7509670880517017cc358cb947af48e36485a95863a262a97f39e1ce1950fc1e3308d163461 SHA512 d3d61b60c14238f6c1d2bf9974ed639e1d02a1d750409e2323f389b020436ed9aa1e8dcc96c874231e0b2fbc0f87c2665908543faed93749ab0468beaf756fb8 +EBUILD libXaw3d-1.6.5.ebuild 769 BLAKE2B 739ad39c746794f22c8d7ddb63b4e606b7402dc9e6b5428591a353d7e78fefdc8d614a595d4e3e1d480169f7a967b0b26b48df608df39775ff13c23edcfebd4b SHA512 9cc2f68766f08b34d37d0c2c996c35ec9bf599bc19ca1524a7a34d4b95b63fc97ba901669a2963c65319b323202b6f81ade7fbb6e8c884aa0a4395f8d202c378 MISC metadata.xml 339 BLAKE2B 60635a05848869d4aba7783f45cb02a672045a8a9b1bed933f1587ecd0ab81aa32ecc63e8a6742b4eee50a14c3e32b17b6bf14b3797e5f11e0dd74a8b582b4bf SHA512 1ed17cca85445b70786acfd900c7a75eb765001e7218e576356ef76d3e9e6399df3a45413f4650e555d2404d0c9e5f0f20f814c1bc1d08e1e8138aedbacfe50d diff --git a/x11-libs/libXaw3d/libXaw3d-1.6.5.ebuild b/x11-libs/libXaw3d/libXaw3d-1.6.5.ebuild new file mode 100644 index 000000000000..31c123fa2f7a --- /dev/null +++ b/x11-libs/libXaw3d/libXaw3d-1.6.5.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +XORG_TARBALL_SUFFIX="xz" +inherit xorg-3 + +DESCRIPTION="X.Org Xaw3d library" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris" +IUSE="xpm" + +RDEPEND=" + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXmu + x11-libs/libXt + xpm? ( x11-libs/libXpm )" +DEPEND="${RDEPEND} + x11-base/xorg-proto" +BDEPEND=" + sys-devel/flex + app-alternatives/yacc" + +src_configure() { + local XORG_CONFIGURE_OPTIONS=( + --enable-internationalization + $(use_enable xpm multiplane-bitmaps) + --enable-gray-stipples + --enable-arrow-scrollbars + ) + xorg-3_src_configure +} |