* [gentoo-commits] repo/gentoo:master commit in: games-arcade/stardork/
@ 2018-04-24 19:26 Pacho Ramos
0 siblings, 0 replies; 3+ messages in thread
From: Pacho Ramos @ 2018-04-24 19:26 UTC (permalink / raw
To: gentoo-commits
commit: b8e5138942d77e02eea5ad07a7aca15a59872786
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 24 18:19:12 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Tue Apr 24 19:26:15 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8e51389
games-arcade/stardork: Stop using games.eclass
Package-Manager: Portage-2.3.31, Repoman-2.3.9
games-arcade/stardork/stardork-0.7-r1.ebuild | 33 ++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/games-arcade/stardork/stardork-0.7-r1.ebuild b/games-arcade/stardork/stardork-0.7-r1.ebuild
new file mode 100644
index 00000000000..d2458f6571f
--- /dev/null
+++ b/games-arcade/stardork/stardork-0.7-r1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit toolchain-funcs
+
+DESCRIPTION="An ncurses-based space shooter"
+HOMEPAGE="http://stardork.sourceforge.net/"
+SRC_URI="mirror://sourceforge/stardork/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE=""
+
+RDEPEND="sys-libs/ncurses:0="
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+"
+
+src_prepare() {
+ default
+ rm -f Makefile
+}
+
+src_compile() {
+ emake CC="$(tc-getCC)" LDLIBS="$(pkg-config ncurses --libs)" ${PN}
+}
+
+src_install() {
+ dobin ${PN}
+ einstalldocs
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/stardork/
@ 2018-04-24 19:26 Pacho Ramos
0 siblings, 0 replies; 3+ messages in thread
From: Pacho Ramos @ 2018-04-24 19:26 UTC (permalink / raw
To: gentoo-commits
commit: 0ba0a1875517eac96157f42e0ba2223122b11e70
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 24 18:19:29 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Tue Apr 24 19:26:16 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ba0a187
games-arcade/stardork: Drop old
Package-Manager: Portage-2.3.31, Repoman-2.3.9
games-arcade/stardork/stardork-0.7.ebuild | 32 -------------------------------
1 file changed, 32 deletions(-)
diff --git a/games-arcade/stardork/stardork-0.7.ebuild b/games-arcade/stardork/stardork-0.7.ebuild
deleted file mode 100644
index 05aea19da66..00000000000
--- a/games-arcade/stardork/stardork-0.7.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit toolchain-funcs games
-
-DESCRIPTION="An ncurses-based space shooter"
-HOMEPAGE="http://stardork.sourceforge.net/"
-SRC_URI="mirror://sourceforge/stardork/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
-IUSE=""
-
-RDEPEND="sys-libs/ncurses:0"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_prepare() {
- rm -f Makefile
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" LDLIBS="$(pkg-config ncurses --libs)" ${PN}
-}
-
-src_install() {
- dogamesbin ${PN}
- dodoc README
- prepgamesdirs
-}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/stardork/
@ 2021-04-13 0:26 Sam James
0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2021-04-13 0:26 UTC (permalink / raw
To: gentoo-commits
commit: 204bfc7dc4be05334957e6ccc4041aa562b6fc5b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 7 05:12:16 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Apr 13 00:26:11 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=204bfc7d
games-arcade/stardork: call pkg-config via toolchain-funcs.eclass helper
This ensures we call the correct pkg-config in e.g. cross.
Package-Manager: Portage-3.0.14-prefix, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
games-arcade/stardork/stardork-0.7-r1.ebuild | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/games-arcade/stardork/stardork-0.7-r1.ebuild b/games-arcade/stardork/stardork-0.7-r1.ebuild
index d2458f6571f..d2b7e070c09 100644
--- a/games-arcade/stardork/stardork-0.7-r1.ebuild
+++ b/games-arcade/stardork/stardork-0.7-r1.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
+
inherit toolchain-funcs
DESCRIPTION="An ncurses-based space shooter"
@@ -24,7 +25,7 @@ src_prepare() {
}
src_compile() {
- emake CC="$(tc-getCC)" LDLIBS="$(pkg-config ncurses --libs)" ${PN}
+ emake CC="$(tc-getCC)" LDLIBS="$($(tc-getPKG_CONFIG) ncurses --libs)" ${PN}
}
src_install() {
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-04-13 0:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-24 19:26 [gentoo-commits] repo/gentoo:master commit in: games-arcade/stardork/ Pacho Ramos
-- strict thread matches above, loose matches on Subject: below --
2018-04-24 19:26 Pacho Ramos
2021-04-13 0:26 Sam James
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox