public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-editors/scite: ChangeLog scite-1.76.ebuild
@ 2008-04-05 15:29 Krzysiek Pawlik (nelchael)
  0 siblings, 0 replies; 5+ messages in thread
From: Krzysiek Pawlik (nelchael) @ 2008-04-05 15:29 UTC (permalink / raw
  To: gentoo-commits

nelchael    08/04/05 15:29:54

  Modified:             ChangeLog
  Added:                scite-1.76.ebuild
  Log:
  Version bump.
  (Portage version: 2.1.5_rc1)

Revision  Changes    Path
1.69                 app-editors/scite/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/scite/ChangeLog?rev=1.69&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/scite/ChangeLog?rev=1.69&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/scite/ChangeLog?r1=1.68&r2=1.69

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog	10 Nov 2007 10:53:23 -0000	1.68
+++ ChangeLog	5 Apr 2008 15:29:54 -0000	1.69
@@ -1,6 +1,13 @@
 # ChangeLog for app-editors/scite
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.68 2007/11/10 10:53:23 nelchael Exp $
+# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.69 2008/04/05 15:29:54 nelchael Exp $
+
+*scite-1.76 (05 Apr 2008)
+
+  05 Apr 2008; Krzysiek Pawlik <nelchael@gentoo.org>
+  +files/scite-1.76-install.patch, +files/scite-1.76-no-lua.patch,
+  +scite-1.76.ebuild:
+  Version bump.
 
   10 Nov 2007; Krzysiek Pawlik <nelchael@gentoo.org>
   -files/scite-1.73-install.patch, -scite-1.73.ebuild, scite-1.74.ebuild:



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

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

Index: scite-1.76.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.76.ebuild,v 1.1 2008/04/05 15:29:54 nelchael 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"
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)#" \
		|| 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#' \
		|| die "error patching makefile"
	cd "${WORKDIR}"
	epatch "${FILESDIR}/${P}-install.patch"
	epatch "${FILESDIR}/${P}-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
}



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in app-editors/scite: ChangeLog scite-1.76.ebuild
@ 2008-06-09 20:25 Krzysiek Pawlik (nelchael)
  0 siblings, 0 replies; 5+ messages in thread
From: Krzysiek Pawlik (nelchael) @ 2008-06-09 20:25 UTC (permalink / raw
  To: gentoo-commits

nelchael    08/06/09 20:25:52

  Modified:             ChangeLog scite-1.76.ebuild
  Log:
  Stable on amd64.
  (Portage version: 2.1.5.4)

Revision  Changes    Path
1.70                 app-editors/scite/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/scite/ChangeLog?rev=1.70&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/scite/ChangeLog?rev=1.70&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/scite/ChangeLog?r1=1.69&r2=1.70

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog	5 Apr 2008 15:29:54 -0000	1.69
+++ ChangeLog	9 Jun 2008 20:25:52 -0000	1.70
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/scite
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.69 2008/04/05 15:29:54 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.70 2008/06/09 20:25:52 nelchael Exp $
+
+  09 Jun 2008; Krzysiek Pawlik <nelchael@gentoo.org> scite-1.76.ebuild:
+  Stable on amd64.
 
 *scite-1.76 (05 Apr 2008)
 



1.2                  app-editors/scite/scite-1.76.ebuild

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

Index: scite-1.76.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.76.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- scite-1.76.ebuild	5 Apr 2008 15:29:54 -0000	1.1
+++ scite-1.76.ebuild	9 Jun 2008 20:25:52 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.76.ebuild,v 1.1 2008/04/05 15:29:54 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.76.ebuild,v 1.2 2008/06/09 20:25:52 nelchael Exp $
 
 inherit toolchain-funcs eutils
 
@@ -11,7 +11,7 @@
 
 LICENSE="Scintilla"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~sparc ~x86"
 IUSE="lua"
 
 RDEPEND=">=x11-libs/gtk+-2



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in app-editors/scite: ChangeLog scite-1.76.ebuild
@ 2008-06-11 16:43 Friedrich Oslage (bluebird)
  0 siblings, 0 replies; 5+ messages in thread
From: Friedrich Oslage (bluebird) @ 2008-06-11 16:43 UTC (permalink / raw
  To: gentoo-commits

bluebird    08/06/11 16:43:51

  Modified:             ChangeLog scite-1.76.ebuild
  Log:
  stable on sparc, bug #225663
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.71                 app-editors/scite/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/scite/ChangeLog?rev=1.71&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/scite/ChangeLog?rev=1.71&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/scite/ChangeLog?r1=1.70&r2=1.71

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog	9 Jun 2008 20:25:52 -0000	1.70
+++ ChangeLog	11 Jun 2008 16:43:51 -0000	1.71
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/scite
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.70 2008/06/09 20:25:52 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.71 2008/06/11 16:43:51 bluebird Exp $
+
+  11 Jun 2008; Friedrich Oslage <bluebird@gentoo.org> scite-1.76.ebuild:
+  stable on sparc, bug #225663
 
   09 Jun 2008; Krzysiek Pawlik <nelchael@gentoo.org> scite-1.76.ebuild:
   Stable on amd64.



1.3                  app-editors/scite/scite-1.76.ebuild

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

Index: scite-1.76.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.76.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- scite-1.76.ebuild	9 Jun 2008 20:25:52 -0000	1.2
+++ scite-1.76.ebuild	11 Jun 2008 16:43:51 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.76.ebuild,v 1.2 2008/06/09 20:25:52 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.76.ebuild,v 1.3 2008/06/11 16:43:51 bluebird Exp $
 
 inherit toolchain-funcs eutils
 
@@ -11,7 +11,7 @@
 
 LICENSE="Scintilla"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc sparc ~x86"
 IUSE="lua"
 
 RDEPEND=">=x11-libs/gtk+-2



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in app-editors/scite: ChangeLog scite-1.76.ebuild
@ 2008-06-14  8:36 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 5+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2008-06-14  8:36 UTC (permalink / raw
  To: gentoo-commits

nixnut      08/06/14 08:36:53

  Modified:             ChangeLog scite-1.76.ebuild
  Log:
  Stable on ppc wrt bug 225663
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.72                 app-editors/scite/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/scite/ChangeLog?rev=1.72&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/scite/ChangeLog?rev=1.72&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/scite/ChangeLog?r1=1.71&r2=1.72

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog	11 Jun 2008 16:43:51 -0000	1.71
+++ ChangeLog	14 Jun 2008 08:36:52 -0000	1.72
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/scite
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.71 2008/06/11 16:43:51 bluebird Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.72 2008/06/14 08:36:52 nixnut Exp $
+
+  14 Jun 2008; nixnut <nixnut@gentoo.org> scite-1.76.ebuild:
+  Stable on ppc wrt bug 225663
 
   11 Jun 2008; Friedrich Oslage <bluebird@gentoo.org> scite-1.76.ebuild:
   stable on sparc, bug #225663



1.4                  app-editors/scite/scite-1.76.ebuild

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

Index: scite-1.76.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.76.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- scite-1.76.ebuild	11 Jun 2008 16:43:51 -0000	1.3
+++ scite-1.76.ebuild	14 Jun 2008 08:36:52 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.76.ebuild,v 1.3 2008/06/11 16:43:51 bluebird Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.76.ebuild,v 1.4 2008/06/14 08:36:52 nixnut Exp $
 
 inherit toolchain-funcs eutils
 
@@ -11,7 +11,7 @@
 
 LICENSE="Scintilla"
 SLOT="0"
-KEYWORDS="amd64 ~ppc sparc ~x86"
+KEYWORDS="amd64 ppc sparc ~x86"
 IUSE="lua"
 
 RDEPEND=">=x11-libs/gtk+-2



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in app-editors/scite: ChangeLog scite-1.76.ebuild
@ 2008-06-18  7:55 Christian Faulhammer (opfer)
  0 siblings, 0 replies; 5+ messages in thread
From: Christian Faulhammer (opfer) @ 2008-06-18  7:55 UTC (permalink / raw
  To: gentoo-commits

opfer       08/06/18 07:55:41

  Modified:             ChangeLog scite-1.76.ebuild
  Log:
  stable x86, bug 225663
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.73                 app-editors/scite/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/scite/ChangeLog?rev=1.73&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/scite/ChangeLog?rev=1.73&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/scite/ChangeLog?r1=1.72&r2=1.73

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog	14 Jun 2008 08:36:52 -0000	1.72
+++ ChangeLog	18 Jun 2008 07:55:41 -0000	1.73
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/scite
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.72 2008/06/14 08:36:52 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.73 2008/06/18 07:55:41 opfer Exp $
+
+  18 Jun 2008; Christian Faulhammer <opfer@gentoo.org> scite-1.76.ebuild:
+  stable x86, bug 225663
 
   14 Jun 2008; nixnut <nixnut@gentoo.org> scite-1.76.ebuild:
   Stable on ppc wrt bug 225663



1.5                  app-editors/scite/scite-1.76.ebuild

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

Index: scite-1.76.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.76.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- scite-1.76.ebuild	14 Jun 2008 08:36:52 -0000	1.4
+++ scite-1.76.ebuild	18 Jun 2008 07:55:41 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.76.ebuild,v 1.4 2008/06/14 08:36:52 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.76.ebuild,v 1.5 2008/06/18 07:55:41 opfer Exp $
 
 inherit toolchain-funcs eutils
 
@@ -11,7 +11,7 @@
 
 LICENSE="Scintilla"
 SLOT="0"
-KEYWORDS="amd64 ppc sparc ~x86"
+KEYWORDS="amd64 ppc sparc x86"
 IUSE="lua"
 
 RDEPEND=">=x11-libs/gtk+-2



-- 
gentoo-commits@lists.gentoo.org mailing list



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

end of thread, other threads:[~2008-06-18  7:55 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-14  8:36 [gentoo-commits] gentoo-x86 commit in app-editors/scite: ChangeLog scite-1.76.ebuild Gysbert Wassenaar (nixnut)
  -- strict thread matches above, loose matches on Subject: below --
2008-06-18  7:55 Christian Faulhammer (opfer)
2008-06-11 16:43 Friedrich Oslage (bluebird)
2008-06-09 20:25 Krzysiek Pawlik (nelchael)
2008-04-05 15:29 Krzysiek Pawlik (nelchael)

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