forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-games/irrlicht-mt: initial import
New mandatory dependency of games-action/minetest. Looks like Minetest upstream has finally given up on dev-games/irrlicht upstream ever making a new non-bugfix release... On the plus side, there are no file collisions between IrrlichtMt and Irrlicht any more. Signed-off-by: Marek Szuba <[email protected]>
- Loading branch information
Marek Szuba
committed
Feb 1, 2022
1 parent
b2f42da
commit 6044022
Showing
3 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST irrlicht-mt-1.9.0.4.tar.gz 4158897 BLAKE2B e03c3ca28ae93e5fa565069b67ae7f60e7e023a3b5434fbd8c080be719e40a67f115e4459f082b7a27181ff81cc591e527120747aaf91efaafe93d997f5dbc9e SHA512 6f6fef27d534a0046a04cb504992586f5f20a757f2c3a35ea6e1fb31d2781e3d81ee0172b03e2913ddd894fb937d6830005613eaed77a29bb9e91aa6d248fab8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Copyright 1999-2022 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
inherit cmake | ||
|
||
MY_PN="${PN%-mt}" | ||
MY_PV="$(ver_rs 3 'mt')" | ||
MY_P="${MY_PN}-${MY_PV}" | ||
|
||
DESCRIPTION="Minetest's fork of dev-games/irrlicht" | ||
HOMEPAGE="https://github.com/minetest/irrlicht" | ||
SRC_URI="https://github.com/minetest/${MY_PN}/archive/refs/tags/${MY_PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="ZLIB" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
RDEPEND="media-libs/libpng:0= | ||
sys-libs/zlib | ||
virtual/jpeg:0 | ||
virtual/opengl | ||
x11-libs/libX11 | ||
x11-libs/libXxf86vm" | ||
DEPEND="${RDEPEND} | ||
x11-base/xorg-proto" | ||
|
||
S="${WORKDIR}/${MY_P}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Marek Szuba</name> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="github">minetest/irrlicht</remote-id> | ||
</upstream> | ||
</pkgmetadata> |