Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-rpg/the-longest-journey-hd/
Date: Fri, 01 Apr 2022 22:08:32
Message-Id: 1648850835.ad9229422e1cf2ab85e0d418da1d9795bb4a7a7d.chewi@gentoo
1 commit: ad9229422e1cf2ab85e0d418da1d9795bb4a7a7d
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 1 22:07:15 2022 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 1 22:07:15 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad922942
7
8 games-rpg/the-longest-journey-hd: New package
9
10 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
11
12 games-rpg/the-longest-journey-hd/Manifest | 1 +
13 games-rpg/the-longest-journey-hd/metadata.xml | 8 +++++
14 .../the-longest-journey-hd-1.02.ebuild | 38 ++++++++++++++++++++++
15 3 files changed, 47 insertions(+)
16
17 diff --git a/games-rpg/the-longest-journey-hd/Manifest b/games-rpg/the-longest-journey-hd/Manifest
18 new file mode 100644
19 index 000000000000..e609c93f354c
20 --- /dev/null
21 +++ b/games-rpg/the-longest-journey-hd/Manifest
22 @@ -0,0 +1 @@
23 +DIST TLJHD_1.02.zip 1505177703 BLAKE2B 4f77ca7c3d1776542b262000bea0504552ba6cc85f0b210c3220ccf7ec22df59fcfd4244659e4f629a149e609d9a93f5b30adfb44008d7512f4156a554bbab52 SHA512 a3e65fa7f6edc6b547aac7ce178b054763eb15246d1c341d62f0f0a5e59c64a8aa52392685bfdeca2c6a5e0cd2a6ee14dbd00f80fe5e928e321c1df695e134cf
24
25 diff --git a/games-rpg/the-longest-journey-hd/metadata.xml b/games-rpg/the-longest-journey-hd/metadata.xml
26 new file mode 100644
27 index 000000000000..7c730d47817a
28 --- /dev/null
29 +++ b/games-rpg/the-longest-journey-hd/metadata.xml
30 @@ -0,0 +1,8 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="project">
35 + <email>games@g.o</email>
36 + <name>Gentoo Games Project</name>
37 + </maintainer>
38 +</pkgmetadata>
39
40 diff --git a/games-rpg/the-longest-journey-hd/the-longest-journey-hd-1.02.ebuild b/games-rpg/the-longest-journey-hd/the-longest-journey-hd-1.02.ebuild
41 new file mode 100644
42 index 000000000000..54d0ddf85af8
43 --- /dev/null
44 +++ b/games-rpg/the-longest-journey-hd/the-longest-journey-hd-1.02.ebuild
45 @@ -0,0 +1,38 @@
46 +# Copyright 1999-2022 Gentoo Authors
47 +# Distributed under the terms of the GNU General Public License v2
48 +
49 +EAPI=8
50 +
51 +CHECKREQS_DISK_BUILD="1463M"
52 +CHECKREQS_DISK_USR="1461M"
53 +inherit check-reqs
54 +
55 +DESCRIPTION="High definition backgrounds and sprites for The Longest Journey"
56 +HOMEPAGE="https://tljhd.github.io"
57 +SRC_URI="TLJHD_${PV}.zip"
58 +LICENSE="fairuse"
59 +SLOT="0"
60 +KEYWORDS="~amd64"
61 +RESTRICT="bindist fetch"
62 +
63 +RDEPEND="
64 + ${CATEGORY}/${PN%-hd}
65 +"
66 +
67 +BDEPEND="
68 + app-arch/unzip
69 +"
70 +
71 +S="${WORKDIR}"
72 +
73 +pkg_nofetch() {
74 + einfo "Please download ${SRC_URI} from:"
75 + einfo " ${HOMEPAGE}"
76 + einfo "and move it to your distfiles directory."
77 +}
78 +
79 +src_install() {
80 + insinto /usr/share/${PN%-hd}
81 + # The fonts are the same as the original ones.
82 + doins -r mods/
83 +}