mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
30 lines
740 B
Plaintext
30 lines
740 B
Plaintext
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"
|
|
CHECKSUM_MD5="7a71a2e7a64973ecf255965956a1d338"
|
|
REVISION="1"
|
|
STATUS_HAIKU="broken"
|
|
DEPEND=""
|
|
BUILD()
|
|
{
|
|
cd cvs-1.12.13
|
|
libtoolize --force --copy --install
|
|
autoconf
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
|
|
--datarootdir=`finddir B_COMMON_DATA_DIRECTORY` \
|
|
--infodir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/info \
|
|
--mandir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/man \
|
|
--enable-rootcommit \
|
|
EDITOR=nano
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd cvs-1.12.13
|
|
make install
|
|
}
|
|
LICENSE="GNU GPL v1
|
|
GNU LGPL v2"
|
|
COPYRIGHT="1986-2005 Free Software Foundation, Inc."
|