public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-util/valkyrie: ChangeLog valkyrie-1.3.0.ebuild
@ 2008-07-17  3:48 Jeremy Olexa (darkside)
  0 siblings, 0 replies; 2+ messages in thread
From: Jeremy Olexa (darkside) @ 2008-07-17  3:48 UTC (permalink / raw
  To: gentoo-commits

darkside    08/07/17 03:48:55

  Modified:             ChangeLog
  Added:                valkyrie-1.3.0.ebuild
  Log:
  trivial version bump. bug #230557. Thanks to David Hallas for reporting and initial testing
  (Portage version: 2.2_rc1/cvs/Linux 2.6.22-gentoo-r2 i686)

Revision  Changes    Path
1.8                  dev-util/valkyrie/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valkyrie/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valkyrie/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valkyrie/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/valkyrie/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	21 Apr 2008 17:26:05 -0000	1.7
+++ ChangeLog	17 Jul 2008 03:48:55 -0000	1.8
@@ -1,6 +1,12 @@
 # ChangeLog for dev-util/valkyrie
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/valkyrie/ChangeLog,v 1.7 2008/04/21 17:26:05 phreak Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valkyrie/ChangeLog,v 1.8 2008/07/17 03:48:55 darkside Exp $
+
+*valkyrie-1.3.0 (17 Jul 2008)
+
+  17 Jul 2008; Jeremy Olexa <darkside@gentoo.org> +valkyrie-1.3.0.ebuild:
+  trivial version bump. bug #230557. Thanks to David Hallas for reporting and
+  initial testing
 
   21 Apr 2008; Christian Heim <phreak@gentoo.org> metadata.xml:
   Fix up metadata.xml. If there's no maintainer for the package, the metadata



1.1                  dev-util/valkyrie/valkyrie-1.3.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valkyrie/valkyrie-1.3.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valkyrie/valkyrie-1.3.0.ebuild?rev=1.1&content-type=text/plain

Index: valkyrie-1.3.0.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/valkyrie/valkyrie-1.3.0.ebuild,v 1.1 2008/07/17 03:48:55 darkside Exp $

inherit eutils qt3

DESCRIPTION="Graphical front-end to the Valgrind suite of tools"
HOMEPAGE="http://www.open-works.co.uk/projects/valkyrie.html"
SRC_URI="http://www.valgrind.org/downloads/${P}.tar.bz2"

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

DEPEND="$(qt_min_version 3)"
RDEPEND="${DEPEND}
	=dev-util/valgrind-3.3*"

src_compile() {
	use debug || sed -i -e '/#define DEBUG_ON/ s:1:0:' \
		"${S}/valkyrie/vk_utils.h"

	econf \
		--disable-dependency-tracking \
		--with-Qt-dir="${QTDIR}" || die "econf failed"

	# Use the right path for the documentation
	sed -i -e '/VK_DOC_PATH/ s:/doc/:/share/doc/'${PF}'/html/:g' \
		"${S}/config.h"

	emake || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}/html" install

	dodoc README README_DEVELOPERS AUTHORS
}



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-util/valkyrie: ChangeLog valkyrie-1.3.0.ebuild
@ 2008-11-26  0:45 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 2+ messages in thread
From: Diego Petteno (flameeyes) @ 2008-11-26  0:45 UTC (permalink / raw
  To: gentoo-commits

flameeyes    08/11/26 00:45:04

  Modified:             ChangeLog valkyrie-1.3.0.ebuild
  Log:
  Add patch to fix building with --as-needed, closes bug #247251.
  (Portage version: 2.2_rc16/cvs/Linux 2.6.27-gentoo-r4 x86_64)

Revision  Changes    Path
1.10                 dev-util/valkyrie/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valkyrie/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valkyrie/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valkyrie/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/valkyrie/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	27 Jul 2008 21:42:32 -0000	1.9
+++ ChangeLog	26 Nov 2008 00:45:04 -0000	1.10
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/valkyrie
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/valkyrie/ChangeLog,v 1.9 2008/07/27 21:42:32 carlo Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valkyrie/ChangeLog,v 1.10 2008/11/26 00:45:04 flameeyes Exp $
+
+  26 Nov 2008; Diego E. Pettenò <flameeyes@gentoo.org>
+  +files/valkyrie-1.3.0-asneeded.patch, valkyrie-1.3.0.ebuild:
+  Add patch to fix building with --as-needed, closes bug #247251.
 
   27 Jul 2008; Carsten Lohrke <carlo@gentoo.org> valkyrie-1.2.0.ebuild,
   valkyrie-1.3.0.ebuild:



1.3                  dev-util/valkyrie/valkyrie-1.3.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valkyrie/valkyrie-1.3.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valkyrie/valkyrie-1.3.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valkyrie/valkyrie-1.3.0.ebuild?r1=1.2&r2=1.3

Index: valkyrie-1.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/valkyrie/valkyrie-1.3.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- valkyrie-1.3.0.ebuild	27 Jul 2008 21:42:32 -0000	1.2
+++ valkyrie-1.3.0.ebuild	26 Nov 2008 00:45:04 -0000	1.3
@@ -1,9 +1,9 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/valkyrie/valkyrie-1.3.0.ebuild,v 1.2 2008/07/27 21:42:32 carlo Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valkyrie/valkyrie-1.3.0.ebuild,v 1.3 2008/11/26 00:45:04 flameeyes Exp $
 
 EAPI=1
-inherit eutils qt3
+inherit eutils qt3 autotools
 
 DESCRIPTION="Graphical front-end to the Valgrind suite of tools"
 HOMEPAGE="http://www.open-works.co.uk/projects/valkyrie.html"
@@ -18,6 +18,14 @@
 RDEPEND="${DEPEND}
 	=dev-util/valgrind-3.3*"
 
+src_unpack() {
+	unpack ${A}
+	cd "${S}"
+
+	epatch "${FILESDIR}/${P}-asneeded.patch"
+	AT_M4DIR="m4" eautoreconf
+}
+
 src_compile() {
 	use debug || sed -i -e '/#define DEBUG_ON/ s:1:0:' \
 		"${S}/valkyrie/vk_utils.h"






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

end of thread, other threads:[~2008-11-26  0:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-17  3:48 [gentoo-commits] gentoo-x86 commit in dev-util/valkyrie: ChangeLog valkyrie-1.3.0.ebuild Jeremy Olexa (darkside)
  -- strict thread matches above, loose matches on Subject: below --
2008-11-26  0:45 Diego Petteno (flameeyes)

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