Moved cvs patch to patches directory, adding in .bep files for cvs and git, allow both are currently broken, and will need some more testing to get working correctly. Marked as broken.

This commit is contained in:
Scott McCreary
2009-11-23 09:13:00 +00:00
parent 38c1f6bcbf
commit a996bc1a1e
3 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
DESCRIPTION="git a fast version control system"
HOMEPAGE="http://git-scm.com/"
SRC_URI="http://kernel.org/pub/software/scm/git/git-1.6.5.3.tar.bz2"
REVISION="1"
STATUS_HAIKU="broken"
DEPEND=""
BUILD {
cd git-1.6.5.3
libtoolize --force --copy --install
aclocal
autoconf
./configure --prefix=/boot/common --enable-pthreads=""
make prefix=/boot/common NO_R_TO_GCC_LINKER=YesPlease \
NO_C99_FORMAT=YesPlease \
NO_ST_BLOCKS_IN_STRUCT_STAT=YesPlease \
NO_MEMMEM=YesPlease NO_MKSTEMPS=YesPlease \
NO_MKDTEMP=YesPlease NO_IPV6=YesPlease \
NO_TCLTK=YesPlease CURLDIR=/boot/common \
PERL_PATH=/boot/common/bin/perl \
CFLAGS="-g -O2 -I/boot/common/include" \
LIBS="" \
LDFLAGS="-L/boot/common/lib -lnetwork -lbsd -liconv" \
strip
}
INSTALL {
cd git-1.6.5.3
make install prefix=/boot/common NO_R_TO_GCC_LINKER=YesPlease \
NO_C99_FORMAT=YesPlease NO_ST_BLOCKS_IN_STRUCT_STAT=YesPlease \
NO_MEMMEM=YesPlease NO_MKSTEMPS=YesPlease \
NO_MKDTEMP=YesPlease NO_IPV6=YesPlease NO_TCLTK=YesPlease \
CURLDIR=/boot/common PERL_PATH=/boot/common/bin/perl \
CFLAGS="-g -O2 -I/boot/common/include" \
LIBS="" \
LDFLAGS="-L/boot/common/lib -lnetwork -lbsd -liconv" \
strip
}