Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-strategy/julius/files/, games-strategy/julius/
Date: Wed, 22 Sep 2021 22:26:42
Message-Id: 1632349535.bb24b14931750caa8c0b10e4685e8daf687df566.ionen@gentoo
1 commit: bb24b14931750caa8c0b10e4685e8daf687df566
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 22 22:06:25 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 22 22:25:35 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb24b149
7
8 games-strategy/julius: drop 1.4.1
9
10 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
11
12 games-strategy/julius/Manifest | 1 -
13 games-strategy/julius/files/90julius.sh | 2 --
14 games-strategy/julius/julius-1.4.1.ebuild | 48 -------------------------------
15 3 files changed, 51 deletions(-)
16
17 diff --git a/games-strategy/julius/Manifest b/games-strategy/julius/Manifest
18 index 34cd813e85f..6431ef394db 100644
19 --- a/games-strategy/julius/Manifest
20 +++ b/games-strategy/julius/Manifest
21 @@ -1,2 +1 @@
22 -DIST julius-1.4.1.tar.gz 8592785 BLAKE2B 8eb91522fccdee33600b02de766727beb19f138c0f695eb92aaa77ea2f25ec293906d0c75d31d42159097a12317ba38b22c01e7edf722670f51fe56d625d9ae7 SHA512 8488cee4a229299fd771f7ebddf076888b2e11458b2edbb6058b29b1f7e79d372ec2f913df3afacd8191551ba692a900508e64661ead1029916e28f356f79f7b
23 DIST julius-1.6.0.tar.gz 6884324 BLAKE2B 142f05b8f7165e59678fc56fcdf9e2c00aea880540e16fedc627ed40afb4ce96511d99f0cd99f99997d8d66f776e6d847cc66256fafde771345948ba097b940e SHA512 c21256b9f126011b0961411209d354e713e6de44a30c190a7de5e0a702636961ad0775beb171b17767ec70e334e6101f9c1ad26df6860b4f4d59d74510083905
24
25 diff --git a/games-strategy/julius/files/90julius.sh b/games-strategy/julius/files/90julius.sh
26 deleted file mode 100644
27 index e88111f8994..00000000000
28 --- a/games-strategy/julius/files/90julius.sh
29 +++ /dev/null
30 @@ -1,2 +0,0 @@
31 -#!/usr/bin/env bash
32 -alias julius-game='julius-game ~/.cache/julius/app'
33
34 diff --git a/games-strategy/julius/julius-1.4.1.ebuild b/games-strategy/julius/julius-1.4.1.ebuild
35 deleted file mode 100644
36 index dc3f63777c1..00000000000
37 --- a/games-strategy/julius/julius-1.4.1.ebuild
38 +++ /dev/null
39 @@ -1,48 +0,0 @@
40 -# Copyright 1999-2021 Gentoo Authors
41 -# Distributed under the terms of the GNU General Public License v2
42 -
43 -EAPI=7
44 -
45 -inherit xdg cmake
46 -
47 -DESCRIPTION="Feature-faithful open source re-implementation of Caesar III"
48 -HOMEPAGE="https://github.com/bvschaik/julius"
49 -SRC_URI="https://github.com/bvschaik/julius/archive/v${PV}.tar.gz -> ${P}.tar.gz"
50 -
51 -LICENSE="AGPL-3"
52 -SLOT="0"
53 -KEYWORDS="~amd64 ~arm64"
54 -
55 -DEPEND="
56 - media-libs/libpng:0=
57 - media-libs/libsdl2[joystick,video,sound]
58 - media-libs/sdl2-mixer
59 -"
60 -RDEPEND="
61 - ${DEPEND}
62 -"
63 -
64 -PATCHES=(
65 - "${FILESDIR}"/${PN}-1.4.1-rename.patch
66 -)
67 -
68 -src_install() {
69 - insinto /etc/profile.d
70 - doins "${FILESDIR}"/90julius.sh
71 - cmake_src_install
72 -}
73 -
74 -pkg_postinst() {
75 - xdg_pkg_postinst
76 -
77 - ewarn "Julius requires you to download the original Caesar 3 resources."
78 - ewarn
79 - ewarn "You need to obtain these files from a vendor of the proprietary software."
80 - ewarn "You will then need to copy the 'app' directory into '~/.cache/julius/'."
81 - ewarn "One way to obtain this directory is to download the GOG Cesar 3 edition."
82 - ewarn "You can then produce this directory by running:"
83 - ewarn " innoextract -m setup_caesar3_2.0.0.9.exe"
84 - ewarn
85 - ewarn "Lastly, run 'source /etc/profile' to refresh your environment and be able"
86 - ewarn "to start the game directly by running 'julius-game' in the command line."
87 -}