From: "Nirbheek Chauhan (nirbheek)" <nirbheek@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/gtk-doc-am: ChangeLog gtk-doc-am-1.17.ebuild
Date: Mon, 7 Mar 2011 11:49:41 +0000 (UTC) [thread overview]
Message-ID: <20110307114941.9906D20054@flycatcher.gentoo.org> (raw)
nirbheek 11/03/07 11:49:41
Modified: ChangeLog gtk-doc-am-1.17.ebuild
Log:
Remove the need for a few build-time deps, fixes bug 318475
(Portage version: 2.1.9.42/cvs/Linux x86_64)
Revision Changes Path
1.56 dev-util/gtk-doc-am/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gtk-doc-am/ChangeLog?rev=1.56&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gtk-doc-am/ChangeLog?rev=1.56&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gtk-doc-am/ChangeLog?r1=1.55&r2=1.56
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/gtk-doc-am/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog 3 Mar 2011 22:14:37 -0000 1.55
+++ ChangeLog 7 Mar 2011 11:49:41 -0000 1.56
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/gtk-doc-am
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/gtk-doc-am/ChangeLog,v 1.55 2011/03/03 22:14:37 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/gtk-doc-am/ChangeLog,v 1.56 2011/03/07 11:49:41 nirbheek Exp $
+
+ 07 Mar 2011; Nirbheek Chauhan <nirbheek@gentoo.org>
+ gtk-doc-am-1.17.ebuild:
+ Remove the need for a few build-time deps, fixes bug 318475
*gtk-doc-am-1.17 (03 Mar 2011)
1.2 dev-util/gtk-doc-am/gtk-doc-am-1.17.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gtk-doc-am/gtk-doc-am-1.17.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gtk-doc-am/gtk-doc-am-1.17.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gtk-doc-am/gtk-doc-am-1.17.ebuild?r1=1.1&r2=1.2
Index: gtk-doc-am-1.17.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/gtk-doc-am/gtk-doc-am-1.17.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gtk-doc-am-1.17.ebuild 3 Mar 2011 22:14:37 -0000 1.1
+++ gtk-doc-am-1.17.ebuild 7 Mar 2011 11:49:41 -0000 1.2
@@ -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/dev-util/gtk-doc-am/gtk-doc-am-1.17.ebuild,v 1.1 2011/03/03 22:14:37 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/gtk-doc-am/gtk-doc-am-1.17.ebuild,v 1.2 2011/03/07 11:49:41 nirbheek Exp $
EAPI="3"
@@ -19,14 +19,11 @@
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
-RDEPEND=">=dev-lang/perl-5.6"
-
-DEPEND="${RDEPEND}
- !<dev-util/gtk-doc-${MAJ_PV}
- app-text/docbook-xml-dtd:4.3
- app-text/docbook-xsl-stylesheets
- dev-libs/libxslt
- >=dev-util/pkgconfig-0.19"
+# pkg-config is used by gtkdoc-rebase at runtime
+RDEPEND=">=dev-lang/perl-5.6
+ dev-util/pkgconfig"
+DEPEND="${RDEPEND}
+ !<dev-util/gtk-doc-${MAJ_PV}"
# This ebuild doesn't even compile anything, causing tests to fail when updating (bug #316071)
RESTRICT="test"
@@ -36,7 +33,15 @@
DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README TODO"
src_configure() {
- econf --with-xml-catalog="${EPREFIX}"/etc/xml/catalog
+ # Duplicate autoconf checks so we don't have to call configure
+ local PERL=$(type -P perl)
+
+ test -n "${PERL}" || die "Perl not found!"
+ "${PERL}" -e "require v5.6.0" || die "perl >= 5.6.0 is required for gtk-doc"
+
+ # Replicate AC_SUBST
+ sed -e "s:@PERL@:${PERL}:g" -e "s:@VERSION@:${PV}:g" \
+ "${S}/gtkdoc-rebase.in" > "${S}/gtkdoc-rebase" || die "sed failed!"
}
src_compile() {
@@ -44,6 +49,7 @@
}
src_install() {
+ fperms +x gtkdoc-rebase
exeinto /usr/bin/
doexe gtkdoc-rebase || die "doexe failed"
next reply other threads:[~2011-03-07 11:49 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-07 11:49 Nirbheek Chauhan (nirbheek) [this message]
-- strict thread matches above, loose matches on Subject: below --
2013-03-07 8:08 [gentoo-commits] gentoo-x86 commit in dev-util/gtk-doc-am: ChangeLog gtk-doc-am-1.17.ebuild Gilles Dartiguelongue (eva)
2011-08-19 16:47 Guy Martin (gmsoft)
2011-08-13 18:46 Raul Porcel (armin76)
2011-08-13 16:58 Raul Porcel (armin76)
2011-08-12 17:38 Kacper Kowalik (xarthisius)
2011-07-17 20:49 Markus Meier (maekke)
2011-07-14 10:18 Thomas Kahle (tomka)
2011-07-01 21:09 Markos Chandras (hwoarang)
2011-05-22 12:36 Nirbheek Chauhan (nirbheek)
2011-05-03 11:22 Fabian Groffen (grobian)
2011-03-03 22:14 Pacho Ramos (pacho)
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20110307114941.9906D20054@flycatcher.gentoo.org \
--to=nirbheek@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox