aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/gnutls
AgeCommit message (Expand)Author
2011-01-19gnutls: remove old unpinned versionsMartin Jansa
2011-01-19gnutls: move to latest stable branch 2.10.2 -> 2.10.4Michael Smith
2010-12-08removed unused var AUTOTOOLS_STAGE_PKGCONFIGFrans Meulenbroeks
2010-11-24gnutls_2.10.2.bb: Fix parallel build failure.Graham Gower
2010-10-27gnutls: move to latest stable branch 2.10.1 -> 2.10.2Martin Jansa
2010-10-18gnutls: don't fail on missing files we try to rmKoen Kooi
2010-10-16gnutls_2.10.1: remove the libtool-m4-macrosFrans Meulenbroeks
2010-10-10gnutls_2.10.1.bb: Update to libtools 2.4 macros.Khem Raj
2010-08-17gnutls: add version 2.10.1Martin Jansa
2010-08-03500+ recipes: remove do_stageFrans Meulenbroeks
2010-06-05gnutls_2.8.6.bb: Add recipe for version 2.8.6Khem Raj
2010-05-25Make the do_patch apply=yes param implicit if extension is .diff/.patchChris Larson
2010-05-25Rename url params patch=<ignored>/pnum=<n> to apply={yes,no}/striplevel=<n>Chris Larson
2010-05-18gnutls.inc: Obtain gettext in DEPENDS from inheriting gettext bbclassKhem Raj
2010-04-12recipes: move checksums to recipes from checksums.iniMartin Jansa
2010-03-27gnutls: fix do_configure by depending on gtk-docAntonio Ospite
2010-03-09gnutls: drop old versionsMarcin Juszkiewicz
2010-03-05gnutls: install m4 macros only in <2.8.5 versionsMarcin Juszkiewicz
2010-03-05gnutls: 2.8.5 lacks the .m4 files, so don't abort if cp failsKoen Kooi
2010-03-05gnutls: added 2.8.5, adapted to new stagingMarcin Juszkiewicz
2009-11-12gnutls-native: new recipeDmitry Eremin-Solenikov
2009-05-27gnutsl: added missing build dependency guile-nativeMartin Dietze
2009-05-06gnutls: The 'extra' lib (and package) is GPLv3Tom Rini
2009-03-29libtasn1: add native versionKoen Kooi
2009-03-17rename packages/ to recipes/ per earlier agreementDenys Dmytriyenko
tion value='jansa/pseudo2'>jansa/pseudo2 OpenEmbedded Core user contribution treesGrokmirror user
summaryrefslogtreecommitdiffstats
path: root/openembedded/packages/oprofile/oprofile_cvs.bb
blob: 73ded09a16dabc1865ba97870da9aa99de6d97be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
PV = "0.9.1+cvs${SRCDATE}"
SECTION = "devel"
DESCRIPTION = "OProfile is a system-wide profiler for Linux systems, capable \
of profiling all running code at low overhead."
LICENSE = "GPL"
MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
DEPENDS = "popt binutils"

SRC_URI = "cvs://anonymous@oprofile.cvs.sourceforge.net/cvsroot/oprofile;module=oprofile \
	   file://no_arm_mapping_syms.patch;patch=1 \
	   file://acinclude.m4"
S = "${WORKDIR}/oprofile"

inherit autotools

# NOTE: this disables the build of the kernel modules.
# Should add the oprofile kernel modules, for those with 2.4
# kernels, as a seperate .oe file.
EXTRA_OECONF = "--with-kernel-support \
		--without-x \
		--disable-werror "

do_configure () {
	cp ${WORKDIR}/acinclude.m4 ${S}/
	autotools_do_configure
}
# Available config options
#  --enable-abi                 enable abi portability code (default is disabled)
#  --enable-pch                 enable precompiled header (default is disabled)
#  --enable-gcov                enable option for gcov coverage testing (default is disabled)
#  --disable-werror            disable -Werror flag (default is enabled for non-release)
#  --disable-optimization      disable optimization flags (default is enabled)
#  --with-kernel-support        Use 2.6 kernel (no kernel source tree required)
#  --with-linux=dir             Path to Linux source tree
#  --with-module-dir=dir        Path to module installation directory
#  --with-extra-includes=DIR    add extra include paths
#  --with-extra-libs=DIR        add extra library paths
#  --with-x                use the X Window System
#  --with-qt-dir           where the root of Qt is installed
#  --with-qt-includes      where the Qt includes are.
#  --with-qt-libraries     where the Qt library is installed.