* [gentoo-commits] repo/gentoo:master commit in: media-libs/libtiger/
@ 2017-07-08 9:20 Alexis Ballier
0 siblings, 0 replies; 17+ messages in thread
From: Alexis Ballier @ 2017-07-08 9:20 UTC (permalink / raw
To: gentoo-commits
commit: e3173cec3fae9ce0569aa6347190ff569177b22c
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 8 09:17:12 2017 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sat Jul 8 09:18:58 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3173cec
media-libs/libtiger: keyword ~arm64
Package-Manager: Portage-2.3.6, Repoman-2.3.2
media-libs/libtiger/libtiger-0.3.4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libtiger/libtiger-0.3.4.ebuild b/media-libs/libtiger/libtiger-0.3.4.ebuild
index ed3c249fe57..b95eb790f03 100644
--- a/media-libs/libtiger/libtiger-0.3.4.ebuild
+++ b/media-libs/libtiger/libtiger-0.3.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
@@ -10,7 +10,7 @@ SRC_URI="https://libtiger.googlecode.com/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="alpha amd64 arm ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE="doc"
RDEPEND="x11-libs/pango
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libtiger/
@ 2017-08-11 13:21 Michał Górny
0 siblings, 0 replies; 17+ messages in thread
From: Michał Górny @ 2017-08-11 13:21 UTC (permalink / raw
To: gentoo-commits
commit: 621e6591ec672974d4e02480cbcc7119505d61e2
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 9 05:19:37 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Aug 11 13:20:37 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=621e6591
media-libs/libtiger: Enable multilib build
media-libs/libtiger/libtiger-0.3.4-r1.ebuild | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
index 27909edac9e..1d18c7f4373 100644
--- a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
+++ b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-inherit libtool
+inherit libtool multilib-minimal
DESCRIPTION="A rendering library for Kate streams using Pango and Cairo"
HOMEPAGE="https://code.google.com/p/libtiger/"
@@ -13,11 +13,11 @@ SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE="doc"
-RDEPEND="x11-libs/pango
- >=media-libs/libkate-0.2.0
- x11-libs/cairo"
+RDEPEND="x11-libs/pango[${MULTILIB_USEDEP}]
+ >=media-libs/libkate-0.2.0[${MULTILIB_USEDEP}]
+ x11-libs/cairo[${MULTILIB_USEDEP}]"
DEPEND="${RDEPEND}
- virtual/pkgconfig
+ virtual/pkgconfig[${MULTILIB_USEDEP}]
doc? ( app-doc/doxygen )"
src_prepare() {
@@ -25,11 +25,12 @@ src_prepare() {
elibtoolize
}
-src_configure() {
+multilib_src_configure() {
+ local ECONF_SOURCE=${S}
econf $(use_enable doc)
}
-src_install() {
- default
+multilib_src_install_all() {
+ einstalldocs
find "${ED}" -name '*.la' -delete || die
}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libtiger/
@ 2017-08-11 13:21 Michał Górny
0 siblings, 0 replies; 17+ messages in thread
From: Michał Górny @ 2017-08-11 13:21 UTC (permalink / raw
To: gentoo-commits
commit: d6b76760fc1e569897865e04d3a9fdf3898a435c
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 9 05:22:33 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Aug 11 13:20:38 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6b76760
media-libs/libtiger: Disable static libraries
media-libs/libtiger/libtiger-0.3.4-r1.ebuild | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
index 1d18c7f4373..9ecb9724512 100644
--- a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
+++ b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
@@ -27,7 +27,9 @@ src_prepare() {
multilib_src_configure() {
local ECONF_SOURCE=${S}
- econf $(use_enable doc)
+ econf \
+ --disable-static \
+ $(use_enable doc)
}
multilib_src_install_all() {
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libtiger/
@ 2017-08-11 13:21 Michał Górny
0 siblings, 0 replies; 17+ messages in thread
From: Michał Górny @ 2017-08-11 13:21 UTC (permalink / raw
To: gentoo-commits
commit: c9728566ed3c5e2f9e4670bc46893e9d43c4d214
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 9 05:18:28 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Aug 11 13:20:37 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9728566
media-libs/libtiger: Modernize to EAPI=6
media-libs/libtiger/libtiger-0.3.4-r1.ebuild | 35 ++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
new file mode 100644
index 00000000000..27909edac9e
--- /dev/null
+++ b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit libtool
+
+DESCRIPTION="A rendering library for Kate streams using Pango and Cairo"
+HOMEPAGE="https://code.google.com/p/libtiger/"
+SRC_URI="https://libtiger.googlecode.com/files/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+IUSE="doc"
+
+RDEPEND="x11-libs/pango
+ >=media-libs/libkate-0.2.0
+ x11-libs/cairo"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+ doc? ( app-doc/doxygen )"
+
+src_prepare() {
+ default
+ elibtoolize
+}
+
+src_configure() {
+ econf $(use_enable doc)
+}
+
+src_install() {
+ default
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libtiger/
@ 2018-02-18 22:15 Thomas Deutschmann
0 siblings, 0 replies; 17+ messages in thread
From: Thomas Deutschmann @ 2018-02-18 22:15 UTC (permalink / raw
To: gentoo-commits
commit: 73cd6ff0603b51831d2530863f3826d0a0e7d5c4
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 18 22:14:10 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Feb 18 22:14:10 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73cd6ff0
media-libs/libtiger: x86 stable (bug #648054)
Package-Manager: Portage-2.3.24, Repoman-2.3.6
media-libs/libtiger/libtiger-0.3.4-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
index 9ecb9724512..4d16c5ae43f 100644
--- a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
+++ b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -10,7 +10,7 @@ SRC_URI="https://libtiger.googlecode.com/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE="doc"
RDEPEND="x11-libs/pango[${MULTILIB_USEDEP}]
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libtiger/
@ 2018-02-22 7:55 Sergei Trofimovich
0 siblings, 0 replies; 17+ messages in thread
From: Sergei Trofimovich @ 2018-02-22 7:55 UTC (permalink / raw
To: gentoo-commits
commit: f1e568bf40736e7b98149af093f1069524e34a13
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Thu Feb 22 07:04:59 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Thu Feb 22 07:55:06 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1e568bf
media-libs/libtiger: stable 0.3.4-r1 for sparc, bug #648054
Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"
media-libs/libtiger/libtiger-0.3.4-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
index 4d16c5ae43f..4b41c3f3642 100644
--- a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
+++ b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://libtiger.googlecode.com/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE="doc"
RDEPEND="x11-libs/pango[${MULTILIB_USEDEP}]
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libtiger/
@ 2018-02-22 9:05 Agostino Sarubbo
0 siblings, 0 replies; 17+ messages in thread
From: Agostino Sarubbo @ 2018-02-22 9:05 UTC (permalink / raw
To: gentoo-commits
commit: cc384660e6ea6988d86f19dfe530f27ce1bcb761
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 22 09:01:02 2018 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Feb 22 09:05:01 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc384660
media-libs/libtiger: amd64 stable wrt bug #648054
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="amd64"
media-libs/libtiger/libtiger-0.3.4-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
index 4b41c3f3642..b5c91e4239d 100644
--- a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
+++ b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://libtiger.googlecode.com/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE="doc"
RDEPEND="x11-libs/pango[${MULTILIB_USEDEP}]
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libtiger/
@ 2018-03-05 14:52 Tobias Klausmann
0 siblings, 0 replies; 17+ messages in thread
From: Tobias Klausmann @ 2018-03-05 14:52 UTC (permalink / raw
To: gentoo-commits
commit: b8c43a300c4762bd4ea8075dc2b58d084724b825
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 5 14:00:25 2018 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Mon Mar 5 14:52:33 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8c43a30
media-libs/libtiger-0.3.4-r1: alpha stable
Gentoo-Bug: http://bugs.gentoo.org/648054
media-libs/libtiger/libtiger-0.3.4-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
index b5c91e4239d..7de47bae732 100644
--- a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
+++ b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://libtiger.googlecode.com/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE="doc"
RDEPEND="x11-libs/pango[${MULTILIB_USEDEP}]
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libtiger/
@ 2018-04-01 21:49 Sergei Trofimovich
0 siblings, 0 replies; 17+ messages in thread
From: Sergei Trofimovich @ 2018-04-01 21:49 UTC (permalink / raw
To: gentoo-commits
commit: f50fde9bbcad29858a05c2ef3bad510e5318f272
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 1 21:49:18 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Apr 1 21:49:18 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f50fde9b
media-libs/libtiger: stable 0.3.4-r1 for ppc64, bug #648054
Package-Manager: Portage-2.3.27, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc64"
media-libs/libtiger/libtiger-0.3.4-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
index 7de47bae732..f6ec5242482 100644
--- a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
+++ b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://libtiger.googlecode.com/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE="doc"
RDEPEND="x11-libs/pango[${MULTILIB_USEDEP}]
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libtiger/
@ 2018-04-16 6:54 Mikle Kolyada
0 siblings, 0 replies; 17+ messages in thread
From: Mikle Kolyada @ 2018-04-16 6:54 UTC (permalink / raw
To: gentoo-commits
commit: 79eae55ca4941de24295a4b4d5fe4503c8697475
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 16 06:54:16 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Mon Apr 16 06:54:16 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79eae55c
media-libs/libtiger: arm stable wrt bug #648054
Package-Manager: Portage-2.3.24, Repoman-2.3.6
media-libs/libtiger/libtiger-0.3.4-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
index f6ec5242482..7b458195712 100644
--- a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
+++ b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://libtiger.googlecode.com/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 ~ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE="doc"
RDEPEND="x11-libs/pango[${MULTILIB_USEDEP}]
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libtiger/
@ 2018-06-09 19:22 Sergei Trofimovich
0 siblings, 0 replies; 17+ messages in thread
From: Sergei Trofimovich @ 2018-06-09 19:22 UTC (permalink / raw
To: gentoo-commits
commit: 9dc1be7a22e94115c7f6f4740cb43d478c1678ca
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 9 19:19:14 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Jun 9 19:21:46 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dc1be7a
media-libs/libtiger: stable 0.3.4-r1 for ppc, bug #648054
Tested-by: ernsteiswuerfel
Bug: https://bugs.gentoo.org/648054
Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc"
media-libs/libtiger/libtiger-0.3.4-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
index 7b458195712..2e938f8e1e1 100644
--- a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
+++ b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://libtiger.googlecode.com/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ~ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE="doc"
RDEPEND="x11-libs/pango[${MULTILIB_USEDEP}]
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libtiger/
@ 2018-06-10 9:19 Andreas Sturmlechner
0 siblings, 0 replies; 17+ messages in thread
From: Andreas Sturmlechner @ 2018-06-10 9:19 UTC (permalink / raw
To: gentoo-commits
commit: f2c98a48d40fbb6e3b07a1bb3b320e8d792474ae
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 9 19:53:51 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Jun 10 08:58:35 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2c98a48
media-libs/libtiger: Drop 0.3.4 (r0)
Package-Manager: Portage-2.3.40, Repoman-2.3.9
media-libs/libtiger/libtiger-0.3.4.ebuild | 35 -------------------------------
1 file changed, 35 deletions(-)
diff --git a/media-libs/libtiger/libtiger-0.3.4.ebuild b/media-libs/libtiger/libtiger-0.3.4.ebuild
deleted file mode 100644
index b95eb790f03..00000000000
--- a/media-libs/libtiger/libtiger-0.3.4.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-inherit libtool
-
-DESCRIPTION="A rendering library for Kate streams using Pango and Cairo"
-HOMEPAGE="https://code.google.com/p/libtiger/"
-SRC_URI="https://libtiger.googlecode.com/files/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
-IUSE="doc"
-
-RDEPEND="x11-libs/pango
- >=media-libs/libkate-0.2.0
- x11-libs/cairo"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- doc? ( app-doc/doxygen )"
-
-src_prepare() {
- elibtoolize
-}
-
-src_configure() {
- econf $(use_enable doc) --docdir=/usr/share/doc/${PF}
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- dodoc THANKS README ChangeLog AUTHORS
- find "${ED}" -name '*.la' -exec rm -f {} +
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libtiger/
@ 2020-04-14 17:19 Sergei Trofimovich
0 siblings, 0 replies; 17+ messages in thread
From: Sergei Trofimovich @ 2020-04-14 17:19 UTC (permalink / raw
To: gentoo-commits
commit: 2399d8566d9a39fb092318d7f7a4474277d9bfcd
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Tue Apr 14 13:35:46 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Tue Apr 14 17:17:52 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2399d856
media-libs/libtiger: drop to ~sparc
Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
media-libs/libtiger/libtiger-0.3.4-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
index ad13b402b42..8ad6c144f44 100644
--- a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
+++ b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://libtiger.googlecode.com/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~sparc x86"
IUSE="doc"
RDEPEND="x11-libs/pango[${MULTILIB_USEDEP}]
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libtiger/
@ 2021-03-27 15:35 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2021-03-27 15:35 UTC (permalink / raw
To: gentoo-commits
commit: ff3d94796cb16ba3cc75f221eefcc9c79b46b52c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 27 15:14:59 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 27 15:34:46 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff3d9479
media-libs/libtiger: port to EAPI 7
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libtiger/libtiger-0.3.4-r1.ebuild | 20 +++++++++++++-------
1 file changed, 13 insertions(+), 7 deletions(-)
diff --git a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
index 2e118f17e64..891f13de6bb 100644
--- a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
+++ b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
+
inherit libtool multilib-minimal
DESCRIPTION="A rendering library for Kate streams using Pango and Cairo"
@@ -13,12 +14,16 @@ SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~sparc x86"
IUSE="doc"
-RDEPEND="x11-libs/pango[${MULTILIB_USEDEP}]
+RDEPEND="
>=media-libs/libkate-0.2.0[${MULTILIB_USEDEP}]
- x11-libs/cairo[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}
+ x11-libs/pango[${MULTILIB_USEDEP}]
+ x11-libs/cairo[${MULTILIB_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
virtual/pkgconfig
- doc? ( app-doc/doxygen )"
+ doc? ( app-doc/doxygen )
+"
src_prepare() {
default
@@ -26,7 +31,7 @@ src_prepare() {
}
multilib_src_configure() {
- local ECONF_SOURCE=${S}
+ local ECONF_SOURCE="${S}"
econf \
--disable-static \
$(use_enable doc)
@@ -34,5 +39,6 @@ multilib_src_configure() {
multilib_src_install_all() {
einstalldocs
+
find "${ED}" -name '*.la' -delete || die
}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libtiger/
@ 2021-08-21 8:44 Marek Szuba
0 siblings, 0 replies; 17+ messages in thread
From: Marek Szuba @ 2021-08-21 8:44 UTC (permalink / raw
To: gentoo-commits
commit: 451fd94ba660ad79b9e402514e28cb7c66aa6bb9
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 21 01:46:20 2021 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Sat Aug 21 08:44:03 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=451fd94b
media-libs/libtiger: keyword 0.3.4-r1 for ~riscv
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
media-libs/libtiger/libtiger-0.3.4-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
index ee5b7ef378f..9213baccbde 100644
--- a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
+++ b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://libtiger.googlecode.com/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv ~sparc x86"
IUSE="doc"
RDEPEND="
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libtiger/
@ 2022-08-30 19:06 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2022-08-30 19:06 UTC (permalink / raw
To: gentoo-commits
commit: a5b46748b4a6ad51b3b7cd6e1fee6853657cd888
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 30 18:41:29 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 30 19:06:14 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5b46748
media-libs/libtiger: limit multilib features (drop doc)
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libtiger/libtiger-0.3.4-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
index 9213baccbdea..df9ce1ce5d1d 100644
--- a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
+++ b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -40,7 +40,7 @@ multilib_src_configure() {
local ECONF_SOURCE="${S}"
econf \
--disable-static \
- $(use_enable doc)
+ $(multilib_native_use_enable doc)
}
multilib_src_install_all() {
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libtiger/
@ 2022-12-03 6:08 WANG Xuerui
0 siblings, 0 replies; 17+ messages in thread
From: WANG Xuerui @ 2022-12-03 6:08 UTC (permalink / raw
To: gentoo-commits
commit: 32cfa8559a84224cfd78b8e7da5a62eb949a4a1b
Author: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 3 05:50:01 2022 +0000
Commit: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Sat Dec 3 06:07:02 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32cfa855
media-libs/libtiger: keyword 0.3.4-r1 for ~loong
Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>
media-libs/libtiger/libtiger-0.3.4-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
index df9ce1ce5d1d..dbe4761bde85 100644
--- a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
+++ b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://libtiger.googlecode.com/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86"
IUSE="doc"
RDEPEND="
^ permalink raw reply related [flat|nested] 17+ messages in thread
end of thread, other threads:[~2022-12-03 6:08 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-18 22:15 [gentoo-commits] repo/gentoo:master commit in: media-libs/libtiger/ Thomas Deutschmann
-- strict thread matches above, loose matches on Subject: below --
2022-12-03 6:08 WANG Xuerui
2022-08-30 19:06 Sam James
2021-08-21 8:44 Marek Szuba
2021-03-27 15:35 Sam James
2020-04-14 17:19 Sergei Trofimovich
2018-06-10 9:19 Andreas Sturmlechner
2018-06-09 19:22 Sergei Trofimovich
2018-04-16 6:54 Mikle Kolyada
2018-04-01 21:49 Sergei Trofimovich
2018-03-05 14:52 Tobias Klausmann
2018-02-22 9:05 Agostino Sarubbo
2018-02-22 7:55 Sergei Trofimovich
2017-08-11 13:21 Michał Górny
2017-08-11 13:21 Michał Górny
2017-08-11 13:21 Michał Górny
2017-07-08 9:20 Alexis Ballier
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox