From a996bc1a1eb99fdd28baaaa0cffc28b61636e2e0 Mon Sep 17 00:00:00 2001 From: Scott McCreary Date: Mon, 23 Nov 2009 09:13:00 +0000 Subject: [PATCH] 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. --- dev-util/cvs/cvs-1.12.13.bep | 17 +++++++++ .../cvs-1.12.13.patch} | 0 dev-util/git/git-1.6.5.3.bep | 37 +++++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100644 dev-util/cvs/cvs-1.12.13.bep rename dev-util/cvs/{cvs-1.12.13.diff => patches/cvs-1.12.13.patch} (100%) create mode 100644 dev-util/git/git-1.6.5.3.bep diff --git a/dev-util/cvs/cvs-1.12.13.bep b/dev-util/cvs/cvs-1.12.13.bep new file mode 100644 index 000000000..91f8f030f --- /dev/null +++ b/dev-util/cvs/cvs-1.12.13.bep @@ -0,0 +1,17 @@ +DESCRIPTION="CVS is a version control system" +HOMEPAGE="http://www.nongnu.org/cvs/" +SRC_URI="http://ftp.gnu.org/non-gnu/cvs/source/feature/1.12.13/cvs-1.12.13.tar.gz" +REVISION="1" +STATUS_HAIKU="broken" +DEPEND="" +BUILD { + cd cvs-1.12.13 + libtoolize --force --copy --install + ./configure --prefix=/boot/common --enable-rootcommit + make +} + +INSTALL { + cd cvs-1.12.13 + make install +} diff --git a/dev-util/cvs/cvs-1.12.13.diff b/dev-util/cvs/patches/cvs-1.12.13.patch similarity index 100% rename from dev-util/cvs/cvs-1.12.13.diff rename to dev-util/cvs/patches/cvs-1.12.13.patch diff --git a/dev-util/git/git-1.6.5.3.bep b/dev-util/git/git-1.6.5.3.bep new file mode 100644 index 000000000..4dc354ddc --- /dev/null +++ b/dev-util/git/git-1.6.5.3.bep @@ -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 +}