public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-i18n/qimhangul: ChangeLog qimhangul-0.0.2.ebuild qimhangul-0.0.3.ebuild
@ 2008-07-27 19:48 Carsten Lohrke (carlo)
  0 siblings, 0 replies; only message in thread
From: Carsten Lohrke (carlo) @ 2008-07-27 19:48 UTC (permalink / raw
  To: gentoo-commits

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
 }






^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-07-27 19:48 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-27 19:48 [gentoo-commits] gentoo-x86 commit in app-i18n/qimhangul: ChangeLog qimhangul-0.0.2.ebuild qimhangul-0.0.3.ebuild Carsten Lohrke (carlo)

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