Skip to content

Commit

Permalink
New CDK release. And moved JavaDoc generation back to javadoc.xml.
Browse files Browse the repository at this point in the history
git-svn-id: https://cdk.svn.sourceforge.net/svnroot/cdk/trunk/cdk@533 eb4e18e3-b210-0410-a6ab-dec725e4b171
  • Loading branch information
egonw committed Aug 5, 2002
1 parent f82f427 commit 08b1a6d
Show file tree
Hide file tree
Showing 12 changed files with 34 additions and 22 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
@@ -1,7 +1,7 @@
CHANGELOG
------------------------------------

Changes in CVS
20020805 Release
------------------------------------
* Added --no3D option to cdk.applications.Viewer
* Do not fail if bond order != integer, assume order=1
Expand Down
13 changes: 2 additions & 11 deletions build.xml
Expand Up @@ -231,6 +231,8 @@
</jar>
</target>

<target name="dist-all" depends="dist-core, dist-extra, dist-with-java3d, dist-libio, dist-cml" />

<target name="dist" depends="dist-extra" />

<target name="dist-with-java3d" depends="compile-with-java3d, dist-core">
Expand Down Expand Up @@ -377,15 +379,4 @@
</java>
</target>

<target name="javadoc" depends="init">
<javadoc packagenames="org.openscience.cdk.*"
sourcepath="${src}"
defaultexcludes="yes"
destdir="doc/api"
author="true"
version="true"
use="true">
<classpath refid="project.class.path" />
</javadoc>
</target>
</project>
7 changes: 5 additions & 2 deletions javadoc.xml
@@ -1,7 +1,8 @@
<project name="CDK" default="docbook" basedir=".">

<property name="javadoc.dir" value="doc.api" />
<property name="javadoc.dir" value="doc/api" />
<property name="pathtojava3d" value="" />
<property name="src" value="src" />

<path id="project.class.path">
<pathelement location="/usr/local/j2sdk1.4.0/lib/rt.jar" />
Expand All @@ -25,7 +26,9 @@
<mkdir dir="${javadoc.dir}" />

<javadoc packagenames="org.openscience.cdk.*"
sourcepath="." destdir="${javadoc.dir}"
sourcepath="${src}" destdir="${javadoc.dir}"
defaultexcludes="yes"
author="true" version="true" use="true"
public="true">
<classpath refid="project.class.path" />
</javadoc>
Expand Down
2 changes: 1 addition & 1 deletion packages/tar/cdk-bin/ChangeLog
@@ -1,4 +1,4 @@
20020723
20020805
=================
* Updated cdk-view man page
* Updated for cdk -> cdk-core + cdk-extra split
Expand Down
2 changes: 1 addition & 1 deletion packages/tar/cdk-bin/VERSION
@@ -1 +1 @@
20020723
20020805
13 changes: 12 additions & 1 deletion packages/tar/cdk-bin/configure.in
Expand Up @@ -5,6 +5,17 @@ AC_INIT()
AM_INIT_AUTOMAKE(cdk-bin, `cat VERSION`)

dnl deal with options
SGMLDIR=""
AC_ARG_WITH(sgmldir,
[ --with-sgmldir=DIR where to find the SGML dir ],
[ if test -n "$withval"
then
SGMLDIR="$withval"
fi
]
)
AC_SUBST(SGMLDIR)

AC_ARG_WITH(xercesdir,
[ --with-xercesdir=DIR where to find the xerces.jar library
[/usr/share/java] ],
Expand Down Expand Up @@ -176,7 +187,7 @@ dnl detection copied from Lire 1.0 (www.logreport.org)
dnl Try to find the SGML directory layout
dnl Find a list of potential SGML/XML trees, we will look into subdirectories
dnl of this one to find the DSSSL/DTD/XSLT stuff.
sgmldirs=""
sgmldirs=$SGMLDIR
try_dirs="/usr/lib/sgml /usr/share/sgml /usr/local/lib/sgml /usr/local/share/sgml /usr/share/xml /usr/local/share/xml /usr/local/share/xsl"
if test x"$prefix" != "xNONE"
then
Expand Down
4 changes: 4 additions & 0 deletions packages/tar/cdk-doc/ChangeLog
@@ -1,3 +1,7 @@
20020805
=================
* API for cdk.* 20020805

20020518
=================
* first tar.gz release
Expand Down
2 changes: 1 addition & 1 deletion packages/tar/cdk-doc/VERSION
@@ -1 +1 @@
20020518
20020805
4 changes: 2 additions & 2 deletions packages/tar/cdk-doc/javadoc/Makefile.am
Expand Up @@ -17,7 +17,7 @@ alldoc_DATA = ${DOCTAR}

javadoc.tar.gz:
cd ../../../..; ${ANT} -buildfile javadoc.xml html
cd ../../../..; ${TAR} cf javadoc.tar javadoc
cp ../../../../javadoc.tar .
cd ../../../../doc; ${TAR} cf javadoc.tar api
cp ../../../../doc/javadoc.tar .
${GZIP} -9 javadoc.tar

4 changes: 4 additions & 0 deletions packages/tar/cdk-test/ChangeLog
@@ -1,3 +1,7 @@
20020805
=================
* More tests

20020308
=================
* first release
Expand Down
2 changes: 1 addition & 1 deletion packages/tar/cdk-test/VERSION
@@ -1 +1 @@
20020308
20020805
1 change: 0 additions & 1 deletion packages/tar/cdk-test/configure.in
Expand Up @@ -161,7 +161,6 @@ fi
AC_SUBST(PATHTOXERCES)

dnl needed for check_xml
AC_PATH_PROGS(PATHTONSGMLS, onsgmls nsgmls, no)

AC_OUTPUT([
Makefile
Expand Down

0 comments on commit 08b1a6d

Please sign in to comment.