blob: c34dbf81c370d97396f1b16a358ac89e5dc76c30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/eclipse-cdt-bin/eclipse-cdt-bin-20020704.ebuild,v 1.8 2003/09/06 17:28:13 karltk Exp $
S=${WORKDIR}/eclipse
DESCRIPTION="C/C++ Development Tools for Eclipse"
HOMEPAGE="http://www.eclipse.org"
SRC_URI="http://download.eclipse.org/tools/cdt/downloads/cdt/20020704-CDT-initial.zip"
SLOT="2"
LICENSE="CPL-1.0"
KEYWORDS="x86 sparc "
DEPEND="=dev-util/eclipse-platform-bin-2.0*"
src_unpack() {
mkdir ${S}
cd ${S}
unpack 20020704-CDT-initial.zip
}
src_install () {
dodir /opt/eclipse/plugins
cp -dpR org.eclipse.cdt* ${D}/opt/eclipse/plugins/
dohtml org.eclipse.cdt.core/about.html
}
|