public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/jasper/
Date: Wed, 20 Mar 2019 14:55:38 +0000 (UTC)	[thread overview]
Message-ID: <1553093723.12636e5e7a3c5050124c2ffd12f2d851573b5290.polynomial-c@gentoo> (raw)

commit:     12636e5e7a3c5050124c2ffd12f2d851573b5290
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 20 14:55:23 2019 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Wed Mar 20 14:55:23 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12636e5e

media-libs/jasper: Bump to version 2.0.15

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 media-libs/jasper/Manifest             |  1 +
 media-libs/jasper/jasper-2.0.15.ebuild | 67 ++++++++++++++++++++++++++++++++++
 2 files changed, 68 insertions(+)

diff --git a/media-libs/jasper/Manifest b/media-libs/jasper/Manifest
index a36492e7b89..93b54910206 100644
--- a/media-libs/jasper/Manifest
+++ b/media-libs/jasper/Manifest
@@ -1 +1,2 @@
 DIST jasper-2.0.14.tar.gz 1311825 BLAKE2B 0cd2feb5a73aaa2da6f1d105fefe98f57c6a5ecf92f6449891f49eca0b5926bc683a03bf933b920cad95883134cf292405f244f10b3bbe7867a41f2dde80337e SHA512 6b270cb1eb55f777f30016f3258e5e2297627e7d086334814c308464f5a4552c23241b0fdbc81ea715a6f4746294657f96c1cb6ceb320629ce57db7e81d84940
+DIST jasper-2.0.15.tar.gz 1311926 BLAKE2B 39b6e0af590bbf849a172b97148465e68b9b5682286b882e41bf8f58e3ff4f18a4762a29b08529d9589a63aa22a9125aeed8c2dc7e61198f5eb15f1ca7b60ae0 SHA512 360cadfa0f3cb502ce6354267df71a48bac5a5f6bf60c280f6943c8ede72c727ca178cad411c7824c727731aaa7def92298ebd259a262d9776c6e137f12b16c7

diff --git a/media-libs/jasper/jasper-2.0.15.ebuild b/media-libs/jasper/jasper-2.0.15.ebuild
new file mode 100644
index 00000000000..39254dafd4c
--- /dev/null
+++ b/media-libs/jasper/jasper-2.0.15.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-multilib
+
+DESCRIPTION="Implementation of the codec specified in the JPEG-2000 Part-1 standard"
+HOMEPAGE="https://www.ece.uvic.ca/~mdadams/jasper/"
+
+if [[ ${PV} == *9999* ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/mdadams/jasper.git"
+else
+	SRC_URI="https://github.com/mdadams/${PN}/archive/version-${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+	S="${WORKDIR}/${PN}-version-${PV}"
+fi
+
+# We limit memory usage to 128 MiB by default, specified in bytes
+: ${JASPER_MEM_LIMIT:=134217728}
+
+LICENSE="JasPer2.0"
+SLOT="0/4"
+IUSE="doc jpeg opengl test"
+
+RDEPEND="
+	jpeg? ( >=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}] )
+	opengl? (
+		>=virtual/opengl-7.0-r1:0[${MULTILIB_USEDEP}]
+		>=media-libs/freeglut-2.8.1:0[${MULTILIB_USEDEP}]
+		virtual/glu[${MULTILIB_USEDEP}]
+		x11-libs/libXi[${MULTILIB_USEDEP}]
+		x11-libs/libXmu[${MULTILIB_USEDEP}]
+	)"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	doc? ( app-doc/doxygen )
+"
+
+multilib_src_configure() {
+	local mycmakeargs=(
+		-DALLOW_IN_SOURCE_BUILD=OFF
+		-DBASH_PROGRAM="${EPREFIX}"/bin/bash
+		-DJAS_ENABLE_ASAN=OFF
+		-DJAS_ENABLE_LSAN=OFF
+		-DJAS_ENABLE_MSAN=OFF
+		-DJAS_ENABLE_SHARED=ON
+		-DJAS_ENABLE_STRICT=ON
+		-DJAS_ENABLE_USAN=OFF
+		-DCMAKE_INSTALL_DOCDIR=share/doc/${PF}
+
+		# JPEG
+		-DJAS_ENABLE_LIBJPEG=$(usex jpeg)
+		-DCMAKE_DISABLE_FIND_PACKAGE_JPEG=$(usex !jpeg)
+
+		# OpenGL
+		-DJAS_ENABLE_OPENGL=$(usex opengl)
+		-DCMAKE_DISABLE_FIND_PACKAGE_OpenGL=$(usex !opengl)
+
+		# Doxygen
+		-DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=$(multilib_native_usex doc OFF ON)
+
+		-DJAS_ENABLE_PROGRAMS=$(usex test)
+	)
+	cmake-utils_src_configure
+}


             reply	other threads:[~2019-03-20 14:55 UTC|newest]

Thread overview: 71+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-03-20 14:55 Lars Wendler [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-08-22  1:26 [gentoo-commits] repo/gentoo:master commit in: media-libs/jasper/ Eli Schwartz
2024-08-22  1:26 Eli Schwartz
2024-07-03  5:17 Ionen Wolkens
2024-06-25  6:28 Joonas Niilola
2024-06-25  4:07 Sam James
2024-03-20 20:47 Andrew Ammerlaan
2024-02-06  8:28 Andrew Ammerlaan
2024-01-14  5:36 Sam James
2024-01-14  5:36 Sam James
2024-01-10 12:39 Andrew Ammerlaan
2024-01-09 15:34 WANG Xuerui
2024-01-09 15:34 WANG Xuerui
2023-04-13 10:52 David Seifert
2023-04-13 10:04 David Seifert
2023-04-12 13:09 David Seifert
2019-03-26 14:32 Lars Wendler
2019-03-25  7:27 Lars Wendler
2019-03-25  7:25 Lars Wendler
2019-03-25  7:20 Lars Wendler
2019-03-20 14:55 Lars Wendler
2018-06-30 17:47 Mikle Kolyada
2018-05-15 14:57 Aaron Bauman
2018-05-15 14:57 Aaron Bauman
2018-05-08 18:43 Sergei Trofimovich
2018-04-22 20:19 Matt Turner
2018-04-08 10:55 Markus Meier
2018-03-31 10:11 Tobias Klausmann
2018-03-24 22:11 Mikle Kolyada
2018-03-23 23:38 Sergei Trofimovich
2017-09-01  6:54 Tim Harder
2017-05-16  6:39 David Seifert
2017-04-27 11:23 Agostino Sarubbo
2017-04-07  9:41 Jeroen Roovers
2017-04-04 19:28 Tobias Klausmann
2017-04-03 21:19 Michael Weber
2017-04-03 21:00 Michael Weber
2017-04-03 12:33 Agostino Sarubbo
2017-04-02 17:33 Agostino Sarubbo
2017-04-02 17:32 Agostino Sarubbo
2017-03-29 19:51 David Seifert
2017-01-05 13:30 David Seifert
2017-01-05 13:30 David Seifert
2016-12-20  9:13 David Seifert
2016-12-20  9:13 David Seifert
2016-12-10 21:32 David Seifert
2016-12-10 21:32 David Seifert
2016-12-10 21:32 David Seifert
2016-12-10 12:49 David Seifert
2016-12-10 10:28 David Seifert
2016-12-07 19:59 David Seifert
2016-12-07 19:59 David Seifert
2016-11-12 23:37 David Seifert
2016-11-12 23:37 David Seifert
2016-10-30  9:13 David Seifert
2016-10-29  9:45 David Seifert
2016-10-26 20:16 David Seifert
2016-10-26 20:16 David Seifert
2016-10-22 15:34 Agostino Sarubbo
2016-10-22  9:58 Jeroen Roovers
2016-10-21 10:52 Agostino Sarubbo
2016-10-21 10:52 Agostino Sarubbo
2016-10-20 11:00 Agostino Sarubbo
2016-10-20 11:00 Agostino Sarubbo
2016-10-19 10:28 Agostino Sarubbo
2016-10-19 10:26 Agostino Sarubbo
2016-10-19  7:45 David Seifert
2016-10-18 18:35 David Seifert
2016-10-16 22:11 David Seifert
2016-10-14 21:30 David Seifert
2015-10-10 11:17 Justin Lecher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1553093723.12636e5e7a3c5050124c2ffd12f2d851573b5290.polynomial-c@gentoo \
    --to=polynomial-c@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox