* [gentoo-commits] repo/proj/guru:dev commit in: games-action/netrek-brmh/
@ 2020-06-15 0:07 Brian Gloyer
0 siblings, 0 replies; 3+ messages in thread
From: Brian Gloyer @ 2020-06-15 0:07 UTC (permalink / raw
To: gentoo-commits
commit: 38189810d74986d44b14b73d0ca9f1a4e1a97672
Author: brian gloyer <brian.gloyer <AT> gmail <DOT> com>
AuthorDate: Sun Jun 14 23:35:20 2020 +0000
Commit: Brian Gloyer <brian.gloyer <AT> gmail <DOT> com>
CommitDate: Sun Jun 14 23:59:15 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=38189810
games-action/netrek-brmh: new package
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: brian gloyer <brian.gloyer <AT> gmail.com>
games-action/netrek-brmh/Manifest | 1 +
games-action/netrek-brmh/metadata.xml | 16 +++++++++
games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild | 44 +++++++++++++++++++++++
3 files changed, 61 insertions(+)
diff --git a/games-action/netrek-brmh/Manifest b/games-action/netrek-brmh/Manifest
new file mode 100644
index 0000000..a2d3f21
--- /dev/null
+++ b/games-action/netrek-brmh/Manifest
@@ -0,0 +1 @@
+DIST netrek-brmh-2.6.0.tar.gz 294581 BLAKE2B 62c7f8d5d1e905ee1d7202eee7d2320920ff0389b077b34ab090d8b1f0fb3b3bc9d07b0375b8a367ad2bd3a0a92f596c46bb5e5d53b64d9f1ef955710a7b295d SHA512 c8651b8857e685a9a6da5f783ab80019517ab9c5af09a1eada4be8f7e9694cad32a39bbeaf271e07f08cd7266819ed7ea155af3f7cfc0781c70c4814aebb2e0c
diff --git a/games-action/netrek-brmh/metadata.xml b/games-action/netrek-brmh/metadata.xml
new file mode 100644
index 0000000..10c84fb
--- /dev/null
+++ b/games-action/netrek-brmh/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>brian.gloyer@gmail.com</email>
+ <name>brian gloyer</name>
+ </maintainer>
+ <upstream>
+ <maintainer status="active">
+ <email>brian.gloyer@gmail.com</email>
+ <name>brian gloyer</name>
+ </maintainer>
+ <bugs-to>https://github.com/bgloyer/netrek-client-brmh/issues/</bugs-to>
+ <remote-id type="github">bgloyer/netrek-client-brmh</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild b/games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild
new file mode 100644
index 0000000..85ca096
--- /dev/null
+++ b/games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit toolchain-funcs
+
+DESCRIPTION="brmh client for netrek"
+HOMEPAGE="https://netrek.org"
+SRC_URI="https://github.com/bgloyer/netrek-client-brmh/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+S="${WORKDIR}/netrek-client-brmh-${PV}"
+
+RDEPEND="
+ x11-base/xorg-proto
+ x11-libs/libX11
+ x11-libs/libXmu
+"
+DEPEND="
+ ${RDEPEND}
+"
+BDEPEND="
+ x11-misc/imake
+ x11-misc/gccmakedep
+"
+
+src_configure() {
+ xmkmf || die
+ make depend || die
+}
+
+src_compile() {
+ emake \
+ CC="$(tc-getCC)" \
+ CDEBUGFLAGS="${CFLAGS}" \
+ LOCAL_LDFLAGS="${LDFLAGS}"
+}
+
+src_install() {
+ dobin netrek
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: games-action/netrek-brmh/
@ 2020-06-16 1:31 Brian Gloyer
0 siblings, 0 replies; 3+ messages in thread
From: Brian Gloyer @ 2020-06-16 1:31 UTC (permalink / raw
To: gentoo-commits
commit: 7fa2421f0c78778e5da9fd5465bb429a3166ca1d
Author: brian gloyer <brian.gloyer <AT> gmail <DOT> com>
AuthorDate: Tue Jun 16 01:19:45 2020 +0000
Commit: Brian Gloyer <brian.gloyer <AT> gmail <DOT> com>
CommitDate: Tue Jun 16 01:19:45 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7fa2421f
games-action/netrek-brmh: make -> emake
Signed-off-by: brian gloyer <brian.gloyer <AT> gmail.com>
Package-Manager: Portage-2.3.99, Repoman-2.3.22
games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild b/games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild
index 85ca096..ea3f79c 100644
--- a/games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild
+++ b/games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild
@@ -29,7 +29,7 @@ BDEPEND="
src_configure() {
xmkmf || die
- make depend || die
+ emake depend || die
}
src_compile() {
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: games-action/netrek-brmh/
@ 2021-05-16 14:06 Anna Vyalkova
0 siblings, 0 replies; 3+ messages in thread
From: Anna Vyalkova @ 2021-05-16 14:06 UTC (permalink / raw
To: gentoo-commits
commit: baf69f477cb5da7bb72de77b7a6b3326738d68c5
Author: Anna Vyalkova <cyber <AT> sysrq <DOT> in>
AuthorDate: Sun May 16 12:45:44 2021 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Sun May 16 14:05:01 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=baf69f47
games-action/netrek-brmh: fix compiler vars
Closes: https://bugs.gentoo.org/785013
Signed-off-by: Anna Vyalkova <cyber <AT> sysrq.in>
games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild b/games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild
index ea3f79cef..3780612af 100644
--- a/games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild
+++ b/games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild
@@ -29,7 +29,10 @@ BDEPEND="
src_configure() {
xmkmf || die
- emake depend || die
+ emake depend \
+ CC="$(tc-getCC)" \
+ CDEBUGFLAGS="${CFLAGS}" \
+ LOCAL_LDFLAGS="${LDFLAGS}"
}
src_compile() {
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-05-16 14:06 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-16 1:31 [gentoo-commits] repo/proj/guru:dev commit in: games-action/netrek-brmh/ Brian Gloyer
-- strict thread matches above, loose matches on Subject: below --
2021-05-16 14:06 Anna Vyalkova
2020-06-15 0:07 Brian Gloyer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox