diff options
author | Jeroen Roovers <jer@gentoo.org> | 2013-01-09 16:09:08 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2013-01-09 16:09:08 +0000 |
commit | e992e8887f1ce3ee962d63cf35d9daaacc4dcc1b (patch) | |
tree | 4ff4fb63320297c5b7a5abd84279f97a6ace0f3e /dev-vcs/cssc | |
parent | Mask kgcc64-4.7 too. (diff) | |
download | gentoo-2-e992e8887f1ce3ee962d63cf35d9daaacc4dcc1b.tar.gz gentoo-2-e992e8887f1ce3ee962d63cf35d9daaacc4dcc1b.tar.bz2 gentoo-2-e992e8887f1ce3ee962d63cf35d9daaacc4dcc1b.zip |
Old.
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'dev-vcs/cssc')
-rw-r--r-- | dev-vcs/cssc/ChangeLog | 7 | ||||
-rw-r--r-- | dev-vcs/cssc/cssc-1.3.0.ebuild | 41 |
2 files changed, 5 insertions, 43 deletions
diff --git a/dev-vcs/cssc/ChangeLog b/dev-vcs/cssc/ChangeLog index 67b0791ccbe3..debcbbcd381e 100644 --- a/dev-vcs/cssc/ChangeLog +++ b/dev-vcs/cssc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-vcs/cssc -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cssc/ChangeLog,v 1.20 2012/11/21 11:25:55 ago Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cssc/ChangeLog,v 1.21 2013/01/09 16:09:07 jer Exp $ + + 09 Jan 2013; Jeroen Roovers <jer@gentoo.org> -cssc-1.3.0.ebuild: + Old. 21 Nov 2012; Agostino Sarubbo <ago@gentoo.org> cssc-1.3.0-r1.ebuild: Stable for x86, wrt bug #441320 diff --git a/dev-vcs/cssc/cssc-1.3.0.ebuild b/dev-vcs/cssc/cssc-1.3.0.ebuild deleted file mode 100644 index 8217f8e08c19..000000000000 --- a/dev-vcs/cssc/cssc-1.3.0.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2012 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.6 2012/11/21 07:09:00 jer 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" -} |