* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xcb/
@ 2015-09-13 18:45 Manuel Rüger
0 siblings, 0 replies; 6+ messages in thread
From: Manuel Rüger @ 2015-09-13 18:45 UTC (permalink / raw
To: gentoo-commits
commit: e826118cc130de2a7e56d75431823f6d1ca2f17e
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 13 18:45:10 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Sep 13 18:45:10 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e826118c
x11-misc/xcb: Remove old
Package-Manager: portage-2.2.20.1
x11-misc/xcb/xcb-2.4.ebuild | 49 ---------------------------------------------
1 file changed, 49 deletions(-)
diff --git a/x11-misc/xcb/xcb-2.4.ebuild b/x11-misc/xcb/xcb-2.4.ebuild
deleted file mode 100644
index f3fdf2a..0000000
--- a/x11-misc/xcb/xcb-2.4.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=2
-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 x86"
-IUSE="motif"
-
-RDEPEND="x11-libs/libX11
- x11-libs/libXt
- x11-libs/libXaw
- x11-libs/libXext"
-DEPEND="${RDEPEND}
- x11-proto/xproto
- 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
-
- tc-export CC
- emake -f Makefile.std xcb Xcb.ad \
- CFLAGS="${CFLAGS} ${gui}" \
- GUI="${gui}" \
- LIBS="${libs}" \
- || die "emake failed"
-}
-
-src_install() {
- dobin xcb || die "dobin failed"
- newman xcb.man xcb.1
- insinto /usr/share/X11/app-defaults
- newins Xcb.ad Xcb || die "newins failed"
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xcb/
@ 2016-06-30 7:18 Jeroen Roovers
0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers @ 2016-06-30 7:18 UTC (permalink / raw
To: gentoo-commits
commit: 4c18063465cfeaf27012fec894a1739f7ebf2aac
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 30 07:17:26 2016 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Thu Jun 30 07:18:43 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c180634
x11-misc/xcb: Quote CPP (bug #587344 by Toralf Förster).
Package-Manager: portage-2.3.0
x11-misc/xcb/xcb-2.4-r1.ebuild | 33 ++++++++++++++++++---------------
1 file changed, 18 insertions(+), 15 deletions(-)
diff --git a/x11-misc/xcb/xcb-2.4-r1.ebuild b/x11-misc/xcb/xcb-2.4-r1.ebuild
index 16165c6..dde2a07 100644
--- a/x11-misc/xcb/xcb-2.4-r1.ebuild
+++ b/x11-misc/xcb/xcb-2.4-r1.ebuild
@@ -1,9 +1,8 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI=2
-
+EAPI=6
inherit toolchain-funcs
DESCRIPTION="Marc Lehmann's improved X Cut Buffers"
@@ -15,13 +14,17 @@ SLOT="0"
KEYWORDS="alpha amd64 ~ppc x86"
IUSE="motif"
-RDEPEND="x11-libs/libX11
- x11-libs/libXt
+RDEPEND="
+ x11-libs/libX11
x11-libs/libXaw
- x11-libs/libXext"
-DEPEND="${RDEPEND}
+ x11-libs/libXext
+ x11-libs/libXt
+"
+DEPEND="
+ ${RDEPEND}
x11-proto/xproto
- motif? ( >=x11-libs/motif-2.3:0 )"
+ motif? ( >=x11-libs/motif-2.3:0 )
+"
src_compile() {
local gui libs
@@ -34,19 +37,19 @@ src_compile() {
libs="-lXaw -lXt -lXext -lX11"
fi
- emake -f Makefile.std xcb Xcb.ad \
- CC=$(tc-getCC) \
- CPP=$(tc-getCPP) \
+ emake \
+ -f Makefile.std xcb Xcb.ad \
+ CC="$(tc-getCC)" \
+ CPP="$(tc-getCPP)" \
CFLAGS="${CFLAGS} ${gui}" \
GUI="${gui}" \
LIBS="${libs}" \
- LDFLAGS="${LDFLAGS}" \
- || die "emake failed"
+ LDFLAGS="${LDFLAGS}"
}
src_install() {
- dobin xcb || die "dobin failed"
+ dobin xcb
newman xcb.man xcb.1
insinto /usr/share/X11/app-defaults
- newins Xcb.ad Xcb || die "newins failed"
+ newins Xcb.ad Xcb
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xcb/
@ 2023-10-01 7:55 Sam James
0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2023-10-01 7:55 UTC (permalink / raw
To: gentoo-commits
commit: 09b1dd28891d17060ab5ae758565373a33651b2b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 1 07:54:25 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 1 07:54:25 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09b1dd28
x11-misc/xcb: EAPI 8
Signed-off-by: Sam James <sam <AT> gentoo.org>
x11-misc/xcb/xcb-2.4-r2.ebuild | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/x11-misc/xcb/xcb-2.4-r2.ebuild b/x11-misc/xcb/xcb-2.4-r2.ebuild
index 407d12173224..6f10de40e823 100644
--- a/x11-misc/xcb/xcb-2.4-r2.ebuild
+++ b/x11-misc/xcb/xcb-2.4-r2.ebuild
@@ -1,7 +1,8 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=8
+
inherit toolchain-funcs
DESCRIPTION="Marc Lehmann's improved X Cut Buffers"
@@ -18,11 +19,11 @@ RDEPEND="
x11-libs/libXaw
x11-libs/libXext
x11-libs/libXt
+ motif? ( >=x11-libs/motif-2.3:0 )
"
DEPEND="
${RDEPEND}
x11-base/xorg-proto
- motif? ( >=x11-libs/motif-2.3:0 )
"
PATCHES=(
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xcb/
@ 2023-12-09 18:45 Sam James
0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2023-12-09 18:45 UTC (permalink / raw
To: gentoo-commits
commit: fb454734e9ce4ef1d11ef4cf6f987793550e6b65
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 9 18:45:11 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 9 18:45:11 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb454734
x11-misc/xcb: Stabilize 2.4-r2 amd64, #919582
Signed-off-by: Sam James <sam <AT> gentoo.org>
x11-misc/xcb/xcb-2.4-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-misc/xcb/xcb-2.4-r2.ebuild b/x11-misc/xcb/xcb-2.4-r2.ebuild
index 6f10de40e823..66f8cb45cfe5 100644
--- a/x11-misc/xcb/xcb-2.4-r2.ebuild
+++ b/x11-misc/xcb/xcb-2.4-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://oldhome.schmorp.de/marc/data/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~riscv ~x86"
+KEYWORDS="~alpha amd64 ~ppc ~riscv ~x86"
IUSE="motif"
RDEPEND="
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xcb/
@ 2023-12-09 19:49 Arthur Zamarin
0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2023-12-09 19:49 UTC (permalink / raw
To: gentoo-commits
commit: 3fd553a6ba5e815eec1d2d61b652e0d0bb9b4988
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 9 19:49:01 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 9 19:49:01 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fd553a6
x11-misc/xcb: Stabilize 2.4-r2 x86, #919582
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
x11-misc/xcb/xcb-2.4-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-misc/xcb/xcb-2.4-r2.ebuild b/x11-misc/xcb/xcb-2.4-r2.ebuild
index 66f8cb45cfe5..21ff1bbe9c2c 100644
--- a/x11-misc/xcb/xcb-2.4-r2.ebuild
+++ b/x11-misc/xcb/xcb-2.4-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://oldhome.schmorp.de/marc/data/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 ~ppc ~riscv ~x86"
+KEYWORDS="~alpha amd64 ~ppc ~riscv x86"
IUSE="motif"
RDEPEND="
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xcb/
@ 2024-04-11 11:02 Arthur Zamarin
0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2024-04-11 11:02 UTC (permalink / raw
To: gentoo-commits
commit: 9b87909d120387eb2a9f07232f65f6a79b42dd9b
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 11 11:01:27 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 11 11:01:27 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b87909d
x11-misc/xcb: drop 2.4-r1, EAPI6--
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
x11-misc/xcb/xcb-2.4-r1.ebuild | 54 ------------------------------------------
1 file changed, 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
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-04-11 11:02 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-01 7:55 [gentoo-commits] repo/gentoo:master commit in: x11-misc/xcb/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2024-04-11 11:02 Arthur Zamarin
2023-12-09 19:49 Arthur Zamarin
2023-12-09 18:45 Sam James
2016-06-30 7:18 Jeroen Roovers
2015-09-13 18:45 Manuel Rüger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox