* [gentoo-commits] repo/gentoo:master commit in: media-libs/openctm/
@ 2022-03-19 23:39 Sam James
0 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2022-03-19 23:39 UTC (permalink / raw
To: gentoo-commits
commit: 2ddce145fc4c3a4633c4a7231865f560192c883f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 19 23:34:58 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 19 23:34:58 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ddce145
media-libs/openctm: [QA] fix tc-get* quoting
This can cause build problems for e.g. 32-bit (gcc -m32 ...)
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/openctm/openctm-1.0.3-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/openctm/openctm-1.0.3-r1.ebuild b/media-libs/openctm/openctm-1.0.3-r1.ebuild
index c77dbee3d4ba..aa222819106b 100644
--- a/media-libs/openctm/openctm-1.0.3-r1.ebuild
+++ b/media-libs/openctm/openctm-1.0.3-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
@@ -51,7 +51,7 @@ src_prepare() {
src_compile() {
tc-export PKG_CONFIG
- emake CC=$(tc-getCC) CXX="$(tc-getCXX)" -f Makefile.linux
+ emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" -f Makefile.linux
}
src_install() {
^ permalink raw reply related [flat|nested] 4+ messages in thread* [gentoo-commits] repo/gentoo:master commit in: media-libs/openctm/
@ 2021-02-07 23:57 Dennis Lamm
0 siblings, 0 replies; 4+ messages in thread
From: Dennis Lamm @ 2021-02-07 23:57 UTC (permalink / raw
To: gentoo-commits
commit: ddfefc6684292a36df4b873acc88146903ae8530
Author: Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 7 21:14:44 2021 +0000
Commit: Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
CommitDate: Sun Feb 7 23:56:55 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddfefc66
media-libs/openctm: metadata added upstream bugtracker
Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>
media-libs/openctm/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/media-libs/openctm/metadata.xml b/media-libs/openctm/metadata.xml
index 770fe31ee81..89e9808ac2d 100644
--- a/media-libs/openctm/metadata.xml
+++ b/media-libs/openctm/metadata.xml
@@ -15,6 +15,7 @@
OpenCTM - the Open Compressed Triangle Mesh file format - is a file format, a software library and a tool set for compression of 3D triangle meshes.
</longdescription>
<upstream>
+ <bugs-to>https://sourceforge.net/p/openctm/bug-reports/</bugs-to>
<remote-id type="sourceforge">openctm</remote-id>
</upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/openctm/
@ 2021-01-09 10:36 Sam James
0 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2021-01-09 10:36 UTC (permalink / raw
To: gentoo-commits
commit: eaa0fa38fa69b12f6a7330a085fe6d745c19ec83
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 9 10:06:34 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 9 10:36:04 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eaa0fa38
media-libs/openctm: misc fixes
* Drop leading whitespace
* Modernise inherits (eutils -> edos2unix, no multilib needed for get_libdir)
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/openctm/openctm-1.0.3-r1.ebuild | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/media-libs/openctm/openctm-1.0.3-r1.ebuild b/media-libs/openctm/openctm-1.0.3-r1.ebuild
index 60585930f8e..e4014df8c99 100644
--- a/media-libs/openctm/openctm-1.0.3-r1.ebuild
+++ b/media-libs/openctm/openctm-1.0.3-r1.ebuild
@@ -1,15 +1,16 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit eutils multilib flag-o-matic toolchain-funcs
+inherit edos2unix flag-o-matic toolchain-funcs
MY_P=OpenCTM-${PV}
DESCRIPTION="OpenCTM - the Open Compressed Triangle Mesh."
HOMEPAGE="http://openctm.sourceforge.net"
SRC_URI="https://downloads.sourceforge.net/project/openctm/${MY_P}/${MY_P}-src.tar.bz2 -> ${P}-src.tar.bz2"
+S="${WORKDIR}/${MY_P}"
LICENSE="GPL-2"
SLOT="0/1"
@@ -18,17 +19,16 @@ KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="
dev-libs/tinyxml
+ media-libs/freeglut
media-libs/glew:0=
media-libs/pnglite
sys-libs/zlib
virtual/jpeg:0
- media-libs/freeglut
virtual/opengl
- x11-libs/gtk+:2"
+ x11-libs/gtk+:2
+"
RDEPEND="${DEPEND}"
-S="${WORKDIR}/${MY_P}"
-
PATCHES=(
"${FILESDIR}/${P}-escape-hyphens-in-ctmconv-man-page.patch"
"${FILESDIR}/${P}-link-ctmviewer-with-libGLU.patch"
@@ -53,5 +53,5 @@ src_compile() {
}
src_install() {
- emake DESTDIR="${ED}" LIBDIR="${ED}/usr/$(get_libdir)" -f Makefile.linux install
+ emake DESTDIR="${ED}" LIBDIR="${ED}/usr/$(get_libdir)" -f Makefile.linux install
}
^ permalink raw reply related [flat|nested] 4+ messages in thread* [gentoo-commits] repo/gentoo:master commit in: media-libs/openctm/
@ 2017-08-31 14:09 Guilherme Amadio
0 siblings, 0 replies; 4+ messages in thread
From: Guilherme Amadio @ 2017-08-31 14:09 UTC (permalink / raw
To: gentoo-commits
commit: 4474101d6756ffa9a139856235cd618a3f088418
Author: Guilherme Amadio <amadio <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 31 14:06:22 2017 +0000
Commit: Guilherme Amadio <amadio <AT> gentoo <DOT> org>
CommitDate: Thu Aug 31 14:07:52 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4474101d
media-libs/openctm: prefix support
Package-Manager: Portage-2.3.8, Repoman-2.3.3
media-libs/openctm/openctm-1.0.3.ebuild | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/media-libs/openctm/openctm-1.0.3.ebuild b/media-libs/openctm/openctm-1.0.3.ebuild
index 9cf1a3d49ea..ca73f7094d6 100644
--- a/media-libs/openctm/openctm-1.0.3.ebuild
+++ b/media-libs/openctm/openctm-1.0.3.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=5
@@ -39,3 +39,7 @@ src_prepare() {
src_compile() {
emake CC=$(tc-getCC) CXX=$(tc-getCXX)
}
+
+src_install() {
+ emake DESTDIR="${ED}" install
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-03-19 23:39 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-19 23:39 [gentoo-commits] repo/gentoo:master commit in: media-libs/openctm/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2021-02-07 23:57 Dennis Lamm
2021-01-09 10:36 Sam James
2017-08-31 14:09 Guilherme Amadio
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox