diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2024-04-11 14:01:27 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-04-11 14:01:27 +0300 |
commit | 9b87909d120387eb2a9f07232f65f6a79b42dd9b (patch) | |
tree | 0a8b64eff37a91be0694aa0b7d842d7053f08310 /x11-misc/xcb | |
parent | sys-fs/ext4magic: drop 0.3.2-r1, EAPI6-- (diff) | |
download | gentoo-9b87909d120387eb2a9f07232f65f6a79b42dd9b.tar.gz gentoo-9b87909d120387eb2a9f07232f65f6a79b42dd9b.tar.bz2 gentoo-9b87909d120387eb2a9f07232f65f6a79b42dd9b.zip |
x11-misc/xcb: drop 2.4-r1, EAPI6--
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'x11-misc/xcb')
-rw-r--r-- | x11-misc/xcb/xcb-2.4-r1.ebuild | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/x11-misc/xcb/xcb-2.4-r1.ebuild b/x11-misc/xcb/xcb-2.4-r1.ebuild deleted file mode 100644 index 6e45fc992880..000000000000 --- a/x11-misc/xcb/xcb-2.4-r1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit toolchain-funcs - -DESCRIPTION="Marc Lehmann's improved X Cut Buffers" -HOMEPAGE="http://oldhome.schmorp.de/marc/xcb.html" -SRC_URI="http://oldhome.schmorp.de/marc/data/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 ~ppc ~riscv x86" -IUSE="motif" - -RDEPEND=" - x11-libs/libX11 - x11-libs/libXaw - x11-libs/libXext - x11-libs/libXt -" -DEPEND=" - ${RDEPEND} - x11-base/xorg-proto - motif? ( >=x11-libs/motif-2.3:0 ) -" - -src_compile() { - local gui libs - - if use motif; then - gui="-DMOTIF" - libs="-lXm -lXt -lX11" - else - gui="-DATHENA" - libs="-lXaw -lXt -lXext -lX11" - fi - - emake \ - -f Makefile.std xcb Xcb.ad \ - CC="$(tc-getCC)" \ - CPP="$(tc-getCPP)" \ - CFLAGS="${CFLAGS} ${gui}" \ - GUI="${gui}" \ - LIBS="${libs}" \ - LDFLAGS="${LDFLAGS}" -} - -src_install() { - dobin xcb - newman xcb.man xcb.1 - insinto /usr/share/X11/app-defaults - newins Xcb.ad Xcb -} |