diff options
author | Lars Weiler <pylon@gentoo.org> | 2005-04-19 23:20:12 +0000 |
---|---|---|
committer | Lars Weiler <pylon@gentoo.org> | 2005-04-19 23:20:12 +0000 |
commit | 92dc71e2f3dc978e404029d1c82292771cb06136 (patch) | |
tree | dd2bf2feeb912154e00c4de6b6e4978ee8786d6b /dev-util/cvs/cvs-1.12.12.ebuild | |
parent | Remove retired developer from metadata.xml. (diff) | |
download | historical-92dc71e2f3dc978e404029d1c82292771cb06136.tar.gz historical-92dc71e2f3dc978e404029d1c82292771cb06136.tar.bz2 historical-92dc71e2f3dc978e404029d1c82292771cb06136.zip |
Version bump due to security release. Bug #89579.
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'dev-util/cvs/cvs-1.12.12.ebuild')
-rw-r--r-- | dev-util/cvs/cvs-1.12.12.ebuild | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/dev-util/cvs/cvs-1.12.12.ebuild b/dev-util/cvs/cvs-1.12.12.ebuild new file mode 100644 index 000000000000..a8a0c997181b --- /dev/null +++ b/dev-util/cvs/cvs-1.12.12.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/cvs/cvs-1.12.12.ebuild,v 1.1 2005/04/19 23:20:12 pylon Exp $ + +DESCRIPTION="Concurrent Versions System - source code revision control tools" +HOMEPAGE="http://www.cvshome.org/" + +SRC_URI="http://ccvs.cvshome.org/files/documents/19/872/${P}.tar.bz2 + doc? ( http://ccvs.cvshome.org/files/documents/19/878/cederqvist-${PV}.html.tar.bz2 + http://ccvs.cvshome.org/files/documents/19/881/cederqvist-${PV}.pdf + http://ccvs.cvshome.org/files/documents/19/880/cederqvist-${PV}.ps )" + +LICENSE="GPL-2 LGPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~mips ~alpha ~arm ~hppa ~amd64 ~ia64 ~ppc64 ~s390" + +IUSE="crypt doc emacs kerberos pam" + +DEPEND="virtual/libc + >=sys-libs/zlib-1.1.4 + kerberos? ( virtual/krb5 ) + pam? ( >=sys-libs/pam-0.73 + >=sys-apps/shadow-4.0.2-r2 )" + + +src_compile() { + econf \ + --with-external-zlib \ + --with-tmpdir=/tmp \ + `use_enable crypt encryption` \ + `use_enable pam` \ + || die + emake || die "emake failed" +} + +src_install() { + einstall || die + + insinto /etc/xinetd.d + newins ${FILESDIR}/cvspserver.xinetd.d cvspserver || die "newins failed" + + dodoc BUGS ChangeLog* DEVEL* FAQ HACKING \ + MINOR* NEWS PROJECTS README* TESTS TODO + + if use emacs; then + insinto /usr/share/emacs/site-lisp + doins cvs-format.el || die "doins failed" + fi + + if use doc; then + dodoc ${DISTDIR}/cederqvist-${PV}.pdf + dodoc ${DISTDIR}/cederqvist-${PV}.ps + tar xjf ${DISTDIR}/cederqvist-${PV}.html.tar.bz2 + dohtml -r cederqvist-${PV}.html/* + cd ${D}/usr/share/doc/${PF}/html/ + ln -s cvs.html index.html + fi + + if use pam; then + insinto /etc/pam.d + newins ${FILESDIR}/cvs.pam cvs + fi +} + +src_test() { + einfo "FEATURES=\"maketest\" has been disabled for dev-util/cvs" +} |