public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/oyranos/
Date: Sun, 25 Nov 2018 23:41:53 +0000 (UTC)	[thread overview]
Message-ID: <1543189232.5e66220ed50c76f331ec78dd8d997e1da8bd2873.asturm@gentoo> (raw)

commit:     5e66220ed50c76f331ec78dd8d997e1da8bd2873
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 25 20:29:14 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Nov 25 23:40:32 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e66220e

media-libs/oyranos: Drop cmake-multilib

Nothing ever asked for that.

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 media-libs/oyranos/oyranos-0.9.6-r1.ebuild | 105 +++++++++++++++++++++++++++++
 media-libs/oyranos/oyranos-9999.ebuild     |  79 ++++++++++------------
 2 files changed, 141 insertions(+), 43 deletions(-)

diff --git a/media-libs/oyranos/oyranos-0.9.6-r1.ebuild b/media-libs/oyranos/oyranos-0.9.6-r1.ebuild
new file mode 100644
index 00000000000..05b026fa3e9
--- /dev/null
+++ b/media-libs/oyranos/oyranos-0.9.6-r1.ebuild
@@ -0,0 +1,105 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+if [[ ${PV} = *9999 ]]; then
+	EGIT_REPO_URI="https://github.com/${PN}-cms/${PN}.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/${PN}-cms/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
+		https://dev.gentoo.org/~asturm/${P}-patches.tar.xz"
+	KEYWORDS="~amd64 ~x86"
+fi
+CMAKE_REMOVE_MODULES_LIST="${CMAKE_REMOVE_MODULES_LIST} FindXcm FindCUPS"
+inherit cmake-utils flag-o-matic
+
+DESCRIPTION="Colour management system allowing to share settings across apps and services"
+HOMEPAGE="https://www.oyranos.org/"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="cairo cups doc examples exif fltk jpeg qt5 raw scanner static-libs test tiff X"
+
+REQUIRED_USE="qt5? ( X ) test? ( static-libs )"
+
+COMMON_DEPEND="
+	app-admin/elektra
+	dev-libs/libxml2
+	>=dev-libs/yajl-2.0.4-r1
+	media-libs/lcms:2
+	media-libs/libpng:0=
+	>=media-libs/libXcm-0.5.4
+	media-libs/openicc
+	cairo? ( x11-libs/cairo )
+	cups? ( net-print/cups )
+	exif? ( media-gfx/exiv2:= )
+	fltk? ( x11-libs/fltk:1 )
+	jpeg? ( virtual/jpeg:0 )
+	qt5? (
+		dev-qt/qtcore:5
+		dev-qt/qtgui:5
+		dev-qt/qtsvg:5
+		dev-qt/qtwidgets:5
+		dev-qt/qtx11extras:5
+		dev-qt/qtxml:5
+	)
+	raw? ( media-libs/libraw )
+	scanner? ( media-gfx/sane-backends )
+	tiff? ( media-libs/tiff:0 )
+	X? (
+		x11-libs/libX11
+		x11-libs/libXfixes
+		x11-libs/libXinerama
+		x11-libs/libXmu
+		x11-libs/libXrandr
+		x11-libs/libXxf86vm
+	)
+"
+DEPEND="${COMMON_DEPEND}
+	doc? (
+		app-doc/doxygen
+		media-gfx/graphviz
+	)"
+RDEPEND="${COMMON_DEPEND}
+	media-libs/icc-profiles-basiccolor-printing2009
+	media-libs/icc-profiles-openicc"
+
+DOCS=( {AUTHORS,ChangeLog,README}.md )
+
+RESTRICT="test"
+
+PATCHES=( "${WORKDIR}/patches" )
+
+src_prepare() {
+	# remove bundled libs
+	rm -r libxcm openicc yajl || die
+	cmake-utils_src_prepare
+}
+
+multilib_src_configure() {
+	local mycmakeargs=(
+		-DCMAKE_INSTALL_DOCDIR=share/doc/${PF}
+		-DUSE_SYSTEM_ELEKTRA=ON
+		-DUSE_SYSTEM_LIBXCM=ON
+		-DUSE_SYSTEM_OPENICC=ON
+		-DUSE_SYSTEM_YAJL=ON
+		-DCMAKE_DISABLE_FIND_PACKAGE_Qt4=ON
+		-DCMAKE_DISABLE_FIND_PACKAGE_Cairo=$(usex !cairo)
+		-DCMAKE_DISABLE_FIND_PACKAGE_Cups=$(usex !cups)
+		-DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=$(usex !doc)
+		-DENABLE_EXAMPLES=$(usex examples)
+		-DCMAKE_DISABLE_FIND_PACKAGE_Exif2=$(usex !exif)
+		-DCMAKE_DISABLE_FIND_PACKAGE_FLTK=$(usex !fltk)
+		-DCMAKE_DISABLE_FIND_PACKAGE_JPEG=$(usex !jpeg)
+		-DCMAKE_DISABLE_FIND_PACKAGE_Qt5=$(usex !qt5)
+		-DCMAKE_DISABLE_FIND_PACKAGE_LibRaw=$(usex !raw)
+		-DCMAKE_DISABLE_FIND_PACKAGE_Sane=$(usex !scanner)
+		-DENABLE_STATIC_LIBS=$(usex static-libs)
+		-DENABLE_TESTS=$(usex test)
+		-DCMAKE_DISABLE_FIND_PACKAGE_TIFF=$(usex !tiff)
+		-DCMAKE_DISABLE_FIND_PACKAGE_X11=$(usex !X)
+	)
+
+	cmake-utils_src_configure
+}

diff --git a/media-libs/oyranos/oyranos-9999.ebuild b/media-libs/oyranos/oyranos-9999.ebuild
index fc646f0fac2..a44af27aa9e 100644
--- a/media-libs/oyranos/oyranos-9999.ebuild
+++ b/media-libs/oyranos/oyranos-9999.ebuild
@@ -10,30 +10,31 @@ else
 	SRC_URI="https://github.com/${PN}-cms/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 	KEYWORDS="~amd64 ~x86"
 fi
-inherit cmake-multilib flag-o-matic
+CMAKE_REMOVE_MODULES_LIST="${CMAKE_REMOVE_MODULES_LIST} FindXcm FindCUPS"
+inherit cmake-utils flag-o-matic
 
 DESCRIPTION="Colour management system allowing to share settings across apps and services"
 HOMEPAGE="https://www.oyranos.org/"
 
 LICENSE="BSD"
 SLOT="0"
-IUSE="X cairo cups doc examples exif fltk jpeg qt5 raw scanner static-libs test tiff"
+IUSE="cairo cups doc examples exif fltk jpeg qt5 raw scanner static-libs test tiff X"
 
 REQUIRED_USE="qt5? ( X ) test? ( static-libs )"
 
 COMMON_DEPEND="
-	>=app-admin/elektra-0.8.4:0[${MULTILIB_USEDEP}]
-	dev-libs/libxml2[${MULTILIB_USEDEP}]
-	>=dev-libs/yajl-2.0.4-r1[${MULTILIB_USEDEP}]
-	media-libs/lcms:2[${MULTILIB_USEDEP}]
-	media-libs/libpng:0=[${MULTILIB_USEDEP}]
-	>=media-libs/libXcm-0.5.4[${MULTILIB_USEDEP}]
-	media-libs/openicc[${MULTILIB_USEDEP}]
-	cairo? ( x11-libs/cairo[${MULTILIB_USEDEP}] )
-	cups? ( net-print/cups[${MULTILIB_USEDEP}] )
-	exif? ( media-gfx/exiv2:=[${MULTILIB_USEDEP}] )
+	app-admin/elektra
+	dev-libs/libxml2
+	>=dev-libs/yajl-2.0.4-r1
+	media-libs/lcms:2
+	media-libs/libpng:0=
+	>=media-libs/libXcm-0.5.4
+	media-libs/openicc
+	cairo? ( x11-libs/cairo )
+	cups? ( net-print/cups )
+	exif? ( media-gfx/exiv2:= )
 	fltk? ( x11-libs/fltk:1 )
-	jpeg? ( virtual/jpeg:0[${MULTILIB_USEDEP}] )
+	jpeg? ( virtual/jpeg:0 )
 	qt5? (
 		dev-qt/qtcore:5
 		dev-qt/qtgui:5
@@ -42,16 +43,16 @@ COMMON_DEPEND="
 		dev-qt/qtx11extras:5
 		dev-qt/qtxml:5
 	)
-	raw? ( media-libs/libraw[${MULTILIB_USEDEP}] )
-	scanner? ( media-gfx/sane-backends[${MULTILIB_USEDEP}] )
-	tiff? ( media-libs/tiff:0[${MULTILIB_USEDEP}] )
+	raw? ( media-libs/libraw )
+	scanner? ( media-gfx/sane-backends )
+	tiff? ( media-libs/tiff:0 )
 	X? (
-		x11-libs/libX11[${MULTILIB_USEDEP}]
-		x11-libs/libXfixes[${MULTILIB_USEDEP}]
-		x11-libs/libXinerama[${MULTILIB_USEDEP}]
-		x11-libs/libXmu[${MULTILIB_USEDEP}]
-		x11-libs/libXrandr[${MULTILIB_USEDEP}]
-		x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
+		x11-libs/libX11
+		x11-libs/libXfixes
+		x11-libs/libXinerama
+		x11-libs/libXmu
+		x11-libs/libXrandr
+		x11-libs/libXxf86vm
 	)
 "
 DEPEND="${COMMON_DEPEND}
@@ -64,19 +65,11 @@ RDEPEND="${COMMON_DEPEND}
 	media-libs/icc-profiles-openicc"
 
 DOCS=( {AUTHORS,ChangeLog,README}.md )
-RESTRICT="test"
-
-MULTILIB_CHOST_TOOLS=(
-	/usr/bin/oyranos-config
-)
-MULTILIB_WRAPPED_HEADERS=(
-	/usr/include/oyranos/oyranos_version.h
-)
 
-CMAKE_REMOVE_MODULES_LIST="${CMAKE_REMOVE_MODULES_LIST} FindXcm FindCUPS"
+RESTRICT="test"
 
 src_prepare() {
-	einfo remove bundled libs
+	# remove bundled libs
 	rm -r libxcm openicc yajl || die
 	cmake-utils_src_prepare
 }
@@ -89,20 +82,20 @@ multilib_src_configure() {
 		-DUSE_SYSTEM_OPENICC=ON
 		-DUSE_SYSTEM_YAJL=ON
 		-DCMAKE_DISABLE_FIND_PACKAGE_Qt4=ON
-		-DCMAKE_DISABLE_FIND_PACKAGE_Cairo=$(usex '!cairo')
-		-DCMAKE_DISABLE_FIND_PACKAGE_Cups=$(usex '!cups')
-		-DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=$(multilib_native_usex doc OFF ON)
+		-DCMAKE_DISABLE_FIND_PACKAGE_Cairo=$(usex !cairo)
+		-DCMAKE_DISABLE_FIND_PACKAGE_Cups=$(usex !cups)
+		-DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=$(usex !doc)
 		-DENABLE_EXAMPLES=$(usex examples)
-		-DCMAKE_DISABLE_FIND_PACKAGE_Exif2=$(usex '!exif')
-		-DCMAKE_DISABLE_FIND_PACKAGE_FLTK=$(multilib_native_usex fltk OFF ON)
-		-DCMAKE_DISABLE_FIND_PACKAGE_JPEG=$(usex '!jpeg')
-		-DCMAKE_DISABLE_FIND_PACKAGE_Qt5=$(multilib_native_usex qt5 OFF ON)
-		-DCMAKE_DISABLE_FIND_PACKAGE_LibRaw=$(usex '!raw')
-		-DCMAKE_DISABLE_FIND_PACKAGE_Sane=$(usex '!scanner')
+		-DCMAKE_DISABLE_FIND_PACKAGE_Exif2=$(usex !exif)
+		-DCMAKE_DISABLE_FIND_PACKAGE_FLTK=$(usex !fltk)
+		-DCMAKE_DISABLE_FIND_PACKAGE_JPEG=$(usex !jpeg)
+		-DCMAKE_DISABLE_FIND_PACKAGE_Qt5=$(usex !qt5)
+		-DCMAKE_DISABLE_FIND_PACKAGE_LibRaw=$(usex !raw)
+		-DCMAKE_DISABLE_FIND_PACKAGE_Sane=$(usex !scanner)
 		-DENABLE_STATIC_LIBS=$(usex static-libs)
 		-DENABLE_TESTS=$(usex test)
-		-DCMAKE_DISABLE_FIND_PACKAGE_TIFF=$(usex '!tiff')
-		-DCMAKE_DISABLE_FIND_PACKAGE_X11=$(usex '!X')
+		-DCMAKE_DISABLE_FIND_PACKAGE_TIFF=$(usex !tiff)
+		-DCMAKE_DISABLE_FIND_PACKAGE_X11=$(usex !X)
 	)
 
 	cmake-utils_src_configure


             reply	other threads:[~2018-11-25 23:41 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-25 23:41 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-02-09 19:35 [gentoo-commits] repo/gentoo:master commit in: media-libs/oyranos/ Andreas Sturmlechner
2020-02-02 16:19 Andreas Sturmlechner
2018-11-25 23:41 Andreas Sturmlechner
2018-11-25 23:41 Andreas Sturmlechner
2017-10-14 18:53 Andreas Sturmlechner
2017-10-14 15:57 Andreas Sturmlechner
2017-10-14 15:13 Andreas Sturmlechner
2017-09-06 21:00 Michał Górny
2017-01-04 18:05 Johannes Huber
2017-01-04 18:05 Johannes Huber
2017-01-04 18:05 Johannes Huber
2016-12-29 22:03 Andreas Sturmlechner
2016-06-21 19:47 Michał Górny
2016-01-12 10:27 Patrice Clement

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=1543189232.5e66220ed50c76f331ec78dd8d997e1da8bd2873.asturm@gentoo \
    --to=asturm@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