summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDennis Lamm <expeditioneer@gentoo.org>2020-06-16 06:44:18 +0200
committerJoonas Niilola <juippis@gentoo.org>2020-07-01 09:38:31 +0300
commit9049f05e1e9c725bb72e3769ba3f114c0d884c3a (patch)
treeba30067db130a692b32bd7d71dfcc1fe2dfc9948 /dev-libs/stb
parentdev-util/cutter: Bump to 1.10.3 (diff)
downloadgentoo-9049f05e1e9c725bb72e3769ba3f114c0d884c3a.tar.gz
gentoo-9049f05e1e9c725bb72e3769ba3f114c0d884c3a.tar.bz2
gentoo-9049f05e1e9c725bb72e3769ba3f114c0d884c3a.zip
dev-libs/stb: version bump 20200205
Closes: https://bugs.gentoo.org/696726 Bug: https://bugs.gentoo.org/711274 Signed-off-by: Dennis Lamm <expeditioneer@gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/16264 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-libs/stb')
-rw-r--r--dev-libs/stb/Manifest1
-rw-r--r--dev-libs/stb/stb-20200205.ebuild34
2 files changed, 35 insertions, 0 deletions
diff --git a/dev-libs/stb/Manifest b/dev-libs/stb/Manifest
index d666f6933701..6e9db73a9c5d 100644
--- a/dev-libs/stb/Manifest
+++ b/dev-libs/stb/Manifest
@@ -1 +1,2 @@
DIST stb-20180211.tar.gz 1327803 BLAKE2B a910ac78c5e3760a3e4c74e033d15230c39abd89aeb083ba6c7cd23f8339926e8ab82fde1b6f4fe7a1a312023979a74b961abe263c40b18b3bb8239cbdfa204e SHA512 232ef301d4d6c82c7c5f0e4234b9160cc815f3b6bcc35d341cdf8738646f2f0887ee9838680699f4c9f4274b1390036b2c4fb3ebc2d663af8ff888114dc9f04b
+DIST stb-20200205.tar.gz 1375616 BLAKE2B 11acfb4b1938e75c388b426e4b568c2976566259469716514d0ac8c97ab23d45f51fed1dcf458ca8f07e51d88d90708b33d66d545ed1aa09cd96fea46b9eb738 SHA512 31f945de8b642a359363c81e67f09b71aa663eacd68f5ec602eed40987f2d953943871af3b408d1e948a9e5c953098fca34b9e971fdeed92b734bb0c79c79a42
diff --git a/dev-libs/stb/stb-20200205.ebuild b/dev-libs/stb/stb-20200205.ebuild
new file mode 100644
index 000000000000..78f6c462e4c5
--- /dev/null
+++ b/dev-libs/stb/stb-20200205.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# There are no official releases
+CHECKSUM="f54acd4e13430c5122cab4ca657705c84aa61b08"
+
+DESCRIPTION="single-file public domain (or MIT licensed) libraries for C/C++"
+HOMEPAGE="https://github.com/nothings/stb"
+SRC_URI="https://github.com/nothings/stb/archive/${CHECKSUM}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="|| ( MIT Unlicense )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE=""
+
+S="${WORKDIR}/${PN}-${CHECKSUM}"
+
+BDEPEND=""
+RDEPEND=""
+
+src_prepare() {
+ default
+
+ # Move the header files in a folder so they don't pollute the include dir
+ mkdir stb || die
+ mv *.h stb/ || die
+}
+
+src_install() {
+ doheader -r stb
+}