summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/git
diff options
context:
space:
mode:
authorSaul Wold <Saul.Wold@intel.com>2010-11-10 20:35:31 -0800
committerSaul Wold <sgw@linux.intel.com>2010-11-14 21:08:23 -0800
commit8e3046d8bdd52de5bdca7aba9fbf44743929ccf0 (patch)
tree817376084b1a1bc40081a9cf02cdf2027e4dfe01 /meta/recipes-devtools/git
parentd64c7ae88ca29def7dd2869acaa0e2ec047bd153 (diff)
downloadpoky-8e3046d8bdd52de5bdca7aba9fbf44743929ccf0.tar.gz
git: Update recipe for git to include configure options
Updated LICENSE Added LIC_FILES_CHKSUM Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Diffstat (limited to 'meta/recipes-devtools/git')
-rw-r--r--meta/recipes-devtools/git/git.inc6
-rw-r--r--meta/recipes-devtools/git/git_1.7.2.1.bb7
2 files changed, 10 insertions, 3 deletions
diff --git a/meta/recipes-devtools/git/git.inc b/meta/recipes-devtools/git/git.inc
index 5d72df59d1..da4541dd40 100644
--- a/meta/recipes-devtools/git/git.inc
+++ b/meta/recipes-devtools/git/git.inc
@@ -1,18 +1,20 @@
1DESCRIPTION = "The git revision control system used by the Linux kernel developers" 1DESCRIPTION = "The git revision control system used by the Linux kernel developers"
2SECTION = "console/utils" 2SECTION = "console/utils"
3LICENSE = "GPL" 3LICENSE = "GPLv2"
4DEPENDS = "perl-native openssl curl zlib expat" 4DEPENDS = "perl-native openssl curl zlib expat"
5 5
6SRC_URI = "http://www.kernel.org/pub/software/scm/git/git-${PV}.tar.bz2 \ 6SRC_URI = "http://www.kernel.org/pub/software/scm/git/git-${PV}.tar.bz2 \
7 file://autotools.patch;patch=1" 7 file://autotools.patch;patch=1"
8S = "${WORKDIR}/git-${PV}" 8S = "${WORKDIR}/git-${PV}"
9 9
10LIC_FILES_CHKSUM = "file://COPYING;md5=7c0d7ef03a7eb04ce795b0f60e68e7e1"
11
10EXTRA_OECONF = "--with-perl=${STAGING_BINDIR_NATIVE}/perl --without-tcltk" 12EXTRA_OECONF = "--with-perl=${STAGING_BINDIR_NATIVE}/perl --without-tcltk"
11 13
12inherit autotools 14inherit autotools
13 15
14do_install () { 16do_install () {
15 oe_runmake install prefix=${D} bindir=${D}${bindir} \ 17 oe_runmake install prefix=${D} bindir=${D}${bindir} gitexecdir=${D}${gitexecdir} \
16 template_dir=${D}${datadir}/git-core/templates \ 18 template_dir=${D}${datadir}/git-core/templates \
17 GIT_PYTHON_DIR=${D}${datadir}/git-core/python 19 GIT_PYTHON_DIR=${D}${datadir}/git-core/python
18} 20}
diff --git a/meta/recipes-devtools/git/git_1.7.2.1.bb b/meta/recipes-devtools/git/git_1.7.2.1.bb
index 7f822f69b3..c8aad2e18e 100644
--- a/meta/recipes-devtools/git/git_1.7.2.1.bb
+++ b/meta/recipes-devtools/git/git_1.7.2.1.bb
@@ -1,3 +1,8 @@
1require git.inc 1require git.inc
2 2
3PR = "r2" 3PR = "r3"
4
5EXTRA_OECONF += "ac_cv_snprintf_returns_bogus=no ac_cv_c_c99_format=yes \
6 ac_cv_fread_reads_directories=${ac_cv_fread_reads_directories=yes} \
7 "
8