public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/xbill/
@ 2021-08-23  5:05 Sam James
  0 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2021-08-23  5:05 UTC (permalink / raw
  To: gentoo-commits

commit:     2c81abb29b6dd6d708c4d568cad2146da3422d5a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 23 04:14:06 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 23 05:05:02 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c81abb2

games-arcade/xbill: fix group of binary

Closes: https://bugs.gentoo.org/809353
Signed-off-by: Sam James <sam <AT> gentoo.org>

 games-arcade/xbill/{xbill-2.1-r3.ebuild => xbill-2.1-r4.ebuild} | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/games-arcade/xbill/xbill-2.1-r3.ebuild b/games-arcade/xbill/xbill-2.1-r4.ebuild
similarity index 90%
rename from games-arcade/xbill/xbill-2.1-r3.ebuild
rename to games-arcade/xbill/xbill-2.1-r4.ebuild
index 70378b00ceb..cbd5ae78dd0 100644
--- a/games-arcade/xbill/xbill-2.1-r3.ebuild
+++ b/games-arcade/xbill/xbill-2.1-r4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -43,6 +43,7 @@ src_install() {
 	default
 	newicon pixmaps/icon.xpm ${PN}.xpm
 	make_desktop_entry ${PN} XBill ${PN}
-	fowners :gamestat /var/lib/xbill/scores
+
+	fowners :gamestat /var/lib/xbill/scores /usr/bin/${PN}
 	fperms 664 /var/lib/xbill/scores
 }


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-arcade/xbill/
@ 2022-11-20 11:08 Pacho Ramos
  0 siblings, 0 replies; 4+ messages in thread
From: Pacho Ramos @ 2022-11-20 11:08 UTC (permalink / raw
  To: gentoo-commits

commit:     86efe7371ca63fc4655a1dc9caa4bccdbbec1d83
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 20 11:03:15 2022 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Nov 20 11:08:06 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86efe737

games-arcade/xbill: Disable gtk2 gui

As it is EOL for a long time, use Athena as most distros are doing. Also use
an icon with higher resolution.

Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 games-arcade/xbill/Manifest            |  1 +
 games-arcade/xbill/xbill-2.1-r6.ebuild | 51 ++++++++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/games-arcade/xbill/Manifest b/games-arcade/xbill/Manifest
index b1b8dba1c1fb..2de057050fc8 100644
--- a/games-arcade/xbill/Manifest
+++ b/games-arcade/xbill/Manifest
@@ -1 +1,2 @@
 DIST xbill-2.1.tar.gz 77610 BLAKE2B aeadc62fa01a3d37b1ae6388987e5d5e3a2d73b9c5afa99b9a2c61155eeb5fb2efc4a36dd2cbeb3fd2f677b385550146d75964afa5f7e83a27f6dc7a16db83c9 SHA512 127604d88258db0ec47084209c656f8817146d70b0fe16f5a1d79883415cf38200594834b39080d78c627104ae6d204f3c12caf127fa094108c4edfbfa98d966
+DIST xbill.png 49325 BLAKE2B a2b5cacee2f5aaf62bcea941dbde26c4cf17ef29c0018ecbd66aefb64e6d1240ac756a32b84d631e4675774b7a06d7c56756debe80df8252684181e0e638a9a0 SHA512 cb41e8603f400cf7b4f8fde2739e798872cefd6e45ff0ff17ddf1f02958f572195022adcdc7ac308cb4236fb79ff68433673cfbaefaf5ccdb426d6070f39e854

diff --git a/games-arcade/xbill/xbill-2.1-r6.ebuild b/games-arcade/xbill/xbill-2.1-r6.ebuild
new file mode 100644
index 000000000000..e17560bf50eb
--- /dev/null
+++ b/games-arcade/xbill/xbill-2.1-r6.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools desktop
+
+DESCRIPTION="A game about an evil hacker called Bill!"
+HOMEPAGE="http://www.xbill.org/"
+SRC_URI="http://www.xbill.org/download/${P}.tar.gz
+	https://dashboard.snapcraft.io/site_media/appmedia/2018/04/xbill.png"
+
+LICENSE="GPL-1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+	acct-group/gamestat
+	media-fonts/font-misc-misc
+	x11-libs/libXaw
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=(
+	"${FILESDIR}"/${P}-gentoo.patch
+	"${FILESDIR}"/${P}-clang16.patch
+)
+
+src_prepare() {
+	default
+	mv configure.in configure.ac || die
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		--disable-motif \
+		--disable-gtk \
+		--enable-athena
+}
+
+src_install() {
+	default
+	doicon ${DISTDIR}/${PN}.png
+	make_desktop_entry ${PN} XBill ${PN}
+
+	fowners :gamestat /var/lib/xbill/scores /usr/bin/${PN}
+	fperms 664 /var/lib/xbill/scores
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-arcade/xbill/
@ 2022-11-20 11:08 Pacho Ramos
  0 siblings, 0 replies; 4+ messages in thread
From: Pacho Ramos @ 2022-11-20 11:08 UTC (permalink / raw
  To: gentoo-commits

commit:     503f91f1a20cf2ac4c4f16f875cd07d8080cbfff
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 20 11:07:17 2022 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Nov 20 11:08:07 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=503f91f1

games-arcade/xbill: fix quotes

Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 games-arcade/xbill/xbill-2.1-r6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-arcade/xbill/xbill-2.1-r6.ebuild b/games-arcade/xbill/xbill-2.1-r6.ebuild
index e17560bf50eb..fdff9e03b315 100644
--- a/games-arcade/xbill/xbill-2.1-r6.ebuild
+++ b/games-arcade/xbill/xbill-2.1-r6.ebuild
@@ -43,7 +43,7 @@ src_configure() {
 
 src_install() {
 	default
-	doicon ${DISTDIR}/${PN}.png
+	doicon "${DISTDIR}"/${PN}.png
 	make_desktop_entry ${PN} XBill ${PN}
 
 	fowners :gamestat /var/lib/xbill/scores /usr/bin/${PN}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-arcade/xbill/
@ 2022-12-19  7:23 Ionen Wolkens
  0 siblings, 0 replies; 4+ messages in thread
From: Ionen Wolkens @ 2022-12-19  7:23 UTC (permalink / raw
  To: gentoo-commits

commit:     fc57dad5a13a2bc2d5c7d6e08a5e0adc207982ff
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 19 06:47:14 2022 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Mon Dec 19 07:11:36 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc57dad5

games-arcade/xbill: minor ebuild tidying

Notably in->ac, unnecessary since this was bumped
to EAPI=8 (the rest is just style).

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 games-arcade/xbill/xbill-2.1-r6.ebuild | 21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

diff --git a/games-arcade/xbill/xbill-2.1-r6.ebuild b/games-arcade/xbill/xbill-2.1-r6.ebuild
index fdff9e03b315..edeebb7b82a1 100644
--- a/games-arcade/xbill/xbill-2.1-r6.ebuild
+++ b/games-arcade/xbill/xbill-2.1-r6.ebuild
@@ -5,21 +5,20 @@ EAPI=8
 
 inherit autotools desktop
 
-DESCRIPTION="A game about an evil hacker called Bill!"
+DESCRIPTION="Game about an evil hacker called Bill!"
 HOMEPAGE="http://www.xbill.org/"
-SRC_URI="http://www.xbill.org/download/${P}.tar.gz
+SRC_URI="
+	http://www.xbill.org/download/${P}.tar.gz
 	https://dashboard.snapcraft.io/site_media/appmedia/2018/04/xbill.png"
 
 LICENSE="GPL-1"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~x86"
-IUSE=""
 
 RDEPEND="
 	acct-group/gamestat
 	media-fonts/font-misc-misc
-	x11-libs/libXaw
-"
+	x11-libs/libXaw"
 DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"
 
@@ -30,19 +29,23 @@ PATCHES=(
 
 src_prepare() {
 	default
-	mv configure.in configure.ac || die
+
 	eautoreconf
 }
 
 src_configure() {
-	econf \
-		--disable-motif \
-		--disable-gtk \
+	local econfargs=(
+		--disable-motif
+		--disable-gtk
 		--enable-athena
+	)
+
+	econf "${econfargs[@]}"
 }
 
 src_install() {
 	default
+
 	doicon "${DISTDIR}"/${PN}.png
 	make_desktop_entry ${PN} XBill ${PN}
 


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-12-19  7:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-20 11:08 [gentoo-commits] repo/gentoo:master commit in: games-arcade/xbill/ Pacho Ramos
  -- strict thread matches above, loose matches on Subject: below --
2022-12-19  7:23 Ionen Wolkens
2022-11-20 11:08 Pacho Ramos
2021-08-23  5:05 Sam James

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox