diff options
-rw-r--r-- | dev-lang/fpc-ide/ChangeLog | 8 | ||||
-rw-r--r-- | dev-lang/fpc-ide/fpc-ide-2.0.2.ebuild | 25 | ||||
-rw-r--r-- | dev-lang/fpc-ide/fpc-ide-2.0.4.ebuild | 31 |
3 files changed, 6 insertions, 58 deletions
diff --git a/dev-lang/fpc-ide/ChangeLog b/dev-lang/fpc-ide/ChangeLog index 6a304249a885..dbbca269b0ee 100644 --- a/dev-lang/fpc-ide/ChangeLog +++ b/dev-lang/fpc-ide/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lang/fpc-ide -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc-ide/ChangeLog,v 1.11 2008/10/05 15:29:51 truedfx Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc-ide/ChangeLog,v 1.12 2009/03/14 23:38:40 truedfx Exp $ + + 14 Mar 2009; Harald van Dijk <truedfx@gentoo.org> -fpc-ide-2.0.2.ebuild, + -fpc-ide-2.0.4.ebuild: + Remove older versions *fpc-ide-2.2.2 (05 Oct 2008) diff --git a/dev-lang/fpc-ide/fpc-ide-2.0.2.ebuild b/dev-lang/fpc-ide/fpc-ide-2.0.2.ebuild deleted file mode 100644 index 3c0a0353ebd7..000000000000 --- a/dev-lang/fpc-ide/fpc-ide-2.0.2.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# 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.2 2007/07/13 06:25:50 mr_bones_ 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!" -} diff --git a/dev-lang/fpc-ide/fpc-ide-2.0.4.ebuild b/dev-lang/fpc-ide/fpc-ide-2.0.4.ebuild deleted file mode 100644 index e04a0dd69c69..000000000000 --- a/dev-lang/fpc-ide/fpc-ide-2.0.4.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2006 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.4.ebuild,v 1.2 2006/09/22 08:26:20 truedfx Exp $ - -PV_BIN="2.0.4" -S="${WORKDIR}/fpcbuild_${PV}_exp/fpcsrc/ide" - -HOMEPAGE="http://www.freepascal.org/" -DESCRIPTION="Free Pascal Compiler Integrated Development Environment" -SRC_URI="mirror://sourceforge/freepascal/fpcbuild-${PV}.tar.gz" - -SLOT="0" -LICENSE="GPL-2 LGPL-2.1 LGPL-2.1-FPC" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" -IUSE="" - -DEPEND="~dev-lang/fpc-${PV}" - -src_unpack() { - unpack ${A} || die "Unpacking ${A} failed!" - - find "${WORKDIR}" -name Makefile -exec sed -i -e 's/ -Xs / /g' {} + || die -} - -src_compile() { - emake -j1 || die "make failed" -} - -src_install() { - emake -j1 INSTALL_PREFIX="${D}"usr install || die "make install failed" -} |