diff options
author | Graeme Gregory <dp@xora.org.uk> | 2008-05-09 14:07:09 +0000 |
---|---|---|
committer | Graeme Gregory <dp@xora.org.uk> | 2008-05-09 14:07:09 +0000 |
commit | 2a4dd2207b082cfa881be07ffc7daf1bed375130 (patch) | |
tree | 772ffb3d11fbf843a84e35f0d2736d1d2d5be275 /packages/git | |
parent | 8197cff6e0e771683ffd0e5c3666963c35b5465a (diff) |
git_1.5.3.bb : add from OM mtn
git.inc : fixes from OM mtn
Diffstat (limited to 'packages/git')
-rw-r--r-- | packages/git/git-native_1.5.3.bb | 2 | ||||
-rw-r--r-- | packages/git/git.inc | 8 | ||||
-rw-r--r-- | packages/git/git_1.5.3.bb | 5 |
3 files changed, 10 insertions, 5 deletions
diff --git a/packages/git/git-native_1.5.3.bb b/packages/git/git-native_1.5.3.bb index 935c773c1c..1ef8eafc19 100644 --- a/packages/git/git-native_1.5.3.bb +++ b/packages/git/git-native_1.5.3.bb @@ -1,4 +1,4 @@ require git.inc inherit native DEPENDS = "openssl-native curl-native zlib-native expat-native" -PR = "r1" +PR = "r2" diff --git a/packages/git/git.inc b/packages/git/git.inc index 3a80c5d950..879dc84cbe 100644 --- a/packages/git/git.inc +++ b/packages/git/git.inc @@ -8,14 +8,14 @@ SRC_URI = "http://www.kernel.org/pub/software/scm/git/git-${PV}.tar.bz2 \ " S = "${WORKDIR}/git-${PV}" -EXTRA_OEMAKE = "NO_TCLTL=1" +EXTRA_OEMAKE = "NO_TCLTK=1" inherit autotools do_install () { - oe_runmake install prefix=${D} bindir=${D}${bindir} \ - template_dir=${D}${datadir}/git-core/templates \ - GIT_PYTHON_DIR=${D}${datadir}/git-core/python + oe_runmake install DESTDIR="${D}" bindir=${bindir} \ + template_dir=${datadir}/git-core/templates \ + GIT_PYTHON_DIR=${datadir}/git-core/python } FILES_${PN} += "${datadir}/git-core" diff --git a/packages/git/git_1.5.3.bb b/packages/git/git_1.5.3.bb new file mode 100644 index 0000000000..f250bd5166 --- /dev/null +++ b/packages/git/git_1.5.3.bb @@ -0,0 +1,5 @@ +require git.inc +DEPENDS = "openssl curl zlib expat" +RDEPENDS = "perl perl-module-file-path cpio findutils sed" +PR = "r2" + |