mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-23 12:10:06 +02:00
Convert git-1.7.10.2.recipe into an actual recipe and adjust the patch
This commit is contained in:
@@ -1,29 +1,180 @@
|
||||
DESCRIPTION="git a fast version control system"
|
||||
SUMMARY="Fast, scalable, distributed revision control system"
|
||||
DESCRIPTION="
|
||||
Git is a free and open source distributed version control system designed
|
||||
to handle everything from small to very large projects with speed and
|
||||
efficiency.
|
||||
|
||||
Git is easy to learn and has a tiny footprint with lightning fast
|
||||
performance. It outclasses SCM tools like Subversion, CVS, Perforce,
|
||||
and ClearCase with features like cheap local branching, convenient
|
||||
staging areas, and multiple workflows.
|
||||
"
|
||||
HOMEPAGE="http://git-scm.com/"
|
||||
LICENSE="GNU GPL v2"
|
||||
COPYRIGHT="2005-2012 Git Authors (see git web site for list)"
|
||||
|
||||
SRC_URI="http://git-core.googlecode.com/files/git-1.7.10.2.tar.gz"
|
||||
CHECKSUM_MD5="2e2ee53243ab8e7cf10f15c5229c3fce"
|
||||
SOURCE_DIR="$portVersionedName"
|
||||
PATCHES="git-1.7.10.2.patch"
|
||||
|
||||
SRC_URI_2="http://git-core.googlecode.com/files/git-manpages-1.7.10.2.tar.gz"
|
||||
CHECKSUM_MD5_2="79bae5456db8366803d28db867892d74"
|
||||
|
||||
SRC_URI_3="http://git-core.googlecode.com/files/git-htmldocs-1.7.10.2.tar.gz"
|
||||
CHECKSUM_MD5_3="9c401a36aee40d68f5ca3513818e8f29"
|
||||
|
||||
REVISION="1"
|
||||
STATUS_HAIKU="stable"
|
||||
DEPEND="net-misc/curl >= 7.20.0
|
||||
dev-lang/perl >= 5.10.1
|
||||
dev-vcs/gitdoc == 1.7.10"
|
||||
|
||||
ARCHITECTURES="x86_gcc2 ?x86"
|
||||
|
||||
PROVIDES="
|
||||
git = $portVersion compat >= 1.7
|
||||
cmd:git = $portVersion compat >= 1.7
|
||||
cmd:git_receive_pack = $portVersion compat >= 1.7
|
||||
cmd:git_shell = $portVersion compat >= 1.7
|
||||
cmd:git_upload_archive = $portVersion compat >= 1.7
|
||||
cmd:git_upload_pack = $portVersion compat >= 1.7
|
||||
"
|
||||
PROVIDES_arch="
|
||||
git_arch = $portVersion compat >= 1.7
|
||||
cmd:git_archimport = $portVersion compat >= 1.7
|
||||
"
|
||||
PROVIDES_cvs="
|
||||
git_cvs = $portVersion compat >= 1.7
|
||||
cmd:git_cvsserver = $portVersion compat >= 1.7
|
||||
"
|
||||
PROVIDES_daemon="
|
||||
git_daemon = $portVersion compat >= 1.7
|
||||
cmd:git_daemon = $portVersion compat >= 1.7
|
||||
"
|
||||
PROVIDES_email="
|
||||
git_email = $portVersion compat >= 1.7
|
||||
cmd:git_send_email = $portVersion compat >= 1.7
|
||||
"
|
||||
PROVIDES_source="
|
||||
git_source = $portVersion compat >= 1.7
|
||||
"
|
||||
PROVIDES_svn="
|
||||
git_svn = $portVersion compat >= 1.7
|
||||
cmd:git_svn = $portVersion compat >= 1.7
|
||||
"
|
||||
|
||||
REQUIRES="
|
||||
haiku >= $haikuVersion
|
||||
curl
|
||||
expat
|
||||
openssl
|
||||
perl
|
||||
python
|
||||
zlib
|
||||
cmd:nano
|
||||
"
|
||||
REQUIRES_arch="
|
||||
haiku >= $haikuVersion
|
||||
git == $portVersion
|
||||
"
|
||||
REQUIRES_cvs="
|
||||
haiku >= $haikuVersion
|
||||
git == $portVersion
|
||||
"
|
||||
REQUIRES_daemon="
|
||||
haiku >= $haikuVersion
|
||||
git == $portVersion
|
||||
"
|
||||
REQUIRES_email="
|
||||
haiku >= $haikuVersion
|
||||
git == $portVersion
|
||||
"
|
||||
REQUIRES_svn="
|
||||
haiku >= $haikuVersion
|
||||
git == $portVersion
|
||||
"
|
||||
|
||||
BUILD_REQUIRES="
|
||||
$REQUIRES
|
||||
cmd:gcc
|
||||
cmd:ld
|
||||
cmd:make
|
||||
cmd:sed
|
||||
cmd:tar
|
||||
"
|
||||
BUILD_PREREQUIRES="
|
||||
haiku_devel >= $haikuVersion
|
||||
"
|
||||
|
||||
BUILD()
|
||||
{
|
||||
cd git-1.7.10.2
|
||||
make strip
|
||||
make
|
||||
}
|
||||
|
||||
INSTALL()
|
||||
{
|
||||
cd git-1.7.10.2
|
||||
make strip
|
||||
make install
|
||||
}
|
||||
|
||||
# replace copies of git binaries with symlinks
|
||||
cd $prefix/bin
|
||||
for program in git*; do
|
||||
ln -sfn "../lib/git-core/$program" "$program"
|
||||
done
|
||||
|
||||
TEST()
|
||||
{
|
||||
cd git-1.7.10.2
|
||||
make check
|
||||
}
|
||||
# copy manpages
|
||||
mkdir -p $manDir
|
||||
cp -rd $sourceDir2/* $manDir/
|
||||
|
||||
LICENSE="GNU GPL v2"
|
||||
COPYRIGHT="2005-2012 Git Authors (see git web site for list)"
|
||||
# copy html documentation
|
||||
htmlDir=$docDir/html
|
||||
mkdir -p $htmlDir
|
||||
cp -rd $sourceDir3/*.html $htmlDir/
|
||||
rm $htmlDir/git-gui.html
|
||||
|
||||
# copy asciidoc documentation for which there isn't any corresponding html
|
||||
asciidocDir=$docDir/asciidoc
|
||||
mkdir -p $asciidocDir
|
||||
for f in $sourceDir3/*.txt; do
|
||||
html=$sourceDir3/$(basename $f .txt).html
|
||||
if ! [ -e $html ]; then
|
||||
cp -d $f $asciidocDir/
|
||||
fi
|
||||
done
|
||||
|
||||
packageEntries arch \
|
||||
documentation/packages/git/html/git-archimport.html \
|
||||
documentation/man/man1/git-archimport.1 \
|
||||
lib/git-core/git-archimport
|
||||
|
||||
packageEntries cvs \
|
||||
bin/git-cvsserver \
|
||||
documentation/packages/git/html/git-cvsexportcommit.html \
|
||||
documentation/packages/git/html/git-cvsimport.html \
|
||||
documentation/packages/git/html/git-cvsserver.html \
|
||||
documentation/man/man1/git-cvsexportcommit.1 \
|
||||
documentation/man/man1/git-cvsimport.1 \
|
||||
documentation/man/man1/git-cvsserver.1 \
|
||||
documentation/man/man7/gitcvs-migration.7 \
|
||||
lib/git-core/git-cvsexportcommit \
|
||||
lib/git-core/git-cvsimport \
|
||||
lib/git-core/git-cvsserver
|
||||
|
||||
packageEntries daemon \
|
||||
documentation/packages/git/html/git-credential-cache--daemon.html \
|
||||
documentation/packages/git/html/git-credential-cache.html \
|
||||
documentation/packages/git/html/git-daemon.html \
|
||||
documentation/man/man1/git-credential-cache--daemon.1 \
|
||||
documentation/man/man1/git-credential-cache.1 \
|
||||
documentation/man/man1/git-daemon.1 \
|
||||
lib/git-core/git-credential-cache--daemon \
|
||||
lib/git-core/git-credential-cache \
|
||||
lib/git-core/git-daemon
|
||||
|
||||
packageEntries email \
|
||||
documentation/packages/git/html/git-send-email.html \
|
||||
documentation/man/man1/git-send-email.1 \
|
||||
lib/git-core/git-send-email
|
||||
|
||||
packageEntries svn \
|
||||
documentation/packages/git/html/git-svn.html \
|
||||
documentation/man/man1/git-svn.1 \
|
||||
lib/git-core/git-svn
|
||||
}
|
||||
|
||||
@@ -1,34 +1,30 @@
|
||||
diff -up git-1.7.10.2/Makefile.orig git-1.7.10.2/Makefile
|
||||
--- git-1.7.10.2/Makefile.orig 2012-05-11 14:25:45.066322432 -0600
|
||||
+++ git-1.7.10.2/Makefile 2012-05-19 12:53:42.392429568 -0600
|
||||
@@ -1242,6 +1242,31 @@ ifeq ($(uname_S),Minix)
|
||||
@@ -1242,6 +1242,27 @@ ifeq ($(uname_S),Minix)
|
||||
NO_CURL =
|
||||
NO_EXPAT =
|
||||
endif
|
||||
+ifeq ($(uname_S),Haiku)
|
||||
+ NO_CROSS_DIRECTORY_HARDLINKS = YesPlease
|
||||
+ NO_GETTEXT = YesPlease
|
||||
+ NO_ICONV = YesPlease
|
||||
+ NO_LIBGEN_H = YesPlease
|
||||
+ NO_MEMMEM = YesPlease
|
||||
+ NO_MKSTEMPS = YesPlease
|
||||
+ NEEDS_LIBICONV = YesPlease
|
||||
+ PERL_PATH = perl
|
||||
+ PYTHON_PATH = python
|
||||
+# TCL_PATH = tclsh
|
||||
+ mandir = /boot/common/documentation/man
|
||||
+ infodir = /boot/common/documentation/info
|
||||
+ htmldir = /boot/common/documentation/doc/git-1.7.10.2
|
||||
+ gitexecdir = /boot/common/bin/git-core
|
||||
+ gitwebdir = /boot/common/data/gitweb
|
||||
+ template_dir = /boot/common/data/git-core/templates
|
||||
+ NO_TCLTK = YesPlease
|
||||
+ DEFAULT_EDITOR = nano
|
||||
+ CURL_DIR = /boot/common
|
||||
+ EXPAT_DIR = /boot/common
|
||||
+ BASIC_CFLAGS += -I/boot/common/include
|
||||
+ BASIC_LDFLAGS += -lnetwork -lbsd -L/boot/common/lib
|
||||
+ PTHREAD_LIBS =
|
||||
+ prefix = /boot/common
|
||||
+ NO_CROSS_DIRECTORY_HARDLINKS = YesPlease
|
||||
+ NO_GETTEXT = YesPlease
|
||||
+ BASIC_LDFLAGS += -lnetwork -lbsd
|
||||
+ DEFAULT_EDITOR = nano
|
||||
+ PERL_PATH = $(portPackageLinksDir)/perl/bin/perl
|
||||
+ PYTHON_PATH = $(portPackageLinksDir)/python/bin/python
|
||||
+ prefix = $(portPackageLinksDir)/.self
|
||||
+ mandir = $(manDir)
|
||||
+ infodir = $(infoDir)
|
||||
+ htmldir = $(docDir)
|
||||
+ gitexecdir = $(libDir)/git-core
|
||||
+ gitwebdir = $(dataDir)/gitweb
|
||||
+ template_dir = $(dataDir)/git-core/templates
|
||||
+endif
|
||||
ifneq (,$(findstring MINGW,$(uname_S)))
|
||||
pathsep = ;
|
||||
|
||||
Reference in New Issue
Block a user