public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-terms/cxterm: ChangeLog cxterm-5.2.3-r1.ebuild
@ 2010-09-19  2:36 Jeroen Roovers (jer)
  0 siblings, 0 replies; 3+ messages in thread
From: Jeroen Roovers (jer) @ 2010-09-19  2:36 UTC (permalink / raw
  To: gentoo-commits

jer         10/09/19 02:36:38

  Modified:             ChangeLog
  Added:                cxterm-5.2.3-r1.ebuild
  Log:
  Add missing dependencies. Respect LDFLAGS (bug #336301), CC, CFLAGS, mainly by running eautoreconf, and also remove a weird redefinition of malloc(), calloc() and realloc(). Use emake instead of make.
  
  (Portage version: 2.2_rc83/cvs/Linux i686)

Revision  Changes    Path
1.13                 x11-terms/cxterm/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/cxterm/ChangeLog?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/cxterm/ChangeLog?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/cxterm/ChangeLog?r1=1.12&r2=1.13

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/cxterm/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	22 Jul 2007 05:42:43 -0000	1.12
+++ ChangeLog	19 Sep 2010 02:36:37 -0000	1.13
@@ -1,6 +1,13 @@
 # ChangeLog for x11-terms/cxterm
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/cxterm/ChangeLog,v 1.12 2007/07/22 05:42:43 dberkholz Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/cxterm/ChangeLog,v 1.13 2010/09/19 02:36:37 jer Exp $
+
+*cxterm-5.2.3-r1 (19 Sep 2010)
+
+  19 Sep 2010; Jeroen Roovers <jer@gentoo.org> +cxterm-5.2.3-r1.ebuild:
+  Add missing dependencies. Respect LDFLAGS (bug #336301), CC, CFLAGS,
+  mainly by running eautoreconf, and also remove a weird redefinition of
+  malloc(), calloc() and realloc(). Use emake instead of make.
 
   22 Jul 2007; Donnie Berkholz <dberkholz@gentoo.org>; cxterm-5.2.3.ebuild:
   Drop virtual/x11 references.



1.1                  x11-terms/cxterm/cxterm-5.2.3-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/cxterm/cxterm-5.2.3-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/cxterm/cxterm-5.2.3-r1.ebuild?rev=1.1&content-type=text/plain

Index: cxterm-5.2.3-r1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-terms/cxterm/cxterm-5.2.3-r1.ebuild,v 1.1 2010/09/19 02:36:37 jer Exp $

EAPI="2"

inherit autotools

SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
HOMEPAGE="http://cxterm.sourceforge.net/"
DESCRIPTION="A Chinese/Japanese/Korean X-Terminal"
LICENSE="BSD"

SLOT="0"
KEYWORDS="~x86"
IUSE=""

RDEPEND="
	sys-libs/ncurses
	x11-libs/libX11
	x11-libs/libXaw
	x11-libs/libXmu
"
DEPEND="${RDEPEND}"

src_prepare() {
	# use the canonical compiler and linker calls and...
	sed -i utils/Makefile.am \
		-e '/ -c /s|gcc|$(COMPILE)|g' \
		-e '/ -o /s|gcc|$(LINK)|g' \
		|| die "sed utils/Makefile.am"
	# ...remove these redefinitions, probably the reason why the original
	# Makefile.am above had plain `gcc' as -O[N>0] would then fail
	sed -i utils/tit2cit.c \
		-e '/extern char.*malloc.*calloc.*realloc/d' \
		|| die "sed utils/tit2cit.c"
	eautoreconf
}

src_install() {
	emake DESTDIR="${D}" install || die
	dodoc README* INSTALL-5.2 Doc/*
	docinto tutorial-1
	dodoc Doc/tutorial-1/*
	docinto tutorial-2
	dodoc Doc/tutorial-2/*
}






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

* [gentoo-commits] gentoo-x86 commit in x11-terms/cxterm: ChangeLog cxterm-5.2.3-r1.ebuild
@ 2011-07-09 17:40 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-07-09 17:40 UTC (permalink / raw
  To: gentoo-commits

ssuominen    11/07/09 17:40:30

  Modified:             ChangeLog cxterm-5.2.3-r1.ebuild
  Log:
  Fix include guard with recent libX11 wrt #349448 by Diego Elio Pettenò
  
  (Portage version: 2.2.0_alpha43/cvs/Linux x86_64)

Revision  Changes    Path
1.14                 x11-terms/cxterm/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/cxterm/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/cxterm/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/cxterm/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/cxterm/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	19 Sep 2010 02:36:37 -0000	1.13
+++ ChangeLog	9 Jul 2011 17:40:30 -0000	1.14
@@ -1,6 +1,9 @@
 # ChangeLog for x11-terms/cxterm
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/cxterm/ChangeLog,v 1.13 2010/09/19 02:36:37 jer Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/cxterm/ChangeLog,v 1.14 2011/07/09 17:40:30 ssuominen Exp $
+
+  09 Jul 2011; Samuli Suominen <ssuominen@gentoo.org> cxterm-5.2.3-r1.ebuild:
+  Fix include guard with recent libX11 wrt #349448 by Diego Elio Pettenò
 
 *cxterm-5.2.3-r1 (19 Sep 2010)
 



1.2                  x11-terms/cxterm/cxterm-5.2.3-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/cxterm/cxterm-5.2.3-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/cxterm/cxterm-5.2.3-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/cxterm/cxterm-5.2.3-r1.ebuild?r1=1.1&r2=1.2

Index: cxterm-5.2.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/cxterm/cxterm-5.2.3-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- cxterm-5.2.3-r1.ebuild	19 Sep 2010 02:36:37 -0000	1.1
+++ cxterm-5.2.3-r1.ebuild	9 Jul 2011 17:40:30 -0000	1.2
@@ -1,18 +1,17 @@
-# 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/x11-terms/cxterm/cxterm-5.2.3-r1.ebuild,v 1.1 2010/09/19 02:36:37 jer Exp $
-
-EAPI="2"
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/cxterm/cxterm-5.2.3-r1.ebuild,v 1.2 2011/07/09 17:40:30 ssuominen Exp $
 
+EAPI=4
 inherit autotools
 
 SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
 HOMEPAGE="http://cxterm.sourceforge.net/"
 DESCRIPTION="A Chinese/Japanese/Korean X-Terminal"
-LICENSE="BSD"
 
+LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~x86"
+KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 RDEPEND="
@@ -28,20 +27,20 @@
 	sed -i utils/Makefile.am \
 		-e '/ -c /s|gcc|$(COMPILE)|g' \
 		-e '/ -o /s|gcc|$(LINK)|g' \
-		|| die "sed utils/Makefile.am"
+		|| die
 	# ...remove these redefinitions, probably the reason why the original
 	# Makefile.am above had plain `gcc' as -O[N>0] would then fail
 	sed -i utils/tit2cit.c \
 		-e '/extern char.*malloc.*calloc.*realloc/d' \
-		|| die "sed utils/tit2cit.c"
+		|| die
+
+	# Fix include guard with recent libX11 wrt #349448
+	sed -i -e 's:_XLIB_H_:_X11&:' cxterm/HZtable.h || die
+
 	eautoreconf
 }
 
 src_install() {
-	emake DESTDIR="${D}" install || die
-	dodoc README* INSTALL-5.2 Doc/*
-	docinto tutorial-1
-	dodoc Doc/tutorial-1/*
-	docinto tutorial-2
-	dodoc Doc/tutorial-2/*
+	emake DESTDIR="${D}" install
+	dodoc -r ChangeLog README* INSTALL-5.2 Doc/*
 }






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

* [gentoo-commits] gentoo-x86 commit in x11-terms/cxterm: ChangeLog cxterm-5.2.3-r1.ebuild
@ 2011-07-17 20:35 Markus Meier (maekke)
  0 siblings, 0 replies; 3+ messages in thread
From: Markus Meier (maekke) @ 2011-07-17 20:35 UTC (permalink / raw
  To: gentoo-commits

maekke      11/07/17 20:35:28

  Modified:             ChangeLog cxterm-5.2.3-r1.ebuild
  Log:
  x86 stable, bug #374577
  
  (Portage version: 2.1.10.6/cvs/Linux x86_64)

Revision  Changes    Path
1.15                 x11-terms/cxterm/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/cxterm/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/cxterm/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/cxterm/ChangeLog?r1=1.14&r2=1.15

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/cxterm/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	9 Jul 2011 17:40:30 -0000	1.14
+++ ChangeLog	17 Jul 2011 20:35:28 -0000	1.15
@@ -1,6 +1,9 @@
 # ChangeLog for x11-terms/cxterm
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/cxterm/ChangeLog,v 1.14 2011/07/09 17:40:30 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/cxterm/ChangeLog,v 1.15 2011/07/17 20:35:28 maekke Exp $
+
+  17 Jul 2011; Markus Meier <maekke@gentoo.org> cxterm-5.2.3-r1.ebuild:
+  x86 stable, bug #374577
 
   09 Jul 2011; Samuli Suominen <ssuominen@gentoo.org> cxterm-5.2.3-r1.ebuild:
   Fix include guard with recent libX11 wrt #349448 by Diego Elio Pettenò



1.3                  x11-terms/cxterm/cxterm-5.2.3-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/cxterm/cxterm-5.2.3-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/cxterm/cxterm-5.2.3-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/cxterm/cxterm-5.2.3-r1.ebuild?r1=1.2&r2=1.3

Index: cxterm-5.2.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/cxterm/cxterm-5.2.3-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- cxterm-5.2.3-r1.ebuild	9 Jul 2011 17:40:30 -0000	1.2
+++ cxterm-5.2.3-r1.ebuild	17 Jul 2011 20:35:28 -0000	1.3
@@ -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/x11-terms/cxterm/cxterm-5.2.3-r1.ebuild,v 1.2 2011/07/09 17:40:30 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/cxterm/cxterm-5.2.3-r1.ebuild,v 1.3 2011/07/17 20:35:28 maekke Exp $
 
 EAPI=4
 inherit autotools
@@ -11,7 +11,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE=""
 
 RDEPEND="






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

end of thread, other threads:[~2011-07-17 20:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-09 17:40 [gentoo-commits] gentoo-x86 commit in x11-terms/cxterm: ChangeLog cxterm-5.2.3-r1.ebuild Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2011-07-17 20:35 Markus Meier (maekke)
2010-09-19  2:36 Jeroen Roovers (jer)

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