Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 189576 Details for
Bug 260774
dev-java/qtjambi-4.5.0_rc1 version bump
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
configuration-4.5.0_pre1.patch
configuration-4.5.0_pre1.patch (text/plain), 4.26 KB, created by
Davide Pesavento (RETIRED)
on 2009-04-26 22:51:31 UTC
(
hide
)
Description:
configuration-4.5.0_pre1.patch
Filename:
MIME Type:
Creator:
Davide Pesavento (RETIRED)
Created:
2009-04-26 22:51:31 UTC
Size:
4.26 KB
patch
obsolete
>diff -Naur qtjambi-src-preview-4.5.0_01~orig/build.xml qtjambi-src-preview-4.5.0_01/build.xml >--- qtjambi-src-preview-4.5.0_01~orig/build.xml 2009-04-25 19:52:02.000000000 +0200 >+++ qtjambi-src-preview-4.5.0_01/build.xml 2009-04-25 19:57:55.000000000 +0200 >@@ -293,8 +293,7 @@ > </target> > > <target name="library.designer.bundle" >- depends="library.designer.compile" >- unless="qtjambi.library.cppfiles.uptodate"> >+ depends="library.designer.compile"> > <jar destfile="${outputDir}/qtjambi-designer-${qtjambi.version}.jar" > basedir="${outputDir}"> > <include name="com/trolltech/tools/designer/*"/> >@@ -593,7 +592,10 @@ > <target name="init" > depends="init.ant, init.taskdef" > description="Initializes the Qt Jambi build environment." > >- <qtjambi-initialize verbose="true" configuration="${qtjambi.config}" /> >+ <qtjambi-initialize verbose="true" configuration="${qtjambi.config}" >+ opengl="${gentoo.opengl}" phonon="${gentoo.phonon}" >+ sqlite="${gentoo.sqlite}" webkit="${gentoo.webkit}" >+ xmlpatterns="${gentoo.xmlpatterns}"/> > </target> > > <target name="generator" >diff -Naur qtjambi-src-preview-4.5.0_01~orig/com/trolltech/tools/ant/InitializeTask.java qtjambi-src-preview-4.5.0_01/com/trolltech/tools/ant/InitializeTask.java >--- qtjambi-src-preview-4.5.0_01~orig/com/trolltech/tools/ant/InitializeTask.java 2009-04-25 19:52:02.000000000 +0200 >+++ qtjambi-src-preview-4.5.0_01/com/trolltech/tools/ant/InitializeTask.java 2009-04-25 19:52:30.000000000 +0200 >@@ -105,6 +105,26 @@ > return configuration; > } > >+ public void setOpengl(String opengl) { >+ this.opengl = opengl; >+ } >+ >+ public void setPhonon(String phonon) { >+ this.phonon = phonon; >+ } >+ >+ public void setSqlite(String sqlite) { >+ this.sqlite = sqlite; >+ } >+ >+ public void setWebkit(String webkit) { >+ this.webkit = webkit; >+ } >+ >+ public void setXmlpatterns(String xmlpatterns) { >+ this.xmlpatterns = xmlpatterns; >+ } >+ > public void execute() throws BuildException { > props = PropertyHelper.getPropertyHelper(getProject()); > props.setNewProperty(null, OSNAME, decideOSName()); >@@ -301,7 +321,7 @@ > } > > private String decideLibSubDir() { >- libSubDir = OSInfo.os() == OSInfo.OS.Windows ? "bin" : "lib"; >+ libSubDir = ""; > if (verbose) System.out.println("qtjambi.libsubdir: " + libSubDir); > return libSubDir; > } >@@ -330,8 +350,6 @@ > StringBuilder path = new StringBuilder(); > path.append(props.getProperty(null, QTDIR)); > path.append("/"); >- path.append(props.getProperty(null, LIBSUBDIR)); >- path.append("/"); > path.append(LibraryEntry.formatQtName(name, debug, version)); > return new File(path.toString()).exists(); > } >@@ -347,31 +365,31 @@ > } > > private String decideSqlite() { >- String result = String.valueOf(doesQtPluginExist("qsqlite", "sqldrivers")); >+ String result = sqlite; > if (verbose) System.out.println(SQLITE + ": " + result); > return result; > } > > private String decidePhonon() { >- String result = String.valueOf(doesQtLibExist("phonon", 4)); >+ String result = phonon; > if (verbose) System.out.println(PHONON + ": " + result); > return result; > } > > private String decideWebkit() { >- String result = String.valueOf(doesQtLibExist("QtWebKit", 4)); >+ String result = webkit; > if (verbose) System.out.println(WEBKIT + ": " + result); > return result; > } > > private String decideXMLPatterns() { >- String result = String.valueOf(doesQtLibExist("QtXmlPatterns", 4)); >+ String result = xmlpatterns; > if (verbose) System.out.println(XMLPATTERNS + ": " + result); > return result; > } > > private String decideOpenGL() { >- String result = String.valueOf(doesQtLibExist("QtOpenGL", 4)); >+ String result = opengl; > if (verbose) System.out.println(OPENGL + ": " + result); > return result; > } >@@ -385,4 +403,9 @@ > private String qmakespec; > private String qtdir; > private String libSubDir; >+ private String opengl; >+ private String phonon; >+ private String sqlite; >+ private String webkit; >+ private String xmlpatterns; > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 260774
:
183594
|
183595
|
183596
|
183598
|
188928
|
188929
|
188940
|
188947
|
189574
|
189576
|
189577
|
190031
|
190038
|
190214
|
190215
|
191328
|
191329
|
191330