Update mercurial to 2.4 and git to 1.8.0

This commit is contained in:
Chris Roberts
2012-11-04 23:14:00 +00:00
parent dd51c82ad6
commit fd24328716
15 changed files with 31 additions and 299 deletions

View File

@@ -1,20 +0,0 @@
DESCRIPTION="git a fast version control system"
HOMEPAGE="http://code.google.com/p/git-core/"
SRC_URI="http://git-core.googlecode.com/files/git-manpages-1.7.7.2.tar.gz"
CHECKSUM_MD5="24e2d2b6c3f97102f7b79e05c165fd22"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD {
echo "Building Git documentation"
}
INSTALL {
DOC_DIR=$(finddir B_COMMON_DOCUMENTATION_DIRECTORY)'/man'
echo $DOC_DIR
cp -r man* $DOC_DIR
}
LICENSE="GNU GPL v2"
COPYRIGHT="2005-2011 Git Authors (see git web site for list)"

View File

@@ -1,32 +0,0 @@
DESCRIPTION="git a fast version control system"
HOMEPAGE="http://code.google.com/p/git-core/"
SRC_URI="http://git-core.googlecode.com/files/git-manpages-1.7.9.1.tar.gz"
CHECKSUM_MD5="c2d9b838bb5ba1385e65ed8ae0e4fe00"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD {
echo "Attempting to download additional formats"
wget http://git-core.googlecode.com/files/git-htmldocs-1.7.9.1.tar.gz
if [ $? != 0 ];then
echo "Error downloading additional formats"
exit 1
fi
}
INSTALL {
MAN_DIR=$(finddir B_COMMON_DOCUMENTATION_DIRECTORY)/man
mkdir -p "${DESTDIR}/${MAN_DIR}"
cp -afv man* "${DESTDIR}/${MAN_DIR}"
echo "Extracting extra docs"
DOC_DIR=$(finddir B_COMMON_DOCUMENTATION_DIRECTORY)/doc/git-1.7.9.1
mkdir -p "${DESTDIR}/${DOC_DIR}"
WORKDIR="$(pwd)"
cd "${DESTDIR}/${DOC_DIR}"
tar xvf "${WORKDIR}/git-htmldocs-1.7.9.1.tar.gz"
}
LICENSE="GNU GPL v2"
COPYRIGHT="2005-2012 Git Authors (see git web site for list)"

View File

@@ -1,14 +1,14 @@
DESCRIPTION="git a fast version control system"
HOMEPAGE="http://code.google.com/p/git-core/"
SRC_URI="http://git-core.googlecode.com/files/git-manpages-1.7.10.tar.gz"
CHECKSUM_MD5="5066600fe67986acd36c008c876e9489"
SRC_URI="http://git-core.googlecode.com/files/git-manpages-1.8.0.tar.gz"
CHECKSUM_MD5="66f0a839d933c7d573fb40cb051b5e66"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD {
echo "Attempting to download additional formats"
wget http://git-core.googlecode.com/files/git-htmldocs-1.7.10.tar.gz
wget http://git-core.googlecode.com/files/git-htmldocs-1.8.0.tar.gz
if [ $? != 0 ];then
echo "Error downloading additional formats"
exit 1
@@ -21,11 +21,11 @@ INSTALL {
cp -afv man* "${DESTDIR}/${MAN_DIR}"
echo "Extracting extra docs"
DOC_DIR=$(finddir B_COMMON_DOCUMENTATION_DIRECTORY)/doc/git-1.7.10
DOC_DIR=$(finddir B_COMMON_DOCUMENTATION_DIRECTORY)/doc/git-1.8.0
mkdir -p "${DESTDIR}/${DOC_DIR}"
WORKDIR="$(pwd)"
cd "${DESTDIR}/${DOC_DIR}"
tar xvf "${WORKDIR}/git-htmldocs-1.7.10.tar.gz"
tar xvf "${WORKDIR}/git-htmldocs-1.8.0.tar.gz"
}
LICENSE="GNU GPL v2"