Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 182619 Details for
Bug 259673
games-util/gham-*
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
build.xml
build.xml (text/plain), 1.10 KB, created by
Ralph Sennhauser (RETIRED)
on 2009-02-20 08:07:15 UTC
(
hide
)
Description:
build.xml
Filename:
MIME Type:
Creator:
Ralph Sennhauser (RETIRED)
Created:
2009-02-20 08:07:15 UTC
Size:
1.10 KB
patch
obsolete
><?xml version="1.0" encoding="UTF-8"?> ><project name="gham" basedir="." default="jar"> > > <property name="src_dir" value="src"/> > <property name="classes_dir" value="classes"/> > > <path id="lib.path"> > <fileset dir="lib" includes="*" followsymlinks="true" /> > </path> > > <target name="prepare"> > <pathconvert property="manifest.path" > refid="lib.path" pathsep=" "> > <chainedmapper> > <flattenmapper/> > <globmapper from="*" to="lib/*" /> > </chainedmapper> > </pathconvert> > </target> > > <target name="compile" description="Compiles source" depends="prepare"> > <mkdir dir="${classes_dir}"/> > <javac srcdir="${src_dir}" destdir="${classes_dir}" encoding="UTF-8"> > <classpath refid="lib.path" /> > </javac> > </target> > > <target name="jar" description="Create the jar file" depends="prepare,compile"> > <jar destfile="${ant.project.name}.jar" basedir="${classes_dir}"> > <manifest> > <attribute name="Main-Class" value="net.sf.gham.Gham"/> > <attribute name="Class-Path" value="${manifest.path} ."/> > </manifest> > </jar> > </target> > ></project>
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 Raw
Actions:
View
Attachments on
bug 259673
:
182617
| 182619 |
182620
|
182621
|
182864