summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-embedded/sdcc/sdcc-2.5.0.ebuild')
-rw-r--r--dev-embedded/sdcc/sdcc-2.5.0.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/dev-embedded/sdcc/sdcc-2.5.0.ebuild b/dev-embedded/sdcc/sdcc-2.5.0.ebuild
deleted file mode 100644
index 947b6f4a6bcf..000000000000
--- a/dev-embedded/sdcc/sdcc-2.5.0.ebuild
+++ /dev/null
@@ -1,45 +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/sdcc-2.5.0.ebuild,v 1.4 2006/05/06 10:52:03 calchan Exp $
-
-DESCRIPTION="Small device C compiler (for various microprocessors)"
-HOMEPAGE="http://sdcc.sourceforge.net/"
-SRC_URI="mirror://sourceforge/sdcc/${P}.tar.gz"
-
-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-cvs
- !dev-embedded/sdcc-svn"
-
-S=${WORKDIR}/${PN}
-
-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/${P}/ install || die
- fi
-}