Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 58617 Details for
Bug 92014
A generic build.xml for packages without their own build.xml
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.50 KB, created by
Saleem Abdulrasool (RETIRED)
on 2005-05-10 12:03:01 UTC
(
hide
)
Description:
build.xml
Filename:
MIME Type:
Creator:
Saleem Abdulrasool (RETIRED)
Created:
2005-05-10 12:03:01 UTC
Size:
1.50 KB
patch
obsolete
><?xml version="1.0" encoding="utf-8"?> ><!--- > @author: Saleem Abdulrasool <compnerd@gentoo.org> > @date: 5/9/2005 > @revision: 1.0_alpha > > @notes: Call using the following: ant -f build.xml -Dproject.name=${project name} -Dpackage.name=${package name} >--> > ><project name="Gentoo_Builder" default="jar" basedir="."> > <property name="src" value="src"/> > <property name="build" value="build"/> > <property name="dist" value="dist"/> > > <property name="pkg" value="${package.name}"/> > <property name="jar" value="${project.name}.jar"/> > > <!-- Override any defined properties --> > <property file="build.properties"/> > > <target name="init"> > <tstamp/> > <mkdir dir="${build}"/> > <mkdir dir="${dist}"/> > <mkdir dir="${dist}/doc"/> > </target> > > <target name="compile" depends="init"> > <javac srcdir="${src}" destdir="${build}" classpath="${classpath}"/> > </target> > > <target name="manifest" depends="init"> > <manifest file="${build}/MANIFEST.MF" mode="update"> > <attribute name="Built-By" value="Gentoo Portage"/> > </manifest> > </target> > > <target name="jar" depends="compile,manifest"> > <jar jarfile="${dist}/${jar}" manifest="${build}/MANIFEST.MF"> > <fileset dir="${build}"/> > </jar> > </target> > > <target name="javadoc" depends="compile"> > <javadoc sourcepath="${src}" destdir="${dist}/doc" packagenames="${pkg}"/> > </target> > > <target name="clean"> > <delete dir="${build}"/> > <delete dir="${dist}"/> > </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 92014
:
58488
|
58617
|
62149
|
62150
|
71219
|
71294
|
71296
|
72695