public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: x11-libs/agg/
@ 2018-05-28 17:55 Pacho Ramos
  0 siblings, 0 replies; 9+ messages in thread
From: Pacho Ramos @ 2018-05-28 17:55 UTC (permalink / raw
  To: gentoo-commits

commit:     3b865b7853c88ee669498f8b11d40815833b83fe
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Mon May 28 17:54:28 2018 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Mon May 28 17:55:26 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b865b78

x11-libs/agg: Fix static libs handling, only install needed .la files

(none are needed with -static-libs and *some* are needed with static)

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 x11-libs/agg/agg-2.5-r3.ebuild | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/x11-libs/agg/agg-2.5-r3.ebuild b/x11-libs/agg/agg-2.5-r3.ebuild
index d9bf36876ff..de2db3f9f25 100644
--- a/x11-libs/agg/agg-2.5-r3.ebuild
+++ b/x11-libs/agg/agg-2.5-r3.ebuild
@@ -2,8 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-
-inherit autotools
+inherit autotools ltprune
 
 DESCRIPTION="High quality rendering engine library for C++"
 HOMEPAGE="http://antigrain.com/"
@@ -46,11 +45,16 @@ src_configure() {
 	local myeconfargs=(
 		--disable-ctrl
 		--disable-examples
-		--disable-dependency-tracking
 		$(use_enable gpc)
 		$(use_enable sdl)
+		$(use_enable static-libs static)
 		$(use_enable truetype freetype)
 		$(use_with X x)
 	)
 	econf ${myeconfargs[@]}
 }
+
+src_install() {
+	default
+	prune_libtool_files
+}


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: x11-libs/agg/
@ 2018-05-29 20:30 Pacho Ramos
  0 siblings, 0 replies; 9+ messages in thread
From: Pacho Ramos @ 2018-05-29 20:30 UTC (permalink / raw
  To: gentoo-commits

commit:     9411b88f2890fd258883d243edab6e84f295e186
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Tue May 29 20:29:50 2018 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Tue May 29 20:29:59 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9411b88f

x11-libs/agg: Fix dir for patches

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 x11-libs/agg/agg-2.5-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/agg/agg-2.5-r3.ebuild b/x11-libs/agg/agg-2.5-r3.ebuild
index e4be2281ee4..0925c837a90 100644
--- a/x11-libs/agg/agg-2.5-r3.ebuild
+++ b/x11-libs/agg/agg-2.5-r3.ebuild
@@ -32,7 +32,7 @@ PATCHES=(
 	"${FILESDIR}"/${P}-autotools.patch
 	"${FILESDIR}"/${P}-sdl-m4.patch
 	"${FILESDIR}"/${P}-sdl-automagic.patch
-	"${FILESDIR}"/${PF}
+	"${FILESDIR}"/${PVR}
 )
 
 src_prepare() {


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: x11-libs/agg/
@ 2018-08-26 20:35 Michał Górny
  0 siblings, 0 replies; 9+ messages in thread
From: Michał Górny @ 2018-08-26 20:35 UTC (permalink / raw
  To: gentoo-commits

commit:     1ce214a0f010b6fc4dc4cf3b01e6ac47a0f96543
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 26 20:23:32 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Aug 26 20:34:43 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ce214a0

x11-libs/agg: Remove support for non-existent deps

 x11-libs/agg/agg-2.5-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-libs/agg/agg-2.5-r2.ebuild b/x11-libs/agg/agg-2.5-r2.ebuild
index caba9c1a146..8228f01acbc 100644
--- a/x11-libs/agg/agg-2.5-r2.ebuild
+++ b/x11-libs/agg/agg-2.5-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="2"
@@ -17,7 +17,7 @@ IUSE="+gpc +truetype +X"
 # preffer X with enabled xcb, really
 RDEPEND="
 	media-libs/libsdl[X?]
-	X? ( || ( <x11-libs/libX11-1.3.99.901[xcb] >=x11-libs/libX11-1.3.99.901 ) )
+	X? ( >=x11-libs/libX11-1.3.99.901 )
 	truetype? ( media-libs/freetype:2 )
 "
 DEPEND="${RDEPEND}


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: x11-libs/agg/
@ 2018-10-01 21:47 Thomas Deutschmann
  0 siblings, 0 replies; 9+ messages in thread
From: Thomas Deutschmann @ 2018-10-01 21:47 UTC (permalink / raw
  To: gentoo-commits

commit:     2df0ba933c890fcd7d943efe409a688abb9bdd63
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Mon Oct  1 21:30:29 2018 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Mon Oct  1 21:45:14 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2df0ba93

x11-libs/agg: x86 stable (bug #648870)

Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11

 x11-libs/agg/agg-2.5-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/agg/agg-2.5-r3.ebuild b/x11-libs/agg/agg-2.5-r3.ebuild
index b2def3f9fd8..35c45cf5adc 100644
--- a/x11-libs/agg/agg-2.5-r3.ebuild
+++ b/x11-libs/agg/agg-2.5-r3.ebuild
@@ -10,7 +10,7 @@ SRC_URI="http://antigrain.com/${P}.tar.gz"
 
 LICENSE="GPL-2 gpc? ( free-noncomm )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="+gpc sdl static-libs +truetype +X"
 
 # preffer X with enabled xcb, really


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: x11-libs/agg/
@ 2018-10-02 18:32 Sergei Trofimovich
  0 siblings, 0 replies; 9+ messages in thread
From: Sergei Trofimovich @ 2018-10-02 18:32 UTC (permalink / raw
  To: gentoo-commits

commit:     95fec261c85d776569aa4e04ada3fade7feb083e
Author:     Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Tue Oct  2 18:04:09 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Tue Oct  2 18:32:15 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95fec261

x11-libs/agg: stable 2.5-r3 for sparc, bug #648870

Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Package-Manager: Portage-2.3.49, Repoman-2.3.10
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 x11-libs/agg/agg-2.5-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/agg/agg-2.5-r3.ebuild b/x11-libs/agg/agg-2.5-r3.ebuild
index 35c45cf5adc..68abaa9a8c3 100644
--- a/x11-libs/agg/agg-2.5-r3.ebuild
+++ b/x11-libs/agg/agg-2.5-r3.ebuild
@@ -10,7 +10,7 @@ SRC_URI="http://antigrain.com/${P}.tar.gz"
 
 LICENSE="GPL-2 gpc? ( free-noncomm )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="+gpc sdl static-libs +truetype +X"
 
 # preffer X with enabled xcb, really


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: x11-libs/agg/
@ 2018-10-05 13:28 Mikle Kolyada
  0 siblings, 0 replies; 9+ messages in thread
From: Mikle Kolyada @ 2018-10-05 13:28 UTC (permalink / raw
  To: gentoo-commits

commit:     15bd52c97fdc95eebcb4fa84b990a9f0c75da7c3
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Oct  5 13:28:47 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Oct  5 13:28:47 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15bd52c9

x11-libs/agg: amd64 stable wrt bug #648870

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

 x11-libs/agg/agg-2.5-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/agg/agg-2.5-r3.ebuild b/x11-libs/agg/agg-2.5-r3.ebuild
index 68abaa9a8c3..a8beefe015c 100644
--- a/x11-libs/agg/agg-2.5-r3.ebuild
+++ b/x11-libs/agg/agg-2.5-r3.ebuild
@@ -10,7 +10,7 @@ SRC_URI="http://antigrain.com/${P}.tar.gz"
 
 LICENSE="GPL-2 gpc? ( free-noncomm )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="+gpc sdl static-libs +truetype +X"
 
 # preffer X with enabled xcb, really


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: x11-libs/agg/
@ 2018-10-08 11:04 Mikle Kolyada
  0 siblings, 0 replies; 9+ messages in thread
From: Mikle Kolyada @ 2018-10-08 11:04 UTC (permalink / raw
  To: gentoo-commits

commit:     58de3807c9f63fb9bc11d23fac11bfee860998fd
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Mon Oct  8 11:03:15 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Mon Oct  8 11:03:15 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58de3807

x11-libs/agg: ppc stable wrt bug #648870

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

 x11-libs/agg/agg-2.5-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/agg/agg-2.5-r3.ebuild b/x11-libs/agg/agg-2.5-r3.ebuild
index a8beefe015c..98492c566a2 100644
--- a/x11-libs/agg/agg-2.5-r3.ebuild
+++ b/x11-libs/agg/agg-2.5-r3.ebuild
@@ -10,7 +10,7 @@ SRC_URI="http://antigrain.com/${P}.tar.gz"
 
 LICENSE="GPL-2 gpc? ( free-noncomm )"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~hppa ppc ~ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="+gpc sdl static-libs +truetype +X"
 
 # preffer X with enabled xcb, really


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: x11-libs/agg/
@ 2018-10-08 11:04 Mikle Kolyada
  0 siblings, 0 replies; 9+ messages in thread
From: Mikle Kolyada @ 2018-10-08 11:04 UTC (permalink / raw
  To: gentoo-commits

commit:     2a54c0e14644702a3f075d04a95f5a4ab27a62b5
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Mon Oct  8 11:03:51 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Mon Oct  8 11:03:51 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a54c0e1

x11-libs/agg: Drop old (EAPI=2)

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

 x11-libs/agg/agg-2.5-r2.ebuild | 59 ------------------------------------------
 1 file changed, 59 deletions(-)

diff --git a/x11-libs/agg/agg-2.5-r2.ebuild b/x11-libs/agg/agg-2.5-r2.ebuild
deleted file mode 100644
index 8228f01acbc..00000000000
--- a/x11-libs/agg/agg-2.5-r2.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit eutils autotools base
-
-DESCRIPTION="Anti-Grain Geometry - A High Quality Rendering Engine for C++"
-HOMEPAGE="http://antigrain.com/"
-SRC_URI="http://antigrain.com/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ppc ~ppc64 sparc x86 ~x86-fbsd"
-IUSE="+gpc +truetype +X"
-
-# preffer X with enabled xcb, really
-RDEPEND="
-	media-libs/libsdl[X?]
-	X? ( >=x11-libs/libX11-1.3.99.901 )
-	truetype? ( media-libs/freetype:2 )
-"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig
-"
-
-# taken from debian
-PATCHES=(
-	"${FILESDIR}/${PV}/02_maintainer_mode.patch"
-	"${FILESDIR}/${PV}/04_no_rpath.patch"
-)
-
-src_prepare() {
-	base_src_prepare
-	sed -r -i \
-		-e 's:^(.*)  -L@.*:\1:' \
-		src/platform/X11/Makefile.am || die "Failed to sed"
-	# fix building against automake-1.12, bug 420701
-	sed -i '/^AM_C_PROTOTYPES/d' configure.in || die
-	eautoreconf
-}
-
-src_configure() {
-	# examples are not (yet) installed, so do not compile them
-	# sdl is harddep only sdl-tests are optional so we enable them anyway
-	econf \
-		--enable-ctrl \
-		--enable-sdltest \
-		--disable-examples \
-		--disable-dependency-tracking \
-		$(use_enable gpc gpc) \
-		$(use_enable truetype freetype) \
-		$(use_with X x)
-}
-
-src_install() {
-	emake DESTDIR="${D}" install || die "emake install failed"
-	dodoc readme authors ChangeLog news
-}


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: x11-libs/agg/
@ 2025-02-28  7:23 Alfredo Tupone
  0 siblings, 0 replies; 9+ messages in thread
From: Alfredo Tupone @ 2025-02-28  7:23 UTC (permalink / raw
  To: gentoo-commits

commit:     b555ad12a284d56f884ba5734a2b39e2a55e3fa5
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 28 07:18:11 2025 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Fri Feb 28 07:23:15 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b555ad12

x11-libs/agg: keyword 2.5-r3 for ~arm64

Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 x11-libs/agg/agg-2.5-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-libs/agg/agg-2.5-r3.ebuild b/x11-libs/agg/agg-2.5-r3.ebuild
index b4dbb7fd7b19..5f8d7d15470c 100644
--- a/x11-libs/agg/agg-2.5-r3.ebuild
+++ b/x11-libs/agg/agg-2.5-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -10,7 +10,7 @@ SRC_URI="http://antigrain.com/${P}.tar.gz"
 
 LICENSE="GPL-2 gpc? ( free-noncomm )"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux"
 IUSE="+gpc sdl static-libs +truetype +X"
 
 # preffer X with enabled xcb, really


^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2025-02-28  7:24 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-28  7:23 [gentoo-commits] repo/gentoo:master commit in: x11-libs/agg/ Alfredo Tupone
  -- strict thread matches above, loose matches on Subject: below --
2018-10-08 11:04 Mikle Kolyada
2018-10-08 11:04 Mikle Kolyada
2018-10-05 13:28 Mikle Kolyada
2018-10-02 18:32 Sergei Trofimovich
2018-10-01 21:47 Thomas Deutschmann
2018-08-26 20:35 Michał Górny
2018-05-29 20:30 Pacho Ramos
2018-05-28 17:55 Pacho Ramos

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox