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 dev-db/qt-unixODBC: ChangeLog qt-unixODBC-3.3.8b.ebuild
Date: Sat, 26 Jul 2008 21:00:54 +0000	[thread overview]
Message-ID: <E1KMqso-0004y0-Bp@stork.gentoo.org> (raw)

carlo       08/07/26 21:00:54

  Modified:             ChangeLog
  Added:                qt-unixODBC-3.3.8b.ebuild
  Log:
  Version bump.
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.39                 dev-db/qt-unixODBC/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/qt-unixODBC/ChangeLog?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/qt-unixODBC/ChangeLog?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/qt-unixODBC/ChangeLog?r1=1.38&r2=1.39

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/qt-unixODBC/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog	21 May 2008 16:52:30 -0000	1.38
+++ ChangeLog	26 Jul 2008 21:00:53 -0000	1.39
@@ -1,6 +1,11 @@
 # ChangeLog for dev-db/qt-unixODBC
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/qt-unixODBC/ChangeLog,v 1.38 2008/05/21 16:52:30 ingmar Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/qt-unixODBC/ChangeLog,v 1.39 2008/07/26 21:00:53 carlo Exp $
+
+*qt-unixODBC-3.3.8b (26 Jul 2008)
+
+  26 Jul 2008; Carsten Lohrke <carlo@gentoo.org> +qt-unixODBC-3.3.8b.ebuild:
+  Version bump.
 
   21 May 2008; Ingmar Vanhassel <ingmar@gentoo.org>
   -qt-unixODBC-3.3.4-r1.ebuild:



1.1                  dev-db/qt-unixODBC/qt-unixODBC-3.3.8b.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/qt-unixODBC/qt-unixODBC-3.3.8b.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/qt-unixODBC/qt-unixODBC-3.3.8b.ebuild?rev=1.1&content-type=text/plain

Index: qt-unixODBC-3.3.8b.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/qt-unixODBC/qt-unixODBC-3.3.8b.ebuild,v 1.1 2008/07/26 21:00:53 carlo Exp $

inherit eutils

SRCTYPE="free"
DESCRIPTION="QT version ${PV}"
HOMEPAGE="http://www.trolltech.com/"
SRC_URI="ftp://ftp.trolltech.com/qt/source/qt-x11-${SRCTYPE}-${PV}.tar.gz"
IUSE=""
LICENSE="|| ( QPL-1.0 GPL-2 GPL-3 )"
SLOT="3"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"

DEPEND="~x11-libs/qt-${PV}
	dev-db/unixODBC"

S="${WORKDIR}/qt-x11-${SRCTYPE}-${PV}"

QTBASE="/usr/qt/3"
export QTDIR=${S}
export PLATFORM=linux-g++

src_unpack() {
	unpack ${A}
	cd "${S}"

	epatch "${FILESDIR}"/qt-no-rpath.patch

	cp configure configure.orig
	sed -e 's:read acceptance:acceptance=yes:' configure.orig > configure

	sed -i -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \
	       -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \
	       -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \
		   -e "s:\<QMAKE_CC\>.*=.*:QMAKE_CC=$(tc-getCC):" \
		   -e "s:\<QMAKE_CXX\>.*=.*:QMAKE_CXX=$(tc-getCXX):" \
		   -e "s:\<QMAKE_LINK\>.*=.*:QMAKE_LINK=$(tc-getCXX):" \
		   -e "s:\<QMAKE_LINK_SHLIB\>.*=.*:QMAKE_LINK_SHLIB=$(tc-getCXX):" \
		   "${S}"/mkspecs/${PLATFORM}/qmake.conf || die "sed to fix CFLAGS failed"
}

src_compile() {
	export QTDIR=${S}
	export SYSCONF=${D}${QTBASE}/etc/settings

	# Let's just allow writing to these directories during Qt emerge
	# as it makes Qt much happier.
	addwrite "${QTBASE}/etc/settings"
	addwrite "${HOME}/.qt"

	export YACC='byacc -d'

	./configure -sm -thread -stl -system-libjpeg -verbose -largefile \
		-qt-imgfmt-{jpeg,mng,png} -tablet -system-libmng \
		-system-libpng -lpthread -xft -platform ${PLATFORM} -xplatform \
		${PLATFORM} -xrender -prefix ${QTBASE} -fast ${myconf} \
		-dlopen-opengl -plugin-sql-odbc -L${QTBASE}/lib || die "configure failed"

	cd "${S}"/plugins/src/sqldrivers/odbc
	emake || die "emake failed"
}

src_install() {
	insinto ${QTBASE}/plugins/sqldrivers
	doins "${S}"/plugins/sqldrivers/libqsqlodbc.so || die "doins failed"
}






             reply	other threads:[~2008-07-26 21:00 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-07-26 21:00 Carsten Lohrke (carlo) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2009-01-07 19:44 [gentoo-commits] gentoo-x86 commit in dev-db/qt-unixODBC: ChangeLog qt-unixODBC-3.3.8b.ebuild Brent Baude (ranger)
2009-01-07 21:19 Thomas Anderson (gentoofan23)
2009-01-09 17:27 Guy Martin (gmsoft)
2009-01-10 15:15 Raul Porcel (armin76)
2009-01-17 16:39 Gysbert Wassenaar (nixnut)

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=E1KMqso-0004y0-Bp@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