public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Carsten Lohrke (carlo)" <carlo@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in app-i18n/qimhangul: ChangeLog qimhangul-0.0.2.ebuild qimhangul-0.0.3.ebuild
Date: Sun, 27 Jul 2008 19:48:20 +0000	[thread overview]
Message-ID: <E1KNCE8-0000rO-U7@stork.gentoo.org> (raw)

carlo       08/07/27 19:48:20

  Modified:             ChangeLog qimhangul-0.0.2.ebuild
                        qimhangul-0.0.3.ebuild
  Log:
   QA: Get rid of deprecated qt_min_version(). Quoting issues.
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.8                  app-i18n/qimhangul/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/qimhangul/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/qimhangul/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/qimhangul/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-i18n/qimhangul/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	21 Feb 2007 22:10:36 -0000	1.7
+++ ChangeLog	27 Jul 2008 19:48:20 -0000	1.8
@@ -1,6 +1,10 @@
 # ChangeLog for app-i18n/qimhangul
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/qimhangul/ChangeLog,v 1.7 2007/02/21 22:10:36 peper Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/qimhangul/ChangeLog,v 1.8 2008/07/27 19:48:20 carlo Exp $
+
+  27 Jul 2008; Carsten Lohrke <carlo@gentoo.org> qimhangul-0.0.2.ebuild,
+  qimhangul-0.0.3.ebuild:
+  QA: Get rid of deprecated qt_min_version(). Quoting issues.
 
   21 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog:
   Transition to Manifest2.



1.4                  app-i18n/qimhangul/qimhangul-0.0.2.ebuild

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

Index: qimhangul-0.0.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-i18n/qimhangul/qimhangul-0.0.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- qimhangul-0.0.2.ebuild	5 Jan 2007 16:22:36 -0000	1.3
+++ qimhangul-0.0.2.ebuild	27 Jul 2008 19:48:20 -0000	1.4
@@ -1,6 +1,8 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/qimhangul/qimhangul-0.0.2.ebuild,v 1.3 2007/01/05 16:22:36 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/qimhangul/qimhangul-0.0.2.ebuild,v 1.4 2008/07/27 19:48:20 carlo Exp $
+
+EAPI=1
 
 inherit qt3 eutils
 
@@ -13,27 +15,27 @@
 KEYWORDS="~x86"
 IUSE=""
 
-DEPEND="$(qt_min_version 3.3.4)"
+DEPEND="x11-libs/qt:3"
 
 pkg_setup() {
-	if [ ! -e /usr/qt/3/plugins/inputmethods/libqimsw-none.so ] ; then
+	if [ ! -e "${QTDIR}"/plugins/inputmethods/libqimsw-none.so ] ; then
 		die "You need to rebuild >=x11-libs/qt-3.3.3-r1 with immqt-bc or immqt USE flag enabled."
 	fi
 }
 
 src_compile() {
 	unpack ${A}
-	cd ${S}
-	epatch ${FILESDIR}/${P}-gentoo.patch
+	cd "${S}"
+	epatch "${FILESDIR}"/${P}-gentoo.patch
 }
 
 src_compile() {
-	${QTDIR}/bin/qmake -makefile || die "qmake failed"
+	"${QTDIR}"/bin/qmake -makefile || die "qmake failed"
 	emake -j1 || die "make failed."
 }
 
 src_install() {
-	make INSTALL_ROOT=${D} install || die
+	make INSTALL_ROOT="${D}" install || die
 
 	dodoc ChangeLog
 }



1.3                  app-i18n/qimhangul/qimhangul-0.0.3.ebuild

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

Index: qimhangul-0.0.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-i18n/qimhangul/qimhangul-0.0.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- qimhangul-0.0.3.ebuild	5 Jan 2007 16:22:36 -0000	1.2
+++ qimhangul-0.0.3.ebuild	27 Jul 2008 19:48:20 -0000	1.3
@@ -1,6 +1,8 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/qimhangul/qimhangul-0.0.3.ebuild,v 1.2 2007/01/05 16:22:36 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/qimhangul/qimhangul-0.0.3.ebuild,v 1.3 2008/07/27 19:48:20 carlo Exp $
+
+EAPI=1
 
 inherit qt3
 
@@ -13,21 +15,21 @@
 KEYWORDS="~x86"
 IUSE=""
 
-DEPEND="$(qt_min_version 3.3.4)"
+DEPEND="x11-libs/qt:3"
 
 pkg_setup() {
-	if [ ! -e /usr/qt/3/plugins/inputmethods/libqimsw-none.so ] ; then
+	if [ ! -e "${QTDIR}"/plugins/inputmethods/libqimsw-none.so ] ; then
 		die "You need to rebuild >=x11-libs/qt-3.3.3-r1 with immqt-bc or immqt USE flag enabled."
 	fi
 }
 
 src_compile() {
-	${QTDIR}/bin/qmake -makefile || die "qmake failed"
+	"${QTDIR}"/bin/qmake -makefile || die "qmake failed"
 	emake -j1 || die "make failed."
 }
 
 src_install() {
-	make INSTALL_ROOT=${D} install || die
+	make INSTALL_ROOT="${D}" install || die
 
 	dodoc ChangeLog
 }






                 reply	other threads:[~2008-07-27 19:48 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=E1KNCE8-0000rO-U7@stork.gentoo.org \
    --to=carlo@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