blob: 1eaef3a46bf1e403c40582720970e905b021ce97 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc-ide/fpc-ide-2.0.2.ebuild,v 1.1 2005/12/17 01:40:19 carlo Exp $
S="${WORKDIR}/fpc"
DESCRIPTION="Free Pascal Compiler Integrated Development Environment"
HOMEPAGE="http://www.freepascal.org/"
SRC_URI="mirror://sourceforge/freepascal/fpc-${PV}.source.tar.gz"
SLOT="0"
LICENSE="GPL-2 LGPL-2.1 LGPL-2.1-FPC"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND="~dev-lang/fpc-2.0.2
sys-libs/gpm"
src_compile () {
make -j1 -C ide all || die "make ide failed!"
}
src_install () {
make ide_install INSTALL_PREFIX=${D}usr || die "make ide_install failed!"
}
|