Ebuild
May 11, 2011, 20:01
CSSC is the GNU Project's replacement for SCCS
| alpha | amd64 | arm | hppa | ia64 | m68k | mips | ppc | ppc64 | s390 | sh | sparc | x86 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1.3.0 | – | + | – | – | – | – | – | – | – | – | – | – | + |
DESCRIZIONE DEL PACCHETTO:
CSSC is the GNU Project's replacement for SCCS
Categoria:
CHANGELOG
# ChangeLog for dev-vcs/cssc # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/cssc/ChangeLog,v 1.13 2011/05/19 22:19:16 jer Exp $ 19 May 2011; Jeroen Roovers (jer) -cssc-1.2.0.ebuild: DEL 11 May 2011; Christoph Mende (angelos) cssc-1.3.0.ebuild: Stable on amd64 wrt bug #363021 11 May 2011; Thomas Kahle (tomka) cssc-1.3.0.ebuild: x86 stable per bug 363021 04 May 2011; Jeroen Roovers (jer) cssc-1.3.0.ebuild: Run tests only when UID != 0 (bug #363113). 11 Apr 2011; Jeroen Roovers (jer) -cssc-1.0.1.ebuild: Officially remove the old (bug #312089). 08 Jan 2011; Jeroen Roovers (jer) +cssc-1.2.0.ebuild: Oops, should not have removed that. 08 Jan 2011; Jeroen Roovers (jer) -cssc-1.2.0.ebuild, cssc-1.3.0.ebuild: Do not use valgrind even if installed (bug #351010). *cssc-1.3.0 (07 Nov 2010) 07 Nov 2010; Jeroen Roovers (jer) cssc-1.0.1.ebuild, cssc-1.2.0.ebuild, +cssc-1.3.0.ebuild: Version bump. Do not set DEPEND. 07 Jun 2010; Christoph Mende (angelos) cssc-1.2.0.ebuild: amd64 stable (bug #305659) 30 Mar 2010; Jeroen Roovers (jer) cssc-1.2.0.ebuild: Update HOMEPAGE. 08 Mar 2010; Fabian Groffen (grobian) +cssc-1.0.1.ebuild: Restore cssc-1.0.1, it's the only version that compiles for *-macos (and seems to have an official release). 26 Feb 2010; Pawel Hajdan jr (phajdan.jr) cssc-1.2.0.ebuild: x86 stable wrt bug #305659 26 Feb 2010; Tomáš Chvátal (scarabeus) cssc-1.2.0.ebuild: QA: add missing dies where they are supposed to be. So bug #305659 can proceed. 17 Feb 2010; Jeroen Roovers (jer) metadata.xml: Maintain. 03 Feb 2010; Fabian Groffen (grobian) cssc-1.0.1.ebuild: Marked ~x86-macos and ~ppc-macos, 1.2.0 is masked due to compilation failures. 31 Jan 2010; Jeroen Roovers (jer) cssc-1.2.0.ebuild: Fix LICENSE. 15 Jan 2010; Christian Faulhammer (fauli) cssc-1.2.0.ebuild: Transfer Prefix keywords *cssc-1.2.0 (11 Jan 2010) 11 Jan 2010; Jeroen Roovers (jer) +cssc-1.2.0.ebuild: Version bump (bug #300564). 23 Sep 2009; Patrick Lauer (patrick) cssc-1.0.1.ebuild: Remove virtual/libc 18 Apr 2008; Markus Meier (maekke) -cssc-0.15_alpha0.ebuild, cssc-1.0.1.ebuild: x86 stable and drop old, bug #217302 15 Jan 2008; Mark Loeser (halcy0n) cssc-1.0.1.ebuild: Add in RESTRICT=test for bug #85901 14 May 2007; Thilo Bangert (bangert) metadata.xml: add <herd>no-herd</herd> 22 Feb 2007; Piotr Jaroszyński (peper) ChangeLog: Transition to Manifest2. *cssc-1.0.1 (14 Aug 2005) 14 Aug 2005; Daniel Black (dragonheart) +cssc-1.0.1.ebuild: version bump 05 Sep 2004; Daniel Ahlberg (aliz) cssc-0.15_alpha0.ebuild: Added amd64 keyword, closing #58829. 05 Sep 2004; Sven Wegener (swegener) : Fixed ChangeLog header. 01 Jul 2004; Jeremy Huddleston (eradicator) cssc-0.15_alpha0.ebuild: virtual/glibc -> virtual/libc *cssc-0.15_alpha0 (09 Feb 2003) 09 Feb 2003; Bruce A. Locke <blocke@shivan.org> cssc-0.15_alpha0.ebuild: Initial version. Ebuild originally submitted by: Gilles G <gilles_gros@yahoo.com>
BUGS
Nessun bug trovato
USE FLAGS
Nessuna Use Flag
CODICE SORGENTE
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cssc/cssc-1.3.0.ebuild,v 1.5
2011/05/11 19:40:53 angelos Exp $
EAPI="2"
DESCRIPTION="CSSC is the GNU Project's replacement for SCCS"
SRC_URI="mirror://gnu/${PN}/CSSC-${PV}.tar.gz"
HOMEPAGE="http://www.gnu.org/software/cssc/"
SLOT="0"
LICENSE="GPL-3"
S=${WORKDIR}/CSSC-${PV}
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE=""
src_prepare() {
# The large test takes a long time
sed -i tests/Makefile.* \
-e 's|\([[:space:]]\)test-large |\1|g' || die "sed failed"
}
src_configure() {
econf --enable-binary --without-valgrind
}
src_compile() {
emake all || die "emake failed"
}
src_test() {
if [[ ${UID} = 0 ]]; then
einfo "Tests will not be run as root"
else
emake check || die
fi
}
src_install () {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc README NEWS ChangeLog AUTHORS || die "dodoc failed"
}