diff options
Diffstat (limited to 'games-action/descent2-vertigo')
-rw-r--r-- | games-action/descent2-vertigo/Manifest | 2 | ||||
-rw-r--r-- | games-action/descent2-vertigo/descent2-vertigo-1.0-r1.ebuild | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/games-action/descent2-vertigo/Manifest b/games-action/descent2-vertigo/Manifest index 1001d6583226..d0da1222c4ae 100644 --- a/games-action/descent2-vertigo/Manifest +++ b/games-action/descent2-vertigo/Manifest @@ -1,2 +1,2 @@ -EBUILD descent2-vertigo-1.0-r1.ebuild 1208 BLAKE2B e9de95472ba76b672b1846ee332e93a456ebd061104e9482358d99faaab24134b3a0d68293f67587ccaac3bee1dbdc6224e82e9a8a9b4a2ef620002816a7ae55 SHA512 a4836366631bfcd7c5139470d2980749a826c57c54ee3deb8d978c097d4fc1afeff8f4c5811d4a686c0215ff8e786d7bd404f89cb1d3ab97052ec48097241045 +EBUILD descent2-vertigo-1.0-r1.ebuild 1220 BLAKE2B b0aa21c9d9f6e2396a26700019b3c8c0f01ca1467ed48b95c4101834a7db2c6f865d5b245a7186a85f5306ed07ac6dd7712a19b624684878ee9f1bbeef30f09b SHA512 69f954aec2a6b1fbf47b14c5da466f2022f05aeb8a4765e32790a1e40fdffb390d0cad78e4365f07013b6ae2e809c632c63c333f36619ab7ebf0441c5dcdd1ec MISC metadata.xml 254 BLAKE2B 4e6c8e1f126f76233a38aba6f5388488656795cb1d7d4767ccb1349772f5e78d59fc5663d4f1933dbe4633c2fbb90cd1d42d4b4d4f5ededc53653e7df13c7187 SHA512 2b82da849e3b0dec378f3fb497014f5d1dbc7aceb8a1f9d1638e83fe69448b1c5151eb4b1187154d828e4a296609ce5125b40977b2581d95b5588e353ca75135 diff --git a/games-action/descent2-vertigo/descent2-vertigo-1.0-r1.ebuild b/games-action/descent2-vertigo/descent2-vertigo-1.0-r1.ebuild index 3c88671110c4..203ef25b3f43 100644 --- a/games-action/descent2-vertigo/descent2-vertigo-1.0-r1.ebuild +++ b/games-action/descent2-vertigo/descent2-vertigo-1.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -30,7 +30,7 @@ src_unpack() { # *.{hog,mn2} into data/missions # Remainder into data - tar c \ + tar -c -f - \ --mode=u+w \ --ignore-case \ --xform='s:.*/::xg' \ @@ -39,7 +39,7 @@ src_unpack() { --xform='s:^[^/]+$:data/\0:x' \ --exclude="$(use videos || echo '*.mvl')" \ **/{hoard.ham,d2x-h.mvl,{d2x,panic}.{hog,mn2}}* \ - | tar x -C "${WORKDIR}" + | tar -x -f - -C "${WORKDIR}" assert "tar failed" eshopts_pop |