diff options
author | 2009-09-28 19:29:36 +0000 | |
---|---|---|
committer | 2009-09-28 19:29:36 +0000 | |
commit | c34f7dc2479c57c4baeb7bd750d673c2c6c26581 (patch) | |
tree | 9b51b9d5c37a9a6e2feaca88105983caeef024a7 /dev-util | |
parent | Prevent bad changes in compile flags. (diff) | |
download | gentoo-2-c34f7dc2479c57c4baeb7bd750d673c2c6c26581.tar.gz gentoo-2-c34f7dc2479c57c4baeb7bd750d673c2c6c26581.tar.bz2 gentoo-2-c34f7dc2479c57c4baeb7bd750d673c2c6c26581.zip |
Version bump.
(Portage version: 2.2_rc42/cvs/Linux x86_64)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/systemtap/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/systemtap/systemtap-1.0.ebuild | 52 |
2 files changed, 58 insertions, 1 deletions
diff --git a/dev-util/systemtap/ChangeLog b/dev-util/systemtap/ChangeLog index e6d69f9d9ed3..2cd26645b62c 100644 --- a/dev-util/systemtap/ChangeLog +++ b/dev-util/systemtap/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/systemtap # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/systemtap/ChangeLog,v 1.82 2009/08/10 20:30:37 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/systemtap/ChangeLog,v 1.83 2009/09/28 19:29:36 swegener Exp $ + +*systemtap-1.0 (28 Sep 2009) + + 28 Sep 2009; Sven Wegener <swegener@gentoo.org> +systemtap-1.0.ebuild: + Version bump. *systemtap-0.9.9 (10 Aug 2009) diff --git a/dev-util/systemtap/systemtap-1.0.ebuild b/dev-util/systemtap/systemtap-1.0.ebuild new file mode 100644 index 000000000000..42bdb9033047 --- /dev/null +++ b/dev-util/systemtap/systemtap-1.0.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/systemtap/systemtap-1.0.ebuild,v 1.1 2009/09/28 19:29:36 swegener Exp $ + +inherit linux-info + +DESCRIPTION="A linux trace/probe tool" +HOMEPAGE="http://sourceware.org/systemtap/" +if [[ ${PV} = *_p* ]] # is this a snaphot? +then + # see configure.ac to get the version of the snapshot + SRC_URI="http://sources.redhat.com/${PN}/ftp/snapshots/${PN}-${PV/*_p/}.tar.bz2 + mirror://gentoo/${PN}-${PV/*_p/}.tar.bz2" # upstream only keeps four snapshot distfiles around + S="${WORKDIR}"/src +else + SRC_URI="http://sources.redhat.com/${PN}/ftp/releases/${P}.tar.gz" + # use default S for releases +fi + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="sqlite" + +DEPEND=">=dev-libs/elfutils-0.142 + sys-libs/libcap + sqlite? ( =dev-db/sqlite-3* )" +RDEPEND="${DEPEND} + virtual/linux-sources" + +CONFIG_CHECK="~KPROBES ~RELAY ~DEBUG_FS" +ERROR_KPROBES="${PN} requires support for KProbes Instrumentation (KPROBES) - this can be enabled in 'Instrumentation Support -> Kprobes'." +ERROR_RELAY="${PN} works with support for user space relay support (RELAY) - this can be enabled in 'General setup -> Kernel->user space relay support (formerly relayfs)'." +ERROR_DEBUG_FS="${PN} works best with support for Debug Filesystem (DEBUG_FS) - this can be enabled in 'Kernel hacking -> Debug Filesystem'." + +src_compile() { + econf \ + --docdir=/usr/share/doc/${PF} \ + --without-rpm \ + --disable-server \ + --disable-docs \ + --disable-refdocs \ + --disable-grapher \ + $(use_enable sqlite) \ + || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake install DESTDIR="${D}" || die "make install failed" + dodoc AUTHORS HACKING NEWS README +} |