diff options
author | James Le Cuirot <chewi@gentoo.org> | 2024-03-14 23:05:09 +0000 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2024-03-14 23:05:09 +0000 |
commit | 9ffdc7837fd980bb06a54b4eb986d87138eddfa0 (patch) | |
tree | ee2091ca871b563c26004ce068eb748aba7bbd61 /games-mud | |
parent | games-mud/tintin: add 2.02.41 (diff) | |
download | gentoo-9ffdc7837fd980bb06a54b4eb986d87138eddfa0.tar.gz gentoo-9ffdc7837fd980bb06a54b4eb986d87138eddfa0.tar.bz2 gentoo-9ffdc7837fd980bb06a54b4eb986d87138eddfa0.zip |
games-mud/tintin: EAPI 8, GitHub, subslot operators
Closes: https://bugs.gentoo.org/704132
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'games-mud')
-rw-r--r-- | games-mud/tintin/metadata.xml | 2 | ||||
-rw-r--r-- | games-mud/tintin/tintin-2.02.41.ebuild | 20 |
2 files changed, 13 insertions, 9 deletions
diff --git a/games-mud/tintin/metadata.xml b/games-mud/tintin/metadata.xml index d58e8bd25789..0b14f10299f5 100644 --- a/games-mud/tintin/metadata.xml +++ b/games-mud/tintin/metadata.xml @@ -6,6 +6,6 @@ <name>Gentoo Games Project</name> </maintainer> <upstream> - <remote-id type="sourceforge">tintin</remote-id> + <remote-id type="github">scandum/tintin</remote-id> </upstream> </pkgmetadata> diff --git a/games-mud/tintin/tintin-2.02.41.ebuild b/games-mud/tintin/tintin-2.02.41.ebuild index f27b1640607e..874e90f7b84a 100644 --- a/games-mud/tintin/tintin-2.02.41.ebuild +++ b/games-mud/tintin/tintin-2.02.41.ebuild @@ -1,24 +1,28 @@ # Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 DESCRIPTION="(T)he k(I)cki(N) (T)ickin d(I)kumud clie(N)t" HOMEPAGE="https://tintin.mudhalla.net/" -SRC_URI="mirror://sourceforge/tintin/${P}.tar.gz" +SRC_URI="https://github.com/scandum/${PN}/releases/download/${PV}/${P}.tar.gz" LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~x86" DEPEND=" - dev-libs/libpcre - net-libs/gnutls - sys-libs/readline:0 - sys-libs/zlib" -RDEPEND=${DEPEND} + dev-libs/libpcre:3 + net-libs/gnutls:= + sys-libs/readline:= + sys-libs/zlib +" -S=${WORKDIR}/tt/src +RDEPEND=" + ${DEPEND} +" + +S="${WORKDIR}"/tt/src src_install() { dobin tt++ |