Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 435272 Details for
Bug 583204
app-editors/scite-3.6.5-r1 with gtk3 Support as default
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
scite-3.6.5-r1 update after some tests
scite-3.6.5-r1.ebuild (text/plain), 2.93 KB, created by
Ervin Peters
on 2016-05-24 17:51:11 UTC
(
hide
)
Description:
scite-3.6.5-r1 update after some tests
Filename:
MIME Type:
Creator:
Ervin Peters
Created:
2016-05-24 17:51:11 UTC
Size:
2.93 KB
patch
obsolete
># Copyright 1999-2016 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Id$ > >EAPI="6" > >inherit toolchain-funcs eutils flag-o-matic > >MY_PV=${PV//./} >DESCRIPTION="A very powerful editor for programmers" >HOMEPAGE="http://www.scintilla.org/SciTE.html" >SRC_URI="mirror://sourceforge/scintilla/${PN}${MY_PV}.tgz" > >LICENSE="HPND lua? ( MIT )" >SLOT="0" >KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux" >IUSE="lua gtk2 gnome" > >RDEPEND="dev-libs/glib:= > x11-libs/cairo > >=x11-libs/gtk+-2.24:2= > !gtk2? ( gnome? ( x11-libs/gtk+:3= ) ) > x11-libs/gdk-pixbuf > x11-libs/pango > lua? ( >=dev-lang/lua-5:= )" > >DEPEND="${RDEPEND} > virtual/pkgconfig" > >S="${WORKDIR}/${PN}/gtk" > >emake_pars="" > >pkg_setup() >{ > einfo "SCiTE now defaults to use gtk3+. If you'd like to use gtk2 then set the gtk2 useflag to force the use of gtk2+"; > > if use gtk2 ; then > einfo "using gtk2" > else > if use gnome ; then > emake_pars="GTK3=1 " > einfo "using gtk3" > else > einfo "using gtk2 (!gnome)" > fi; > fi > if ! use lua; then > emake_pars+="NO_LUA=1 " > fi >} > >src_prepare() { > sed -i "${WORKDIR}/scintilla/gtk/makefile" \ > -e "s#^CXXFLAGS=#CXXFLAGS=${CXXFLAGS} #" \ > -e "s#^\(CXXFLAGS=.*\)-Os#\1#" \ > -e "s#^CC =\(.*\)#CC = $(tc-getCXX)#" \ > -e "s#^CCOMP =\(.*\)#CCOMP = $(tc-getCC)#" \ > -e "s#-Os##" \ > || die "error patching /scintilla/gtk/makefile" > > sed -i "${WORKDIR}/scite/gtk/makefile" \ > -e "s#-rdynamic#-rdynamic ${LDFLAGS}#" \ > || die "error patching /scite/gtk/makefile" > > # add the ebuild suffix as shell type for working with ebuilds > sed -i "${WORKDIR}/scite/src/perl.properties" \ > -e "s#\*.sh;\*.bsh;#\*.ebuild;\*.sh;\*.bsh;#" \ > || die "error patching /scite/src/perl.prperties" > > # repair and enhance the .desktop file > sed -i "${WORKDIR}/scite/gtk/SciTE.desktop" \ > -e "s/^Encoding/#Encoding/" \ > -e "s#text/plain#text/\*;application/xhtml+xml#" \ > -e "s#^Categories=\(.*\)#Categories=Development;#" \ > || die "error patching /scite/gtk/SciTe.desktop" > > sed -i "${S}/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#^CCOMP =\(.*\)#CCOMP = $(tc-getCC)#" \ > -e 's#${D}##' \ > -e 's#-g root#-g 0#' \ > -e "s#-Os##" \ > || die "error patching gtk/makefile" > > # it seems that pwd here is ${S}, but user patches are relative to ${workdir} > # Bug #576162 > cd "${WORKDIR}" > eapply_user >} > >src_compile() { > emake CC="$(tc-getCC)" LD="$(tc-getLD)" \ > LDFLAGS="$(raw-ldflags)" AR="$(tc-getAR)" \ > -C "${WORKDIR}/scintilla/gtk" $emake_pars > emake $emake_pars >} > >src_install() { > dodir /usr/bin > dodir /usr/share/{pixmaps,applications} > > emake DESTDIR="${ED}" install > > # we have to keep this because otherwise it'll break upgrading > mv "${ED}/usr/bin/SciTE" "${ED}/usr/bin/scite" || die > dosym /usr/bin/scite /usr/bin/SciTE > > doman ../doc/scite.1 > dodoc ../README >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 583204
:
434444
|
434488
|
434960
|
434962
|
435158
|
435272
|
435484
|
435570
|
440114