commit
4434d1c343
@ -0,0 +1,54 @@
|
||||
<h1>Multimedia</h1>
|
||||
<p>Inferencium Network Gentoo multimedia overlay.</p>
|
||||
<br>
|
||||
<br>
|
||||
<h2>Licensing</h2>
|
||||
<p>All packages have their own licenses.</p>
|
||||
<br>
|
||||
<br>
|
||||
<h2>Security</h2>
|
||||
<p>All files are checked for security issues; however, it is always the<br>
|
||||
user's responsibility to audit the code before installing and/or executing<br>
|
||||
it.<br>
|
||||
<br>
|
||||
Inferencium Network takes no responsibility for any security issues which<br>
|
||||
may arise due to usage of this repository.</p>
|
||||
<br>
|
||||
<br>
|
||||
<h2>Policy</h2>
|
||||
<h3>Contributing</h3>
|
||||
<p>To contribute to the project, submit a pull request. All pull requests<br>
|
||||
are subject to approval.<br>
|
||||
<br>
|
||||
Code must follow the standard style for Inferencium Network code:<br>
|
||||
- 80 character column limit.<br>
|
||||
- Tab indents.<br>
|
||||
- 1 tab indent equals 4 columns.<br>
|
||||
- Comments must be used for each different block of code.<br>
|
||||
- Comments must be concise. Do not make comments longer than necessary.<br>
|
||||
- Code and comments must be professional. No funny or vulgar code or<br>
|
||||
comments.<br>
|
||||
<br>
|
||||
Files must be stored in their related directories.<br>
|
||||
<br>
|
||||
Text files must be stored as plain text (.txt) or Markdown (.md) files.<br>
|
||||
<br>
|
||||
All dates and times must be ISO 8601 compliant (YYYY-MM-DD HH:MM).<br>
|
||||
<br>
|
||||
All filenames must be most significant to least significant, lowercase, and<br>
|
||||
hyphens must be used instead of spaces.</p>
|
||||
<br>
|
||||
<br>
|
||||
<h2>Branches</h2>
|
||||
<h3>dev</h3>
|
||||
<p>Development branch. All pre-alpha development and alpha testing happens<br/>
|
||||
here.<br/>
|
||||
Merge requests must be made to the dev branch.</p>
|
||||
<br>
|
||||
<h3>beta</h3>
|
||||
<p>Beta branch. All beta testing of the software happens here.</p>
|
||||
<br>
|
||||
<h3>stable</h3>
|
||||
<p>Stable branch. Complete and stable versions of the software are stored<br/>
|
||||
here.<br/>
|
||||
<br/>
|
@ -0,0 +1,2 @@
|
||||
DIST cataclysm-dda-202206040712.tar.gz 129153246 BLAKE2B cd8d24d8f70bf001a9b1c9f589b39416e14a19c2676e0c66081b67d5f0475c6f48dd76eba5c2e99797a07187b576abb11208d115864e4eaca6521362632a9c1e SHA512 d9b4909369542adf32b87b6cf6cb822c4118bac6929cb7e183ac072f615f3c01068af829ad0bcd8e0d0c2b9471ebf016b179d4ef3969ac2f883d6426476a0415
|
||||
EBUILD cataclysm-dda-202206040712.ebuild 892 BLAKE2B e05e4689f3b5e14a1df2d48e3c7222cdded457855f9a2207a4221cbc4223a738821300c35562aa6c5e16bdf02b662dd212a0fe4f9035969223361ca24df71b35 SHA512 98e0a02492e2e9fe66259e01786da7dabafbbb7dcdd67231070491dacef82e7bfdcf2571b7a116f126bc2e7226c3b88a0ec557d14cf6051c8fafdfae8f6b3f4c
|
@ -0,0 +1,44 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Copyright 2022 Inference
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake
|
||||
|
||||
DESCRIPTION="A turn-based survival game set in a post-apocalyptic world."
|
||||
|
||||
HOMEPAGE="https://cataclysmdda.org/"
|
||||
|
||||
if [[ "${PV}" == "9999" ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/CleverRaven/Cataclysm-DDA"
|
||||
else
|
||||
MY_PV="${PV:0:4}-${PV:4:2}-${PV:6:2}-${PV:8:4}"
|
||||
SRC_URI="https://github.com/CleverRaven/Cataclysm-DDA/archive/refs/tags/cdda-experimental-${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/Cataclysm-DDA-cdda-experimental-${MY_PV}"
|
||||
fi
|
||||
|
||||
LICENSE="CC-BY-SA-3.0"
|
||||
|
||||
SLOT="0"
|
||||
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND=""
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DTILES=ON
|
||||
-DSOUND=ON
|
||||
-DBACKTRACE=OFF
|
||||
-DLIBBACKTRACE=OFF
|
||||
-DUSE_HOME_DIR=ON
|
||||
-DLOCALIZE=OFF
|
||||
-DJSON_FORMAT=OFF
|
||||
-DCATA_CCACHE=OFF
|
||||
)
|
||||
cmake_src_configure
|
||||
}
|
@ -0,0 +1 @@
|
||||
masters = gentoo
|
@ -0,0 +1 @@
|
||||
mmd
|
Loading…
Reference in new issue