Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 71219 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
attachment.cgi?id=62150 (text/plain), 1.75 KB, created by
Petteri Räty (RETIRED)
on 2005-10-22 12:42:20 UTC
(
hide
)
Description:
build.xml
Filename:
MIME Type:
Creator:
Petteri Räty (RETIRED)
Created:
2005-10-22 12:42:20 UTC
Size:
1.75 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="dist.docs" value="${dist}/doc/api"/> > > <property name="libdir" value="lib"/> > > <property name="pkg" value="${package.name}"/> > <property name="jar" value="${project.name}.jar"/> > > <path id="lib.classpath"> > <fileset dir="${libdir}"> > <include name="**/*.jar"/> > </fileset> > </path> > > <!-- 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}" classpathref="lib.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}" excludes="MANIFEST.MF" /> > </jar> > </target> > > <target name="javadoc" depends="compile"> > <javadoc sourcepath="${src}" destdir="${dist.docs}" packagenames="*" classpathref="lib.classpath"/> > </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