summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Dupeyron <calchan@gentoo.org>2006-06-05 18:35:12 +0000
committerDenis Dupeyron <calchan@gentoo.org>2006-06-05 18:35:12 +0000
commit5b5af8787983521f071c4ba2180f74cfcd2aa2f2 (patch)
treeafc02dbe3e063fa405845e034c8cdbd3fcb26df1 /dev-embedded/sdcc-cvs/sdcc-cvs-2.4.0-r1.ebuild
parentCleanup old files. (diff)
downloadgentoo-2-5b5af8787983521f071c4ba2180f74cfcd2aa2f2.tar.gz
gentoo-2-5b5af8787983521f071c4ba2180f74cfcd2aa2f2.tar.bz2
gentoo-2-5b5af8787983521f071c4ba2180f74cfcd2aa2f2.zip
Removing sdcc-cvs as announced on 2006-05-06.
Diffstat (limited to 'dev-embedded/sdcc-cvs/sdcc-cvs-2.4.0-r1.ebuild')
-rw-r--r--dev-embedded/sdcc-cvs/sdcc-cvs-2.4.0-r1.ebuild50
1 files changed, 0 insertions, 50 deletions
diff --git a/dev-embedded/sdcc-cvs/sdcc-cvs-2.4.0-r1.ebuild b/dev-embedded/sdcc-cvs/sdcc-cvs-2.4.0-r1.ebuild
deleted file mode 100644
index 046c23b36dd2..000000000000
--- a/dev-embedded/sdcc-cvs/sdcc-cvs-2.4.0-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc-cvs/sdcc-cvs-2.4.0-r1.ebuild,v 1.8 2006/05/13 04:27:16 dragonheart Exp $
-
-
-ECVS_SERVER="sdcc.cvs.sourceforge.net:/cvsroot/sdcc"
-ECVS_MODULE="sdcc"
-
-inherit cvs
-
-S=${WORKDIR}/${ECVS_MODULE}
-DESCRIPTION="Small device C compiler (for various microprocessors, sources from CVS)"
-HOMEPAGE="http://sdcc.sourceforge.net/"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="doc"
-
-DEPEND="virtual/libc
- sys-apps/gawk
- sys-devel/libtool
- sys-apps/grep
- sys-devel/bison
- doc? ( dev-tex/latex2html
- virtual/tetex
- >=app-office/lyx-1.3.4
- sys-apps/sed )"
-
-RDEPEND="virtual/libc
- !dev-embedded/sdcc
- !dev-embedded/sdcc-svn"
-
-src_compile() {
- econf || die "Configure failed"
- emake || die "Make failed"
- if use doc
- then
- emake -C doc || die "Making documentation failed"
- fi
-}
-
-src_install() {
- emake DESTDIR=${D} install || die "Make install failed"
- dodoc ChangeLog doc/README.txt doc/libdoc.txt doc/INSTALL.txt
- if use doc
- then
- emake -C doc docdir=${D}/usr/share/doc/${PF} install || die "Make install on documentation failed"
- fi
-}