mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-13 23:30:04 +02:00
35 lines
1.0 KiB
Plaintext
35 lines
1.0 KiB
Plaintext
DESCRIPTION="git a fast version control system"
|
|
HOMEPAGE="http://git-scm.com/"
|
|
SRC_URI="http://kernel.org/pub/software/scm/git/git-1.7.3.5.tar.bz2"
|
|
CHECKSUM_MD5="8a8cd93b8a4dff0a03c0fdc77253af3e"
|
|
REVISION="1"
|
|
STATUS_HAIKU="broken"
|
|
DEPEND="net-misc/curl >= 7.20.0
|
|
dev-lang/perl >= 5.10.1"
|
|
BUILD {
|
|
cd git-1.7.3.5
|
|
autoconf
|
|
sed -i 's/lgen/ /' configure
|
|
sed -i 's/-lgen/ /' Makefile
|
|
CFLAGS="-I/boot/common/include" LDFLAGS="-L/boot/common/lib -L/boot/system/lib -lbsd -lnetwork" \
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
|
|
--datadir=`finddir B_COMMON_DATA_DIRECTORY` \
|
|
--datarootdir=`finddir B_COMMON_DATA_DIRECTORY` \
|
|
--libexecdir=`finddir B_COMMON_BIN_DIRECTORY` \
|
|
sharedir=`finddir B_COMMON_DATA_DIRECTORY` \
|
|
--with-editor=nano \
|
|
--enable-pthreads \
|
|
--with-perl=`finddir B_COMMON_BIN_DIRECTORY`/perl \
|
|
--with-python=`finddir B_COMMON_BIN_DIRECTORY`/python \
|
|
--without-tcltk
|
|
make strip
|
|
}
|
|
|
|
INSTALL {
|
|
cd git-1.7.3.5
|
|
make install
|
|
}
|
|
|
|
LICENSE="GNU GPL v2"
|
|
COPYRIGHT="2005-2011 Git Authors (see git web site for list)"
|