diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-09-01 10:26:07 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-09-01 10:26:07 +0000 |
commit | 5de1cdbcbd884a69ed03699064cec10bb59df5c9 (patch) | |
tree | 00b31e692c9e30eb90ca293b217cf17d7d52f0db /app-editors | |
parent | Bump to 3.10.5. Patches by manny15. Closes #275748 and adds ~amd64 keyword. (diff) | |
download | gentoo-2-5de1cdbcbd884a69ed03699064cec10bb59df5c9.tar.gz gentoo-2-5de1cdbcbd884a69ed03699064cec10bb59df5c9.tar.bz2 gentoo-2-5de1cdbcbd884a69ed03699064cec10bb59df5c9.zip |
Bump to 2.00, fixes #281298
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/scite/ChangeLog | 7 | ||||
-rw-r--r-- | app-editors/scite/scite-2.00.ebuild | 77 |
2 files changed, 83 insertions, 1 deletions
diff --git a/app-editors/scite/ChangeLog b/app-editors/scite/ChangeLog index 1c51d69f4b26..db5b1ff677c3 100644 --- a/app-editors/scite/ChangeLog +++ b/app-editors/scite/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-editors/scite # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.86 2009/08/02 23:27:22 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.87 2009/09/01 10:26:07 patrick Exp $ + +*scite-2.00 (01 Sep 2009) + + 01 Sep 2009; Patrick Lauer <patrick@gentoo.org> +scite-2.00.ebuild: + Bump to 2.00, fixes #281298 *scite-1.79 (02 Aug 2009) diff --git a/app-editors/scite/scite-2.00.ebuild b/app-editors/scite/scite-2.00.ebuild new file mode 100644 index 000000000000..1ed1d7cd60cd --- /dev/null +++ b/app-editors/scite/scite-2.00.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-2.00.ebuild,v 1.1 2009/09/01 10:26:07 patrick Exp $ + +inherit toolchain-funcs eutils + +MY_PV=${PV//./} +DESCRIPTION="A very powerful editor for programmers" +HOMEPAGE="http://scintilla.sourceforge.net/SciTE.html" +SRC_URI="mirror://sourceforge/scintilla/${PN}${MY_PV}.tgz" + +LICENSE="Scintilla" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd" +IUSE="lua" + +RDEPEND=">=x11-libs/gtk+-2 + lua? ( >=dev-lang/lua-5 )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + >=sys-apps/sed-4" + +S="${WORKDIR}/${PN}/gtk" + +src_unpack() { + unpack ${A} + cd "${WORKDIR}/scintilla/gtk" + sed -i makefile \ + -e "s#^CXXFLAGS=#CXXFLAGS=${CXXFLAGS} #" \ + -e "s#^\(CXXFLAGS=.*\)-Os#\1#" \ + -e "s#^CC =\(.*\)#CC = $(tc-getCXX)#" \ + -e "s#-Os##" \ + || die "error patching makefile" + + cd "${S}" + sed -i makefile \ + -e 's#usr/local#usr#g' \ + -e 's#/gnome/apps/Applications#/applications#' \ + -e "s#^CXXFLAGS=#CXXFLAGS=${CXXFLAGS} #" \ + -e "s#^\(CXXFLAGS=.*\)-Os#\1#" \ + -e "s#^CC =\(.*\)#CC = $(tc-getCXX)#" \ + -e 's#${D}##' \ + -e 's#-g root#-g 0#' \ + -e "s#-Os##" \ + || die "error patching makefile" + cd "${WORKDIR}" + epatch "${FILESDIR}/${PN}-1.79-install.patch" + epatch "${FILESDIR}/${PN}-1.79-no-lua.patch" +} + +src_compile() { + make -C ../../scintilla/gtk || die "prep make failed" + if use lua; then + emake || die "make failed" + else + emake NO_LUA=1 || die "make failed" + fi +} + +src_install() { + dodir /usr/bin + dodir /usr/share/{pixmaps,applications} + + make prefix="${D}/usr" install || die + + # we have to keep this because otherwise it'll break upgrading + mv "${D}/usr/bin/SciTE" "${D}/usr/bin/scite" + dosym /usr/bin/scite /usr/bin/SciTE + + # replace .desktop file with our own working version + insinto /usr/share/applications + rm -f "${D}/usr/share/applications/SciTE.desktop" + doins "${FILESDIR}/scite.desktop" + + doman ../doc/scite.1 + dodoc ../README +} |