* [gentoo-commits] repo/gentoo:master commit in: games-mud/tkmoo/
@ 2016-05-06 2:50 Michael Sterrett
0 siblings, 0 replies; 2+ messages in thread
From: Michael Sterrett @ 2016-05-06 2:50 UTC (permalink / raw
To: gentoo-commits
commit: 3c1da61c5803b27357118b40dbb65b3330e67a4f
Author: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
AuthorDate: Fri May 6 01:57:30 2016 +0000
Commit: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
CommitDate: Fri May 6 02:49:06 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c1da61c
games-mud/tkmoo: set RDEPEND
Package-Manager: portage-2.2.26
games-mud/tkmoo/tkmoo-0.3.32.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/games-mud/tkmoo/tkmoo-0.3.32.ebuild b/games-mud/tkmoo/tkmoo-0.3.32.ebuild
index 7e18745..e45d197 100644
--- a/games-mud/tkmoo/tkmoo-0.3.32.ebuild
+++ b/games-mud/tkmoo/tkmoo-0.3.32.ebuild
@@ -1,9 +1,8 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
-
inherit eutils games
MY_PN=${PN/moo/MOO-light}
@@ -20,6 +19,7 @@ IUSE=""
DEPEND="
>=dev-lang/tcl-8.3.3:0=
>=dev-lang/tk-8.3.3:0="
+RDEPEND=${DEPEND}
S=${WORKDIR}/${MY_P}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-mud/tkmoo/
@ 2021-07-13 18:49 Ionen Wolkens
0 siblings, 0 replies; 2+ messages in thread
From: Ionen Wolkens @ 2021-07-13 18:49 UTC (permalink / raw
To: gentoo-commits
commit: ed7f708ebcdeb332523383e10362bc74bb61ebee
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sat Jul 10 20:34:09 2021 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Tue Jul 13 18:48:02 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed7f708e
games-mud/tkmoo: EAPI8, ebuild improvements
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/21586
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
games-mud/tkmoo/tkmoo-0.3.32-r1.ebuild | 46 ++++++++++++++++++----------------
1 file changed, 25 insertions(+), 21 deletions(-)
diff --git a/games-mud/tkmoo/tkmoo-0.3.32-r1.ebuild b/games-mud/tkmoo/tkmoo-0.3.32-r1.ebuild
index 557406e7a29..6da608115ae 100644
--- a/games-mud/tkmoo/tkmoo-0.3.32-r1.ebuild
+++ b/games-mud/tkmoo/tkmoo-0.3.32-r1.ebuild
@@ -1,45 +1,49 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
-inherit eutils
+EAPI=8
+
+inherit desktop
+
+MY_P="tkMOO-light-${PV}"
-MY_PN=${PN/moo/MOO-light}
-MY_P=${P/moo/MOO-light}
DESCRIPTION="MOO Client written in Tcl/Tk"
HOMEPAGE="http://www.awns.com/tkMOO-light/"
SRC_URI="http://www.awns.com/tkMOO-light/Source/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
LICENSE="tkMOO"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE=""
DEPEND="
- >=dev-lang/tcl-8.3.3:0=
- >=dev-lang/tk-8.3.3:0="
-RDEPEND=${DEPEND}
-
-S=${WORKDIR}/${MY_P}
+ dev-lang/tcl
+ dev-lang/tk
+"
+RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}/${PV}-Makefile-noclean.patch"
- "${FILESDIR}/${PV}-keys-workaround.patch"
+ "${FILESDIR}/${PV}-keys-workaround.patch"
)
src_compile() {
- emake \
- WISH="$(type -P wish)" \
- TKMOO_LIB_DIR="/usr/$(get_libdir)/${MY_PN}" \
- TKMOO_BIN_DIR=/usr/bin
+ local myemakeargs=(
+ WISH="$(type -P wish)"
+ TKMOO_LIB_DIR="${EPREFIX}/usr/share/${PN}"
+ TKMOO_BIN_DIR="${EPREFIX}/usr/bin"
+ )
+ emake "${myemakeargs[@]}"
}
src_install() {
- emake \
- TKMOO_LIB_DIR="${D}/usr/$(get_libdir)/${MY_PN}" \
- TKMOO_BIN_DIR="${D}/usr/bin" \
- install
+ local emakeargs=(
+ TKMOO_LIB_DIR="${ED}/usr/share/${PN}"
+ TKMOO_BIN_DIR="${ED}/usr/bin"
+ )
+ emake "${emakeargs[@]}" install
+
dodoc README dot.tkmoolightrc bugsmail.txt
dosym tkMOO-lite /usr/bin/tkmoo
- make_desktop_entry tkmoo "tkMOO"
+ make_desktop_entry tkmoo "tkMOO" applications-games
}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-07-13 18:49 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-06 2:50 [gentoo-commits] repo/gentoo:master commit in: games-mud/tkmoo/ Michael Sterrett
-- strict thread matches above, loose matches on Subject: below --
2021-07-13 18:49 Ionen Wolkens
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox