diff options
author | Lars Weiler <pylon@gentoo.org> | 2006-03-01 16:03:53 +0000 |
---|---|---|
committer | Lars Weiler <pylon@gentoo.org> | 2006-03-01 16:03:53 +0000 |
commit | 8bb48e02730827d767a8b78e0648a3d3be6ef762 (patch) | |
tree | d11d7a7a583615b87f8726db3eb398f00c8ea62b /dev-util/cvs/cvs-1.12.12-r3.ebuild | |
parent | Bump to release candidate, add patch to build with GCC 4.1 (already fixed ups... (diff) | |
download | historical-8bb48e02730827d767a8b78e0648a3d3be6ef762.tar.gz historical-8bb48e02730827d767a8b78e0648a3d3be6ef762.tar.bz2 historical-8bb48e02730827d767a8b78e0648a3d3be6ef762.zip |
Fixed bug #121820 and bug #124260.
Package-Manager: portage-2.1_pre4-r1
Diffstat (limited to 'dev-util/cvs/cvs-1.12.12-r3.ebuild')
-rw-r--r-- | dev-util/cvs/cvs-1.12.12-r3.ebuild | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/dev-util/cvs/cvs-1.12.12-r3.ebuild b/dev-util/cvs/cvs-1.12.12-r3.ebuild new file mode 100644 index 000000000000..2e2031607cf3 --- /dev/null +++ b/dev-util/cvs/cvs-1.12.12-r3.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2006 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-r3.ebuild,v 1.1 2006/03/01 16:03:53 pylon Exp $ + +inherit eutils pam + +DESCRIPTION="Concurrent Versions System - source code revision control tools" +HOMEPAGE="http://www.nongnu.org/cvs/" + +SRC_URI="http://ftp.gnu.org/non-gnu/cvs/source/feature/${PV}/${P}.tar.bz2 + doc? ( http://ftp.gnu.org/non-gnu/cvs/source/feature/${PV}/cederqvist-${PV}.html.tar.bz2 + http://ftp.gnu.org/non-gnu/cvs/source/feature/${PV}/cederqvist-${PV}.pdf + http://ftp.gnu.org/non-gnu/cvs/source/feature/${PV}/cederqvist-${PV}.ps )" + +LICENSE="GPL-2 LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" + +IUSE="crypt doc emacs kerberos pam" + +DEPEND="virtual/libc + >=sys-libs/zlib-1.1.4 + kerberos? ( virtual/krb5 ) + pam? ( virtual/pam )" + +src_unpack() { + unpack ${P}.tar.bz2 + use doc && unpack cederqvist-${PV}.html.tar.bz2 + EPATCH_OPTS="-p1 -d ${S}" epatch ${FILESDIR}/${P}-cvsbug-tmpfix.patch + epatch ${FILESDIR}/${P}-openat.patch +} + +src_compile() { + econf \ + --with-external-zlib \ + --with-tmpdir=/tmp \ + --disable-nls \ + `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 + + newpamd ${FILESDIR}/cvs.pam-include-1.12.12 cvs +} + +src_test() { + einfo "FEATURES=\"maketest\" has been disabled for dev-util/cvs" +} |