public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Markos Chandras (hwoarang)" <hwoarang@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/qt: qt4-based-ebuild-howto.xml
Date: Thu,  9 Feb 2012 22:32:56 +0000 (UTC)	[thread overview]
Message-ID: <20120209223256.B19F22004B@flycatcher.gentoo.org> (raw)

hwoarang    12/02/09 22:32:56

  Modified:             qt4-based-ebuild-howto.xml
  Log:
  Update guide. Misc improvements. Thanks to Michael (kensington) <gentoo@scribeofthenile.com>. Bug #399405

Revision  Changes    Path
1.7                  xml/htdocs/proj/en/desktop/qt/qt4-based-ebuild-howto.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/qt/qt4-based-ebuild-howto.xml?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/qt/qt4-based-ebuild-howto.xml?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/qt/qt4-based-ebuild-howto.xml?r1=1.6&r2=1.7

Index: qt4-based-ebuild-howto.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/qt/qt4-based-ebuild-howto.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- qt4-based-ebuild-howto.xml	2 Feb 2012 19:15:25 -0000	1.6
+++ qt4-based-ebuild-howto.xml	9 Feb 2012 22:32:56 -0000	1.7
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/qt/qt4-based-ebuild-howto.xml,v 1.6 2012/02/02 19:15:25 hwoarang Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/qt/qt4-based-ebuild-howto.xml,v 1.7 2012/02/09 22:32:56 hwoarang Exp $ -->
 
 <guide link="/proj/en/desktop/qt/qt4-ebuild-howto.xml" lang="en">
 <title>Qt4-based ebuild howto</title>
@@ -25,8 +25,8 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <license/>
 
-<version>0.6.2</version>
-<date>2012-02-02</date>
+<version>0.6.3</version>
+<date>2012-02-09</date>
 
 <chapter>
 	<title>Introduction</title>
@@ -56,7 +56,7 @@
 		<title>Inherit qt4-r2 eclass</title>
 		<body>
 		<p>All Qt4 qmake-based ebuilds should use qt4-r2 eclass, which provides
-		usefull tools and features (listed below) for building Qt4 applications.
+		useful tools and features (listed below) for building Qt4 applications.
 		</p>
 		<pre caption="Inheriting qt4-r2 eclass">
 inherit qt4-r2</pre>
@@ -140,7 +140,7 @@
 DEPEND="x11-libs/qt-gui:4
     x11-libs/qt-sql:4"</pre>
 	<warn>
-	Even though there is a <c>x11-libs/qt</c> metapackage, you <b>must NOT</b>
+	Even though there is a <c>x11-libs/qt-meta</c> metapackage, you <b>must NOT</b>
 	use it as a dependency. We have masked it to prevent that.
 	</warn>
 	</body>
@@ -252,14 +252,14 @@
 		<pre caption="default src_install function">
 qt4-r2_src_install() {
     debug-print-function $FUNCNAME "$@"
+
     emake INSTALL_ROOT="${D}" DESTDIR="${D}" install || die "emake install failed"
     # install documentation
-    if [[ -n "${DOCS}" ]]; then
-        local dir=${DOCSDIR:-${S}}
-        for doc in ${DOCS}; do
-            dodoc "${dir}/${doc}" || die "dodoc failed"
-        done
-    fi
+
+    local dir=${DOCSDIR:-${S}}
+    for doc in ${DOCS}; do
+        dodoc "${dir}/${doc}" || die "dodoc failed"
+    done
 }</pre>
 		<p>
 		This is the most popular method to install Qt4 packages and their






             reply	other threads:[~2012-02-09 22:33 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-02-09 22:32 Markos Chandras (hwoarang) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2013-08-20  7:45 [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/qt: qt4-based-ebuild-howto.xml Sergey Popov (pinkbyte)
2013-08-19 15:43 Mikle Kolyada (zlogene)
2013-08-19 14:50 Mikle Kolyada (zlogene)
2012-10-28 15:21 Sven Vermeulen (swift)
2012-02-02 19:15 Markos Chandras (hwoarang)
2010-08-15 22:28 Markos Chandras (hwoarang)
2010-07-13 22:42 Markos Chandras (hwoarang)
2010-03-25 21:25 Ben de Groot (yngwin)
2009-12-20 19:28 Markos Chandras (hwoarang)
2009-11-15 14:22 Alex Alexander (wired)

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=20120209223256.B19F22004B@flycatcher.gentoo.org \
    --to=hwoarang@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