public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-geosciences/marble: ChangeLog marble-0.4.ebuild
@ 2007-10-29  3:02 Marcus Hanwell (cryos)
  0 siblings, 0 replies; 2+ messages in thread
From: Marcus Hanwell (cryos) @ 2007-10-29  3:02 UTC (permalink / raw
  To: gentoo-commits

cryos       07/10/29 03:02:51

  Modified:             ChangeLog
  Added:                marble-0.4.ebuild
  Log:
  Version bump.
  (Portage version: 2.1.3.15)

Revision  Changes    Path
1.4                  sci-geosciences/marble/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/marble/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/marble/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/marble/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/marble/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	13 Apr 2007 11:24:49 -0000	1.3
+++ ChangeLog	29 Oct 2007 03:02:51 -0000	1.4
@@ -1,6 +1,11 @@
 # ChangeLog for sci-geosciences/marble
 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/marble/ChangeLog,v 1.3 2007/04/13 11:24:49 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/marble/ChangeLog,v 1.4 2007/10/29 03:02:51 cryos Exp $
+
+*marble-0.4 (29 Oct 2007)
+
+  29 Oct 2007; Marcus D. Hanwell <cryos@gentoo.org> +marble-0.4.ebuild:
+  Version bump.
 
   13 Apr 2007; Torsten Veller <tove@gentoo.org> marble-0.3.ebuild:
   Added ~x86 keyword



1.1                  sci-geosciences/marble/marble-0.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/marble/marble-0.4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/marble/marble-0.4.ebuild?rev=1.1&content-type=text/plain

Index: marble-0.4.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/marble/marble-0.4.ebuild,v 1.1 2007/10/29 03:02:51 cryos Exp $

inherit toolchain-funcs multilib

DESCRIPTION="Free 3D desk globe and world atlas"
HOMEPAGE="http://edu.kde.org/marble/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

RDEPEND=">=x11-libs/qt-4.2.3"
DEPEND="${RDEPEND}
	>=dev-util/cmake-2.4.5"

S=${WORKDIR}/${PN}

src_compile() {
	# Determine the lib suffix
	if [[ $(get_libdir)=='lib64' ]]; then
		local libsuffix='64'
	else
		local libsuffix=''
	fi

	# Only use Qt to build marble
	cmake -DQTONLY=ON -DCMAKE_INSTALL_PREFIX=/usr \
		-DLIB_SUFFIX=${libsuffix} \
		-DCMAKE_C_COMPILER=$(type -p $(tc-getCC)) \
		-DCMAKE_CXX_COMPILER=$(type -p $(tc-getCXX))
	emake || die "emake failed"
}

src_install() {
	make DESTDIR=${D} install || die "make install failed"
}



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in sci-geosciences/marble: ChangeLog marble-0.4.ebuild
@ 2007-10-30 13:52 Marcus Hanwell (cryos)
  0 siblings, 0 replies; 2+ messages in thread
From: Marcus Hanwell (cryos) @ 2007-10-30 13:52 UTC (permalink / raw
  To: gentoo-commits

cryos       07/10/30 13:52:46

  Modified:             ChangeLog marble-0.4.ebuild
  Log:
  Fix conditional error - always evaluated to true. Bug 197501.
  (Portage version: 2.1.3.16)

Revision  Changes    Path
1.5                  sci-geosciences/marble/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/marble/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/marble/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/marble/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/marble/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	29 Oct 2007 03:02:51 -0000	1.4
+++ ChangeLog	30 Oct 2007 13:52:46 -0000	1.5
@@ -1,6 +1,9 @@
 # ChangeLog for sci-geosciences/marble
 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/marble/ChangeLog,v 1.4 2007/10/29 03:02:51 cryos Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/marble/ChangeLog,v 1.5 2007/10/30 13:52:46 cryos Exp $
+
+  30 Oct 2007; Marcus D. Hanwell <cryos@gentoo.org> marble-0.4.ebuild:
+  Fix conditional error - always evaluated to true. Bug 197501.
 
 *marble-0.4 (29 Oct 2007)
 



1.2                  sci-geosciences/marble/marble-0.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/marble/marble-0.4.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/marble/marble-0.4.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/marble/marble-0.4.ebuild?r1=1.1&r2=1.2

Index: marble-0.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/marble/marble-0.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- marble-0.4.ebuild	29 Oct 2007 03:02:51 -0000	1.1
+++ marble-0.4.ebuild	30 Oct 2007 13:52:46 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/marble/marble-0.4.ebuild,v 1.1 2007/10/29 03:02:51 cryos Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/marble/marble-0.4.ebuild,v 1.2 2007/10/30 13:52:46 cryos Exp $
 
 inherit toolchain-funcs multilib
 
@@ -21,7 +21,7 @@
 
 src_compile() {
 	# Determine the lib suffix
-	if [[ $(get_libdir)=='lib64' ]]; then
+	if [[ $(get_libdir) == 'lib64' ]]; then
 		local libsuffix='64'
 	else
 		local libsuffix=''



-- 
gentoo-commits@gentoo.org mailing list



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

end of thread, other threads:[~2007-10-30 13:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-29  3:02 [gentoo-commits] gentoo-x86 commit in sci-geosciences/marble: ChangeLog marble-0.4.ebuild Marcus Hanwell (cryos)
  -- strict thread matches above, loose matches on Subject: below --
2007-10-30 13:52 Marcus Hanwell (cryos)

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