public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-editors/qemacs: qemacs-0.4.0_pre20080605-r1.ebuild ChangeLog
@ 2009-08-19 22:17 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 2+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-08-19 22:17 UTC (permalink / raw
  To: gentoo-commits

fauli       09/08/19 22:17:53

  Modified:             ChangeLog
  Added:                qemacs-0.4.0_pre20080605-r1.ebuild
  Log:
  now that app-editors/qe is gone we can live with a simple block and clean up patches
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.44                 app-editors/qemacs/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog	8 Jun 2009 18:41:06 -0000	1.43
+++ ChangeLog	19 Aug 2009 22:17:52 -0000	1.44
@@ -1,6 +1,14 @@
 # ChangeLog for app-editors/qemacs
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.43 2009/06/08 18:41:06 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.44 2009/08/19 22:17:52 fauli Exp $
+
+*qemacs-0.4.0_pre20080605-r1 (19 Aug 2009)
+
+  19 Aug 2009; Christian Faulhammer <fauli@gentoo.org>
+  +qemacs-0.4.0_pre20080605-r1.ebuild,
+  +files/qemacs-0.4.0_pre20080605-Makefile.patch:
+  now that app-editors/qe is gone we can live with a simple block and clean
+  up patches
 
   08 Jun 2009; Christian Faulhammer <fauli@gentoo.org>
   -qemacs-0.3.2_pre20070226.ebuild,



1.1                  app-editors/qemacs/qemacs-0.4.0_pre20080605-r1.ebuild

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

Index: qemacs-0.4.0_pre20080605-r1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20080605-r1.ebuild,v 1.1 2009/08/19 22:17:52 fauli Exp $

EAPI=1

inherit eutils flag-o-matic toolchain-funcs

DESCRIPTION="QEmacs is a very small but powerful UNIX editor"
HOMEPAGE="http://savannah.nongnu.org/projects/qemacs"
SRC_URI="mirror://gentoo/${P}.tar.bz2"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="X png unicode xv"
RESTRICT="strip"

DEPEND="X? ( x11-libs/libX11
			x11-libs/libXext
			xv? ( x11-libs/libXv ) )
		png? ( media-libs/libpng:1.2 )
		!app-editors/qe"

RDEPEND="${DEPEND}"

DEPEND="${DEPEND}
	app-text/texi2html"

src_unpack() {
	unpack ${A}
	cd "${S}"
	# Removes forced march setting and align-functions on x86, as they
	# would override user's CFLAGS..
	epatch "${FILESDIR}/${P}-Makefile.patch"
	# Make backup files optional
	epatch "${FILESDIR}/${P}-make_backup.patch"

	useq unicode && epatch "${FILESDIR}/${PN}-0.3.2_pre20070226-tty_utf8.patch"
	# Change the manpage to reference a /real/ file instead of just an
	# approximation.  Purely cosmetic!
	sed -i "s,^/usr/share/doc/qe,&-${PVR}," qe.1
}

src_compile() {
	# when using any other CFLAGS than -O0, qemacs will segfault on startup, see bug #92011
	replace-flags -O? -O0
	econf --cc="$(tc-getCC)" \
		$(use_enable X x11) \
		$(use_enable png) \
		$(use_enable xv) \
		|| die "econf failed"
	# Does not support parallel building
	emake -j1 || die
}

src_test() {
	# There are some files purporting to be tests in the tarball, however
	# there is no defined way to use them and I imagine even if there was
	# it would require user interaction.
	# The toplevel Makefile calls the test target from the non-existant
	# tests/Makefile, so just noop to stop errors if maketest is set.
	:
}

src_install() {
	emake install DESTDIR="${D}" || die
	dodoc Changelog README TODO config.eg
	dohtml *.html

	# Install headers so users can build their own plugins.
	insinto /usr/include/qemacs
	doins cfb.h config.h cutils.h display.h fbfrender.h libfbf.h qe.h \
		qeconfig.h qestyles.h qfribidi.h
	cd libqhtml
	insinto /usr/include/qemacs/libqhtml
	doins {css{,id},htmlent}.h
}






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

* [gentoo-commits] gentoo-x86 commit in app-editors/qemacs: qemacs-0.4.0_pre20080605-r1.ebuild ChangeLog
@ 2009-10-16 22:05 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 2+ messages in thread
From: Ulrich Mueller (ulm) @ 2009-10-16 22:05 UTC (permalink / raw
  To: gentoo-commits

ulm         09/10/16 22:05:03

  Modified:             qemacs-0.4.0_pre20080605-r1.ebuild ChangeLog
  Log:
  Remove empty src_test, restrict test instead.
  (Portage version: 2.2_rc46/cvs/Linux i686)

Revision  Changes    Path
1.2                  app-editors/qemacs/qemacs-0.4.0_pre20080605-r1.ebuild

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

Index: qemacs-0.4.0_pre20080605-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20080605-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- qemacs-0.4.0_pre20080605-r1.ebuild	19 Aug 2009 22:17:52 -0000	1.1
+++ qemacs-0.4.0_pre20080605-r1.ebuild	16 Oct 2009 22:05:03 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20080605-r1.ebuild,v 1.1 2009/08/19 22:17:52 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20080605-r1.ebuild,v 1.2 2009/10/16 22:05:03 ulm Exp $
 
 EAPI=1
 
@@ -14,7 +14,7 @@
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~x86"
 IUSE="X png unicode xv"
-RESTRICT="strip"
+RESTRICT="strip test"
 
 DEPEND="X? ( x11-libs/libX11
 			x11-libs/libXext
@@ -54,15 +54,6 @@
 	emake -j1 || die
 }
 
-src_test() {
-	# There are some files purporting to be tests in the tarball, however
-	# there is no defined way to use them and I imagine even if there was
-	# it would require user interaction.
-	# The toplevel Makefile calls the test target from the non-existant
-	# tests/Makefile, so just noop to stop errors if maketest is set.
-	:
-}
-
 src_install() {
 	emake install DESTDIR="${D}" || die
 	dodoc Changelog README TODO config.eg



1.45                 app-editors/qemacs/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog	19 Aug 2009 22:17:52 -0000	1.44
+++ ChangeLog	16 Oct 2009 22:05:03 -0000	1.45
@@ -1,6 +1,10 @@
 # ChangeLog for app-editors/qemacs
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.44 2009/08/19 22:17:52 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.45 2009/10/16 22:05:03 ulm Exp $
+
+  16 Oct 2009; Ulrich Mueller <ulm@gentoo.org>
+  qemacs-0.4.0_pre20080605-r1.ebuild:
+  Remove empty src_test, restrict test instead.
 
 *qemacs-0.4.0_pre20080605-r1 (19 Aug 2009)
 






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

end of thread, other threads:[~2009-10-16 22:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-19 22:17 [gentoo-commits] gentoo-x86 commit in app-editors/qemacs: qemacs-0.4.0_pre20080605-r1.ebuild ChangeLog Christian Faulhammer (fauli)
  -- strict thread matches above, loose matches on Subject: below --
2009-10-16 22:05 Ulrich Mueller (ulm)

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