diff options
author | Rainer Groesslinger <scandium@gentoo.org> | 2004-09-25 21:04:54 +0000 |
---|---|---|
committer | Rainer Groesslinger <scandium@gentoo.org> | 2004-09-25 21:04:54 +0000 |
commit | 3465b899353c622c15452bd00bc40b352dadaf84 (patch) | |
tree | 6687e0b22214522dc84932a0b7ea9b3f4a02d252 /dev-util/cvs | |
parent | Stable for sparc (required for xorg-x11-6.8.0-r1). (Manifest recommit) (diff) | |
download | gentoo-2-3465b899353c622c15452bd00bc40b352dadaf84.tar.gz gentoo-2-3465b899353c622c15452bd00bc40b352dadaf84.tar.bz2 gentoo-2-3465b899353c622c15452bd00bc40b352dadaf84.zip |
feature release with kerberos and pam stuff added, currently p.masked
Diffstat (limited to 'dev-util/cvs')
-rw-r--r-- | dev-util/cvs/ChangeLog | 11 | ||||
-rw-r--r-- | dev-util/cvs/cvs-1.12.9.ebuild | 67 | ||||
-rw-r--r-- | dev-util/cvs/files/cvs.pam | 3 | ||||
-rw-r--r-- | dev-util/cvs/files/digest-cvs-1.12.9 | 4 |
4 files changed, 84 insertions, 1 deletions
diff --git a/dev-util/cvs/ChangeLog b/dev-util/cvs/ChangeLog index 9714770f7deb..2a785d81b762 100644 --- a/dev-util/cvs/ChangeLog +++ b/dev-util/cvs/ChangeLog @@ -1,6 +1,15 @@ # ChangeLog for dev-util/cvs # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cvs/ChangeLog,v 1.61 2004/09/20 00:51:19 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/cvs/ChangeLog,v 1.62 2004/09/25 21:04:54 scandium Exp $ + +*cvs-1.12.9 (25 Sep 2004) + + 25 Sep 2004; Rainer Groesslinger <scandium@gentoo.org> +files/cvs.pam, + +cvs-1.12.9.ebuild: + Added crypt and kerberos USE flag, fixes bug #61279 and #32480 + (Thanks to Holger Thon <ht_gentoo04@arcor.de>) + Added pam support, based on the ebuild of bug #56349 + by Nahor <nahor+gentoo@bravobrava.com> 20 Sep 2004; Bryan Østergaard,,, <kloeri@gentoo.org> cvs-1.11.17.ebuild: Remove -fPIC, bug 55238. diff --git a/dev-util/cvs/cvs-1.12.9.ebuild b/dev-util/cvs/cvs-1.12.9.ebuild new file mode 100644 index 000000000000..42f1659aa639 --- /dev/null +++ b/dev-util/cvs/cvs-1.12.9.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/cvs/cvs-1.12.9.ebuild,v 1.1 2004/09/25 21:04:54 scandium Exp $ + +DESCRIPTION="Concurrent Versions System - source code revision control tools" +HOMEPAGE="http://www.cvshome.org/" + +# scandium@gentoo.org (9th June 2004) +# Recently, upstream changed the directory structure for the files. +# The directory numbers in the middle differ for every release/file, so +# unfortunatly they have to be corrected with every new release. +SRC_URI="http://ccvs.cvshome.org/files/documents/19/200/${P}.tar.bz2 + doc? ( http://ccvs.cvshome.org/files/documents/19/205/cederqvist-${PV}.html.tar.bz2 + http://ccvs.cvshome.org/files/documents/19/207/cederqvist-${PV}.pdf + http://ccvs.cvshome.org/files/documents/19/206/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/ncurses-5.1 + >=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 +} diff --git a/dev-util/cvs/files/cvs.pam b/dev-util/cvs/files/cvs.pam new file mode 100644 index 000000000000..16dd7319c758 --- /dev/null +++ b/dev-util/cvs/files/cvs.pam @@ -0,0 +1,3 @@ +#%PAM-1.0 +auth required pam_stack.so service=system-auth +account required pam_stack.so service=system-auth diff --git a/dev-util/cvs/files/digest-cvs-1.12.9 b/dev-util/cvs/files/digest-cvs-1.12.9 new file mode 100644 index 000000000000..344f67789013 --- /dev/null +++ b/dev-util/cvs/files/digest-cvs-1.12.9 @@ -0,0 +1,4 @@ +MD5 41396dfe38c3c9f80de98ea53e6d55aa cvs-1.12.9.tar.bz2 2695064 +MD5 b49e2f478e7215cff6bc4db025188e98 cederqvist-1.12.9.html.tar.bz2 120669 +MD5 56049b827724b1570bf5b2364fd34186 cederqvist-1.12.9.pdf 1141633 +MD5 d1d2ab22b32bcb77cf07fcb3be7ac40d cederqvist-1.12.9.ps 1149072 |