diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2021-08-21 23:14:26 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2021-08-21 23:14:26 +0100 |
commit | 7c59acba5699c9c58090a7a738669669a7307023 (patch) | |
tree | d51d27d020895a6b7a3298d9d1b9846c1fcb59a0 /games-arcade/cosmosmash | |
parent | e2db47eaae00ec33f8971db44b68645c5d3b9590 (diff) |
gentoo resync : 21.08.2021
Diffstat (limited to 'games-arcade/cosmosmash')
-rw-r--r-- | games-arcade/cosmosmash/Manifest | 2 | ||||
-rw-r--r-- | games-arcade/cosmosmash/cosmosmash-1.4.8-r1.ebuild (renamed from games-arcade/cosmosmash/cosmosmash-1.4.8.ebuild) | 15 |
2 files changed, 11 insertions, 6 deletions
diff --git a/games-arcade/cosmosmash/Manifest b/games-arcade/cosmosmash/Manifest index 42d3dc5cb729..ecd9c4f597e7 100644 --- a/games-arcade/cosmosmash/Manifest +++ b/games-arcade/cosmosmash/Manifest @@ -1,3 +1,3 @@ DIST cosmosmash-1.4.8.tar.gz 921859 BLAKE2B 601ccf0eaf429bee240a6a07534afc44cb5bac390bedfc2548668048b8a5d93229e36de1c0e73856e3588d35cf7cfc6dbb00ac428fcc42612676281dcfaf0896 SHA512 4b78cac18035ef4bdbdebd2a206ceb3c80646fa030f568e171208af7510a6b1da9ef3fd817f3ebae83fbb42b1ce2900e8f1ff33ec23a8fe735022409ab1120af -EBUILD cosmosmash-1.4.8.ebuild 850 BLAKE2B 9e78c6c2f78ec3dd46e94ed3c31c581f09bbe110f5c05cc6bd95a25bbae926a3485a9eeb93e4c0fb6eac78772629c6a412d5dd450f58534cb81ec68175f50863 SHA512 53b4e388efe5b1f3fc448f68ca0143d0582238ef30b387e197775e2abbd6318451b6e7e985c747dbee62223f7346e214bb6ac02165f4e8ac175e80fca53a0130 +EBUILD cosmosmash-1.4.8-r1.ebuild 927 BLAKE2B 34cd7bf164f414d287337bd2eb509905dcf27b5b6a991f8437a122b4e32e6adc67baa4ffa9de2231431aee6d659b6327455bcfb7964e58fade2fc5215797df6b SHA512 3c40bbc52c1f2b8e31ea96ed96a1448465566be0cf54133bfbac5efa4f2de348fdac793c2cfdd37915a4428461a377a695d4bf19a6bdf589ca6c4c7ccd49cd3e MISC metadata.xml 249 BLAKE2B 7113a758d7abc93accec998a8843d8ef51ca8b72d72e659e224d5cec2a1a6a63e6c0605958091532ac6e51fa0d501ca4fd9f3f4a9e55baeb31519a02971b465f SHA512 895577c3a805c40581da03057b94e3f28f05f23012bf350c1e3575847d1a0fe40bb044a46f909012a200d991a400f6389358a60e9c2b5bef0da01fb26f846118 diff --git a/games-arcade/cosmosmash/cosmosmash-1.4.8.ebuild b/games-arcade/cosmosmash/cosmosmash-1.4.8-r1.ebuild index 7ca6cd6f8ad0..3c08d0bb90da 100644 --- a/games-arcade/cosmosmash/cosmosmash-1.4.8.ebuild +++ b/games-arcade/cosmosmash/cosmosmash-1.4.8-r1.ebuild @@ -2,6 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 + inherit autotools DESCRIPTION="A space rock shooting video game" @@ -11,27 +12,31 @@ SRC_URI="http://perso.b2b2c.ca/~sarrazip/dev/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" RESTRICT="test" # uses the sound card which portage user might not be available. -RDEPEND=">=dev-games/flatzebra-0.1.7" -DEPEND="${RDEPEND} - virtual/pkgconfig -" +RDEPEND=">=dev-games/flatzebra-0.1.7 + media-libs/libsdl[joystick] + media-libs/sdl-image + media-libs/sdl-mixer" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" src_prepare() { default + sed -i \ -e "/^pkgsounddir/ s:sounds.*:\$(PACKAGE)/sounds:" \ -e "/^desktopentrydir/ s:=.*:=/usr/share/applications:" \ -e "/^pixmapdir/ s:=.*:=/usr/share/pixmaps:" \ src/Makefile.am \ || die + eautoreconf } src_install() { emake -C src DESTDIR="${D}" install + einstalldocs doman doc/${PN}.6 } |