public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-util/oprofile: ChangeLog oprofile-0.9.4.ebuild
@ 2008-07-23 19:44 Michael Januszewski (spock)
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Januszewski (spock) @ 2008-07-23 19:44 UTC (permalink / raw
  To: gentoo-commits

spock       08/07/23 19:44:43

  Modified:             ChangeLog
  Added:                oprofile-0.9.4.ebuild
  Log:
  Version bump.
  (Portage version: 2.2_rc2/cvs/Linux 2.6.26 x86_64)

Revision  Changes    Path
1.49                 dev-util/oprofile/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog	31 May 2008 15:12:26 -0000	1.48
+++ ChangeLog	23 Jul 2008 19:44:43 -0000	1.49
@@ -1,6 +1,12 @@
 # ChangeLog for dev-util/oprofile
 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.48 2008/05/31 15:12:26 spock Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.49 2008/07/23 19:44:43 spock Exp $
+
+*oprofile-0.9.4 (23 Jul 2008)
+
+  23 Jul 2008; Michał Januszewski <spock@gentoo.org>
+  +oprofile-0.9.4.ebuild:
+  Version bump (bug #232690).
 
   31 May 2008; Michał Januszewski <spock@gentoo.org>
   files/oprofile-0.9.3-gcc43.patch:



1.1                  dev-util/oprofile/oprofile-0.9.4.ebuild

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

Index: oprofile-0.9.4.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.4.ebuild,v 1.1 2008/07/23 19:44:43 spock Exp $

inherit eutils qt3 linux-info

DESCRIPTION="A transparent low-overhead system-wide profiler"
HOMEPAGE="http://oprofile.sourceforge.net"
SRC_URI="mirror://sourceforge/oprofile/${P}.tar.gz"
LICENSE="GPL-2"

SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
# IUSE: it also needs kernel sources but all gentoo users have them
IUSE="qt3"
DEPEND=">=dev-libs/popt-1.7-r1
	>=sys-devel/binutils-2.14.90.0.6-r3
	>=sys-libs/glibc-2.3.2-r1
	qt3? ( $(qt_min_version 3.3) )"

src_compile() {
	local myconf=""

	if use qt3
	then
		REALHOME="$HOME"
		mkdir -p "$T"/fakehome/.kde
		mkdir -p "$T"/fakehome/.qt
		export HOME="$T/fakehome"
		addwrite "${QTDIR}/etc/settings"

		# things that should access the real homedir
		[ -d "$REALHOME/.ccache" ] && ln -sf "$REALHOME/.ccache" "$HOME/"
	else
		myconf="${myconf} --with-qt-dir=/void"
	fi

	myconf="${myconf} --with-x"

	case ${KV_FULL} in
	2.2.*|2.4.*) myconf="${myconf} --with-linux=${KV_DIR}";;
	2.5.*|2.6.*) myconf="${myconf} --with-kernel-support";;
	*) die "Kernel version '${KV_FULL}' not supported";;
	esac
	econf ${myconf} || die "econf failed"

	local mymake=""

	sed -i -e "s,depmod -a,:,g" Makefile
	emake ${mymake} || die "emake failed"
}

src_install() {
	local myinst=""

	myinst="${myinst} MODINSTALLDIR=${D}/lib/modules/${KV_FULL}"
	make DESTDIR="${D}" ${myinst} install || die "make install failed"

	dodoc ChangeLog* README TODO
}

pkg_postinst() {
	if [[ ${ROOT} == / ]] ; then
		[[ -x /sbin/update-modules ]] && /sbin/update-modules || /sbin/modules-update
	fi

	echo
	elog "Now load the oprofile module by running:"
	elog "  # opcontrol --init"
	elog "Then read manpages and this html doc:"
	elog "  /usr/share/doc/oprofile/oprofile.html"
	echo
}






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

* [gentoo-commits] gentoo-x86 commit in dev-util/oprofile: ChangeLog oprofile-0.9.4.ebuild
@ 2009-02-10  0:19 Michael Januszewski (spock)
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Januszewski (spock) @ 2009-02-10  0:19 UTC (permalink / raw
  To: gentoo-commits

spock       09/02/10 00:19:26

  Modified:             ChangeLog oprofile-0.9.4.ebuild
  Log:
  Make oprofile compile with gcc 4.3.3 (bug #257875)
  (Portage version: 2.1.6.7/cvs/Linux x86_64, RepoMan options: --force)

Revision  Changes    Path
1.55                 dev-util/oprofile/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog	14 Oct 2008 19:23:03 -0000	1.54
+++ ChangeLog	10 Feb 2009 00:19:25 -0000	1.55
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/oprofile
-# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.54 2008/10/14 19:23:03 spock Exp $
+# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.55 2009/02/10 00:19:25 spock Exp $
+
+  09 Feb 2009; Michał Januszewski <spock@gentoo.org>
+  +files/oprofile-0.9.4-open.patch, oprofile-0.9.4.ebuild:
+  Make oprofile compile with gcc 4.3.3 (bug #257875).
 
   14 Oct 2008; Michał Januszewski <spock@gentoo.org> oprofile-0.9.4.ebuild:
   Fix bug #241974 (install all documentation to the correct directory).



1.6                  dev-util/oprofile/oprofile-0.9.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/oprofile-0.9.4.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/oprofile-0.9.4.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/oprofile-0.9.4.ebuild?r1=1.5&r2=1.6

Index: oprofile-0.9.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.4.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- oprofile-0.9.4.ebuild	14 Oct 2008 19:23:03 -0000	1.5
+++ oprofile-0.9.4.ebuild	10 Feb 2009 00:19:25 -0000	1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.4.ebuild,v 1.5 2008/10/14 19:23:03 spock Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.4.ebuild,v 1.6 2009/02/10 00:19:25 spock Exp $
 
 EAPI=1
 
@@ -31,6 +31,7 @@
 	unpack ${A}
 	cd "${S}"
 	epatch "${FILESDIR}/${P}-gcc43.patch"
+	epatch "${FILESDIR}/${P}-open.patch"
 }
 
 src_compile() {






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

* [gentoo-commits] gentoo-x86 commit in dev-util/oprofile: ChangeLog oprofile-0.9.4.ebuild
@ 2009-03-22  7:51 Michael Januszewski (spock)
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Januszewski (spock) @ 2009-03-22  7:51 UTC (permalink / raw
  To: gentoo-commits

spock       09/03/22 07:51:19

  Modified:             ChangeLog oprofile-0.9.4.ebuild
  Log:
  Fix the postinst messages so that they point to the correct location of the docs (bug #241974).
  (Portage version: 2.1.6.9/cvs/Linux x86_64, RepoMan options: --force)

Revision  Changes    Path
1.56                 dev-util/oprofile/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog	10 Feb 2009 00:19:25 -0000	1.55
+++ ChangeLog	22 Mar 2009 07:51:19 -0000	1.56
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/oprofile
 # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.55 2009/02/10 00:19:25 spock Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.56 2009/03/22 07:51:19 spock Exp $
+
+  21 Mar 2009; Michał Januszewski <spock@gentoo.org> oprofile-0.9.4.ebuild:
+  Fix the postinst messages so that they point to the correct location of
+  the docs (bug #241974).
 
   09 Feb 2009; Michał Januszewski <spock@gentoo.org>
   +files/oprofile-0.9.4-open.patch, oprofile-0.9.4.ebuild:



1.7                  dev-util/oprofile/oprofile-0.9.4.ebuild

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

Index: oprofile-0.9.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.4.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- oprofile-0.9.4.ebuild	10 Feb 2009 00:19:25 -0000	1.6
+++ oprofile-0.9.4.ebuild	22 Mar 2009 07:51:19 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.4.ebuild,v 1.6 2009/02/10 00:19:25 spock Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.4.ebuild,v 1.7 2009/03/22 07:51:19 spock Exp $
 
 EAPI=1
 
@@ -84,6 +84,6 @@
 	elog "Now load the oprofile module by running:"
 	elog "  # opcontrol --init"
 	elog "Then read manpages and this html doc:"
-	elog "  /usr/share/doc/oprofile/oprofile.html"
+	elog "  /usr/share/doc/${PF}/oprofile.html"
 	echo
 }






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

* [gentoo-commits] gentoo-x86 commit in dev-util/oprofile: ChangeLog oprofile-0.9.4.ebuild
@ 2009-05-26 20:45 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 4+ messages in thread
From: Diego Petteno (flameeyes) @ 2009-05-26 20:45 UTC (permalink / raw
  To: gentoo-commits

flameeyes    09/05/26 20:45:09

  Modified:             ChangeLog oprofile-0.9.4.ebuild
  Log:
  Add patch to fix building with glibc-2.10. Closes bug #270640.
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.57                 dev-util/oprofile/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog	22 Mar 2009 07:51:19 -0000	1.56
+++ ChangeLog	26 May 2009 20:45:09 -0000	1.57
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/oprofile
-# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.56 2009/03/22 07:51:19 spock Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.57 2009/05/26 20:45:09 flameeyes Exp $
+
+  26 May 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+  oprofile-0.9.4.ebuild, +files/oprofile-0.9.4+glibc-2.10.patch:
+  Add patch to fix building with glibc-2.10. Closes bug #270640.
 
   21 Mar 2009; Michał Januszewski <spock@gentoo.org> oprofile-0.9.4.ebuild:
   Fix the postinst messages so that they point to the correct location of



1.8                  dev-util/oprofile/oprofile-0.9.4.ebuild

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

Index: oprofile-0.9.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.4.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- oprofile-0.9.4.ebuild	22 Mar 2009 07:51:19 -0000	1.7
+++ oprofile-0.9.4.ebuild	26 May 2009 20:45:09 -0000	1.8
@@ -1,10 +1,10 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.4.ebuild,v 1.7 2009/03/22 07:51:19 spock Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.4.ebuild,v 1.8 2009/05/26 20:45:09 flameeyes Exp $
 
 EAPI=1
 
-inherit eutils qt3 linux-info
+inherit eutils qt3 linux-info autotools
 
 DESCRIPTION="A transparent low-overhead system-wide profiler"
 HOMEPAGE="http://oprofile.sourceforge.net"
@@ -32,6 +32,9 @@
 	cd "${S}"
 	epatch "${FILESDIR}/${P}-gcc43.patch"
 	epatch "${FILESDIR}/${P}-open.patch"
+	epatch "${FILESDIR}/${P}+glibc-2.10.patch"
+
+	eautoreconf
 }
 
 src_compile() {






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

end of thread, other threads:[~2009-05-26 20:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-22  7:51 [gentoo-commits] gentoo-x86 commit in dev-util/oprofile: ChangeLog oprofile-0.9.4.ebuild Michael Januszewski (spock)
  -- strict thread matches above, loose matches on Subject: below --
2009-05-26 20:45 Diego Petteno (flameeyes)
2009-02-10  0:19 Michael Januszewski (spock)
2008-07-23 19:44 Michael Januszewski (spock)

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