diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-02-26 00:02:22 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-02-26 00:02:22 +0000 |
commit | 16bd0a424e8d830369ce0f1d2890a7958e4fdb9b (patch) | |
tree | fbf88437a1251d31541b6a96817b06a5dcae3c87 /x11-libs | |
parent | new version (diff) | |
download | gentoo-2-16bd0a424e8d830369ce0f1d2890a7958e4fdb9b.tar.gz gentoo-2-16bd0a424e8d830369ce0f1d2890a7958e4fdb9b.tar.bz2 gentoo-2-16bd0a424e8d830369ce0f1d2890a7958e4fdb9b.zip |
tidy; add IUSE
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/fxscintilla/ChangeLog | 6 | ||||
-rw-r--r-- | x11-libs/fxscintilla/fxscintilla-1.55.ebuild | 17 |
2 files changed, 11 insertions, 12 deletions
diff --git a/x11-libs/fxscintilla/ChangeLog b/x11-libs/fxscintilla/ChangeLog index 3ee1c38ef9cb..769bccc63d09 100644 --- a/x11-libs/fxscintilla/ChangeLog +++ b/x11-libs/fxscintilla/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-libs/fxscintilla # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/fxscintilla/ChangeLog,v 1.1 2004/02/25 19:12:30 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/fxscintilla/ChangeLog,v 1.2 2004/02/26 00:02:22 mr_bones_ Exp $ + + 25 Feb 2004; Michael Sterrett <mr_bones_@gentoo.org> + fxscintilla-1.55.ebuild: + tidy; add IUSE *fxscintilla-1.55 (25 Feb 2004) diff --git a/x11-libs/fxscintilla/fxscintilla-1.55.ebuild b/x11-libs/fxscintilla/fxscintilla-1.55.ebuild index 291ed804af97..77de0c4dc4a1 100644 --- a/x11-libs/fxscintilla/fxscintilla-1.55.ebuild +++ b/x11-libs/fxscintilla/fxscintilla-1.55.ebuild @@ -1,24 +1,19 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/fxscintilla/fxscintilla-1.55.ebuild,v 1.3 2004/02/25 23:44:04 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/fxscintilla/fxscintilla-1.55.ebuild,v 1.4 2004/02/26 00:02:22 mr_bones_ Exp $ -S=${WORKDIR}/${P} -DESCRIPTION="Scintilla is a free source code editing component for the FOX-Toolkit" -SRC_URI="http://savannah.nongnu.org/download/fxscintilla/${P}.tar.gz" +DESCRIPTION="A free source code editing component for the FOX-Toolkit" HOMEPAGE="http://www.nongnu.org/fxscintilla" +SRC_URI="http://savannah.nongnu.org/download/fxscintilla/${P}.tar.gz" SLOT="0" KEYWORDS="~x86 ~sparc " LICENSE="GPL-2" +IUSE="" -DEPEND="fox" - -src_compile() { - econf || die - emake || die "Parallel Make Failed" -} +DEPEND="x11-libs/fox" src_install () { - DESTDIR=${D} emake install || die + make DESTDIR="${D}" install || die "make install failed" dodoc README INSTALL } |