diff options
author | James Le Cuirot <chewi@gentoo.org> | 2022-04-01 23:07:15 +0100 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2022-04-01 23:07:15 +0100 |
commit | ad9229422e1cf2ab85e0d418da1d9795bb4a7a7d (patch) | |
tree | 748ca701c75b186e2825be20f2fde28e66cf5d34 /games-rpg | |
parent | games-rpg/the-longest-journey: New package (diff) | |
download | gentoo-ad9229422e1cf2ab85e0d418da1d9795bb4a7a7d.tar.gz gentoo-ad9229422e1cf2ab85e0d418da1d9795bb4a7a7d.tar.bz2 gentoo-ad9229422e1cf2ab85e0d418da1d9795bb4a7a7d.zip |
games-rpg/the-longest-journey-hd: New package
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'games-rpg')
-rw-r--r-- | games-rpg/the-longest-journey-hd/Manifest | 1 | ||||
-rw-r--r-- | games-rpg/the-longest-journey-hd/metadata.xml | 8 | ||||
-rw-r--r-- | games-rpg/the-longest-journey-hd/the-longest-journey-hd-1.02.ebuild | 38 |
3 files changed, 47 insertions, 0 deletions
diff --git a/games-rpg/the-longest-journey-hd/Manifest b/games-rpg/the-longest-journey-hd/Manifest new file mode 100644 index 000000000000..e609c93f354c --- /dev/null +++ b/games-rpg/the-longest-journey-hd/Manifest @@ -0,0 +1 @@ +DIST TLJHD_1.02.zip 1505177703 BLAKE2B 4f77ca7c3d1776542b262000bea0504552ba6cc85f0b210c3220ccf7ec22df59fcfd4244659e4f629a149e609d9a93f5b30adfb44008d7512f4156a554bbab52 SHA512 a3e65fa7f6edc6b547aac7ce178b054763eb15246d1c341d62f0f0a5e59c64a8aa52392685bfdeca2c6a5e0cd2a6ee14dbd00f80fe5e928e321c1df695e134cf diff --git a/games-rpg/the-longest-journey-hd/metadata.xml b/games-rpg/the-longest-journey-hd/metadata.xml new file mode 100644 index 000000000000..7c730d47817a --- /dev/null +++ b/games-rpg/the-longest-journey-hd/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>games@gentoo.org</email> + <name>Gentoo Games Project</name> + </maintainer> +</pkgmetadata> 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 new file mode 100644 index 000000000000..54d0ddf85af8 --- /dev/null +++ b/games-rpg/the-longest-journey-hd/the-longest-journey-hd-1.02.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +CHECKREQS_DISK_BUILD="1463M" +CHECKREQS_DISK_USR="1461M" +inherit check-reqs + +DESCRIPTION="High definition backgrounds and sprites for The Longest Journey" +HOMEPAGE="https://tljhd.github.io" +SRC_URI="TLJHD_${PV}.zip" +LICENSE="fairuse" +SLOT="0" +KEYWORDS="~amd64" +RESTRICT="bindist fetch" + +RDEPEND=" + ${CATEGORY}/${PN%-hd} +" + +BDEPEND=" + app-arch/unzip +" + +S="${WORKDIR}" + +pkg_nofetch() { + einfo "Please download ${SRC_URI} from:" + einfo " ${HOMEPAGE}" + einfo "and move it to your distfiles directory." +} + +src_install() { + insinto /usr/share/${PN%-hd} + # The fonts are the same as the original ones. + doins -r mods/ +} |