diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2006-09-30 23:22:30 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2006-09-30 23:22:30 +0000 |
commit | 76e27f2fc10666dab0a456b0dea34e97b74f5a43 (patch) | |
tree | 07681be35585daffb4845426eb10a8405ac3de89 /dev-util/cvs/cvs-1.11.22.1.ebuild | |
parent | Masking upcoming version of pythonmagick since it depends on masked dev-libs/... (diff) | |
download | gentoo-2-76e27f2fc10666dab0a456b0dea34e97b74f5a43.tar.gz gentoo-2-76e27f2fc10666dab0a456b0dea34e97b74f5a43.tar.bz2 gentoo-2-76e27f2fc10666dab0a456b0dea34e97b74f5a43.zip |
Version bumps, 1.12.13.1 should now fix the zlib issues from bug 124733.
(Portage version: 2.1.2_pre2)
Diffstat (limited to 'dev-util/cvs/cvs-1.11.22.1.ebuild')
-rw-r--r-- | dev-util/cvs/cvs-1.11.22.1.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/dev-util/cvs/cvs-1.11.22.1.ebuild b/dev-util/cvs/cvs-1.11.22.1.ebuild new file mode 100644 index 000000000000..6623ed9caa5a --- /dev/null +++ b/dev-util/cvs/cvs-1.11.22.1.ebuild @@ -0,0 +1,57 @@ +# 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.11.22.1.ebuild,v 1.1 2006/09/30 23:22:30 robbat2 Exp $ + +DESCRIPTION="Concurrent Versions System - source code revision control tools" +HOMEPAGE="http://www.cvshome.org/" +SRC_URI="mirror://gnu/non-gnu/cvs/source/nightly-snapshots/stable/${P}.tar.bz2 + doc? ( mirror://gnu/non-gnu/cvs/source/nightly-snapshots/stable/cederqvist-${PV}.html.bz2 + mirror://gnu/non-gnu/cvs/source/nightly-snapshots/stable/cederqvist-${PV}.pdf + mirror://gnu/non-gnu/cvs/source/nightly-snapshots/stable/cederqvist-${PV}.ps )" + +LICENSE="GPL-2 LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="doc emacs" + +DEPEND=">=sys-libs/zlib-1.1.4" + +src_unpack() { + unpack ${A} + # remove a useless binary + einfo "Removing a compiled binary" + find ${S} -type f -name getdate -exec rm \{} \; +} + +src_compile() { + econf --with-tmpdir=/tmp || 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 +} + +src_test() { + einfo "FEATURES=\"maketest\" has been disabled for dev-util/cvs" +} |