diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/git/git.inc | 10 | ||||
-rw-r--r-- | meta/recipes-devtools/git/git_2.2.1.bb | 6 |
2 files changed, 13 insertions, 3 deletions
diff --git a/meta/recipes-devtools/git/git.inc b/meta/recipes-devtools/git/git.inc index 5396628790..ace1790a02 100644 --- a/meta/recipes-devtools/git/git.inc +++ b/meta/recipes-devtools/git/git.inc | |||
@@ -5,7 +5,9 @@ DEPENDS = "openssl curl zlib expat" | |||
5 | 5 | ||
6 | PROVIDES_append_class-native = " git-replacement-native" | 6 | PROVIDES_append_class-native = " git-replacement-native" |
7 | 7 | ||
8 | SRC_URI = "${KERNELORG_MIRROR}/software/scm/git/git-${PV}.tar.gz" | 8 | SRC_URI = "${KERNELORG_MIRROR}/software/scm/git/git-${PV}.tar.gz;name=tarball \ |
9 | ${KERNELORG_MIRROR}/software/scm/git/git-manpages-${PV}.tar.gz;name=manpages" | ||
10 | |||
9 | S = "${WORKDIR}/git-${PV}" | 11 | S = "${WORKDIR}/git-${PV}" |
10 | 12 | ||
11 | LIC_FILES_CHKSUM = "file://COPYING;md5=7c0d7ef03a7eb04ce795b0f60e68e7e1" | 13 | LIC_FILES_CHKSUM = "file://COPYING;md5=7c0d7ef03a7eb04ce795b0f60e68e7e1" |
@@ -30,6 +32,12 @@ do_install () { | |||
30 | oe_runmake install DESTDIR="${D}" bindir=${bindir} \ | 32 | oe_runmake install DESTDIR="${D}" bindir=${bindir} \ |
31 | template_dir=${datadir}/git-core/templates \ | 33 | template_dir=${datadir}/git-core/templates \ |
32 | GIT_PYTHON_DIR=${D}${datadir}/git-core/python | 34 | GIT_PYTHON_DIR=${D}${datadir}/git-core/python |
35 | install -d ${D}/${mandir}/man1 | ||
36 | install -d ${D}/${mandir}/man5 | ||
37 | install -d ${D}/${mandir}/man7 | ||
38 | install -t ${D}/${mandir}/man1 ${WORKDIR}/man1/* | ||
39 | install -t ${D}/${mandir}/man5 ${WORKDIR}/man5/* | ||
40 | install -t ${D}/${mandir}/man7 ${WORKDIR}/man7/* | ||
33 | } | 41 | } |
34 | 42 | ||
35 | perl_native_fixup () { | 43 | perl_native_fixup () { |
diff --git a/meta/recipes-devtools/git/git_2.2.1.bb b/meta/recipes-devtools/git/git_2.2.1.bb index 2d47cda775..d1fcb27587 100644 --- a/meta/recipes-devtools/git/git_2.2.1.bb +++ b/meta/recipes-devtools/git/git_2.2.1.bb | |||
@@ -1,7 +1,9 @@ | |||
1 | require git.inc | 1 | require git.inc |
2 | 2 | ||
3 | SRC_URI[md5sum] = "ff41fdb094eed1ec430aed8ee9b9849c" | 3 | SRC_URI[tarball.md5sum] = "ff41fdb094eed1ec430aed8ee9b9849c" |
4 | SRC_URI[sha256sum] = "367a77d0b10a5070b02a0fb0e942f26f25af61793128e0ddfd5c5c474de93589" | 4 | SRC_URI[tarball.sha256sum] = "367a77d0b10a5070b02a0fb0e942f26f25af61793128e0ddfd5c5c474de93589" |
5 | SRC_URI[manpages.md5sum] = "b5ddd262b608804ba4403f0f82d881d7" | ||
6 | SRC_URI[manpages.sha256sum] = "69dcb3decdb33dd35491935e80f71c40c576b536df4223eb98d5f7ccd9643293" | ||
5 | 7 | ||
6 | EXTRA_OECONF += "ac_cv_snprintf_returns_bogus=no ac_cv_c_c99_format=yes \ | 8 | EXTRA_OECONF += "ac_cv_snprintf_returns_bogus=no ac_cv_c_c99_format=yes \ |
7 | ac_cv_fread_reads_directories=${ac_cv_fread_reads_directories=yes} \ | 9 | ac_cv_fread_reads_directories=${ac_cv_fread_reads_directories=yes} \ |