public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-editors/scite: scite-2.22.ebuild ChangeLog
@ 2010-11-04 10:16 Krzysztof Pawlik (nelchael)
  0 siblings, 0 replies; 5+ messages in thread
From: Krzysztof Pawlik (nelchael) @ 2010-11-04 10:16 UTC (permalink / raw
  To: gentoo-commits

nelchael    10/11/04 10:16:53

  Modified:             ChangeLog
  Added:                scite-2.22.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.1.9.24/cvs/Linux x86_64)

Revision  Changes    Path
1.103                app-editors/scite/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?rev=1.103&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?rev=1.103&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?r1=1.102&r2=1.103

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- ChangeLog	8 Oct 2010 12:36:58 -0000	1.102
+++ ChangeLog	4 Nov 2010 10:16:53 -0000	1.103
@@ -1,6 +1,11 @@
 # ChangeLog for app-editors/scite
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.102 2010/10/08 12:36:58 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.103 2010/11/04 10:16:53 nelchael Exp $
+
+*scite-2.22 (04 Nov 2010)
+
+  04 Nov 2010; Krzysztof Pawlik <nelchael@gentoo.org> +scite-2.22.ebuild:
+  Version bump.
 
 *scite-2.21 (08 Oct 2010)
 



1.1                  app-editors/scite/scite-2.22.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-2.22.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-2.22.ebuild?rev=1.1&content-type=text/plain

Index: scite-2.22.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-2.22.ebuild,v 1.1 2010/11/04 10:16:53 nelchael Exp $

inherit toolchain-funcs eutils

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="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 "${WORKDIR}/scite/gtk"
	sed -i makefile \
		-e "s#-rdynamic#-rdynamic ${LDFLAGS}#" \
		|| 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}-2.12-install.patch"
	epatch "${FILESDIR}/${PN}-2.12-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
}






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-editors/scite: scite-2.22.ebuild ChangeLog
@ 2010-12-12 18:58 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 5+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-12-12 18:58 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/12/12 18:58:08

  Modified:             scite-2.22.ebuild ChangeLog
  Log:
  Stable on amd64 wrt bug #348492
  
  (Portage version: 2.1.9.25/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  app-editors/scite/scite-2.22.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-2.22.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-2.22.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-2.22.ebuild?r1=1.1&r2=1.2

Index: scite-2.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/scite-2.22.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- scite-2.22.ebuild	4 Nov 2010 10:16:53 -0000	1.1
+++ scite-2.22.ebuild	12 Dec 2010 18:58:08 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-2.22.ebuild,v 1.1 2010/11/04 10:16:53 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-2.22.ebuild,v 1.2 2010/12/12 18:58:08 hwoarang Exp $
 
 inherit toolchain-funcs eutils
 
@@ -11,7 +11,7 @@
 
 LICENSE="Scintilla"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
 IUSE="lua"
 
 RDEPEND=">=x11-libs/gtk+-2



1.105                app-editors/scite/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?rev=1.105&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?rev=1.105&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?r1=1.104&r2=1.105

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog	12 Dec 2010 11:02:54 -0000	1.104
+++ ChangeLog	12 Dec 2010 18:58:08 -0000	1.105
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/scite
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.104 2010/12/12 11:02:54 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.105 2010/12/12 18:58:08 hwoarang Exp $
+
+  12 Dec 2010; Markos Chandras <hwoarang@gentoo.org> scite-2.22.ebuild:
+  Stable on amd64 wrt bug #348492
 
 *scite-2.23 (12 Dec 2010)
 






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-editors/scite: scite-2.22.ebuild ChangeLog
@ 2010-12-13 20:20 Thomas Kahle (tomka)
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Kahle (tomka) @ 2010-12-13 20:20 UTC (permalink / raw
  To: gentoo-commits

tomka       10/12/13 20:20:09

  Modified:             scite-2.22.ebuild ChangeLog
  Log:
  x86 stable per bug 348492
  
  (Portage version: 2.1.9.25/cvs/Linux i686)

Revision  Changes    Path
1.3                  app-editors/scite/scite-2.22.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-2.22.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-2.22.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-2.22.ebuild?r1=1.2&r2=1.3

Index: scite-2.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/scite-2.22.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- scite-2.22.ebuild	12 Dec 2010 18:58:08 -0000	1.2
+++ scite-2.22.ebuild	13 Dec 2010 20:20:09 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-2.22.ebuild,v 1.2 2010/12/12 18:58:08 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-2.22.ebuild,v 1.3 2010/12/13 20:20:09 tomka Exp $
 
 inherit toolchain-funcs eutils
 
@@ -11,7 +11,7 @@
 
 LICENSE="Scintilla"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc ~sparc x86 ~x86-fbsd"
 IUSE="lua"
 
 RDEPEND=">=x11-libs/gtk+-2



1.106                app-editors/scite/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?rev=1.106&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?rev=1.106&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?r1=1.105&r2=1.106

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog	12 Dec 2010 18:58:08 -0000	1.105
+++ ChangeLog	13 Dec 2010 20:20:09 -0000	1.106
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/scite
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.105 2010/12/12 18:58:08 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.106 2010/12/13 20:20:09 tomka Exp $
+
+  13 Dec 2010; Thomas Kahle <tomka@gentoo.org> scite-2.22.ebuild:
+  x86 stable per bug 348492
 
   12 Dec 2010; Markos Chandras <hwoarang@gentoo.org> scite-2.22.ebuild:
   Stable on amd64 wrt bug #348492






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-editors/scite: scite-2.22.ebuild ChangeLog
@ 2011-01-03 14:58 Michael Weber (xmw)
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Weber (xmw) @ 2011-01-03 14:58 UTC (permalink / raw
  To: gentoo-commits

xmw         11/01/03 14:58:05

  Modified:             scite-2.22.ebuild ChangeLog
  Log:
  sparc stable (bug 348492)
  
  (Portage version: 2.1.9.25/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  app-editors/scite/scite-2.22.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-2.22.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-2.22.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-2.22.ebuild?r1=1.3&r2=1.4

Index: scite-2.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/scite-2.22.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- scite-2.22.ebuild	13 Dec 2010 20:20:09 -0000	1.3
+++ scite-2.22.ebuild	3 Jan 2011 14:58:05 -0000	1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-2.22.ebuild,v 1.3 2010/12/13 20:20:09 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-2.22.ebuild,v 1.4 2011/01/03 14:58:05 xmw Exp $
 
 inherit toolchain-funcs eutils
 
@@ -11,7 +11,7 @@
 
 LICENSE="Scintilla"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc sparc x86 ~x86-fbsd"
 IUSE="lua"
 
 RDEPEND=">=x11-libs/gtk+-2



1.107                app-editors/scite/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?rev=1.107&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?rev=1.107&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?r1=1.106&r2=1.107

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- ChangeLog	13 Dec 2010 20:20:09 -0000	1.106
+++ ChangeLog	3 Jan 2011 14:58:05 -0000	1.107
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/scite
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.106 2010/12/13 20:20:09 tomka Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.107 2011/01/03 14:58:05 xmw Exp $
+
+  03 Jan 2011; Michael Weber <xmw@gentoo.org> scite-2.22.ebuild:
+  sparc stable (bug 348492)
 
   13 Dec 2010; Thomas Kahle <tomka@gentoo.org> scite-2.22.ebuild:
   x86 stable per bug 348492






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-editors/scite: scite-2.22.ebuild ChangeLog
@ 2011-01-13 22:39 Brent Baude (ranger)
  0 siblings, 0 replies; 5+ messages in thread
From: Brent Baude (ranger) @ 2011-01-13 22:39 UTC (permalink / raw
  To: gentoo-commits

ranger      11/01/13 22:39:36

  Modified:             scite-2.22.ebuild ChangeLog
  Log:
  stable ppc, bug 348492
  
  (Portage version: 2.1.9.25/cvs/Linux ppc64)

Revision  Changes    Path
1.5                  app-editors/scite/scite-2.22.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-2.22.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-2.22.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-2.22.ebuild?r1=1.4&r2=1.5

Index: scite-2.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/scite-2.22.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- scite-2.22.ebuild	3 Jan 2011 14:58:05 -0000	1.4
+++ scite-2.22.ebuild	13 Jan 2011 22:39:36 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-2.22.ebuild,v 1.4 2011/01/03 14:58:05 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-2.22.ebuild,v 1.5 2011/01/13 22:39:36 ranger Exp $
 
 inherit toolchain-funcs eutils
 
@@ -11,7 +11,7 @@
 
 LICENSE="Scintilla"
 SLOT="0"
-KEYWORDS="amd64 ~ppc sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc sparc x86 ~x86-fbsd"
 IUSE="lua"
 
 RDEPEND=">=x11-libs/gtk+-2



1.108                app-editors/scite/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?rev=1.108&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?rev=1.108&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?r1=1.107&r2=1.108

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- ChangeLog	3 Jan 2011 14:58:05 -0000	1.107
+++ ChangeLog	13 Jan 2011 22:39:36 -0000	1.108
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/scite
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.107 2011/01/03 14:58:05 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.108 2011/01/13 22:39:36 ranger Exp $
+
+  13 Jan 2011; Brent Baude <ranger@gentoo.org> scite-2.22.ebuild:
+  stable ppc, bug 348492
 
   03 Jan 2011; Michael Weber <xmw@gentoo.org> scite-2.22.ebuild:
   sparc stable (bug 348492)






^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-01-13 22:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-12 18:58 [gentoo-commits] gentoo-x86 commit in app-editors/scite: scite-2.22.ebuild ChangeLog Markos Chandras (hwoarang)
  -- strict thread matches above, loose matches on Subject: below --
2011-01-13 22:39 Brent Baude (ranger)
2011-01-03 14:58 Michael Weber (xmw)
2010-12-13 20:20 Thomas Kahle (tomka)
2010-11-04 10:16 Krzysztof Pawlik (nelchael)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox