+++ /dev/null
-DIST mckoi1.0.3.zip 2192577 SHA256 ffe54237dcdee9752489530347830a752a5606d7d5e97c2d395bf83355bee8df SHA512 37e654e5b801329e06d0d194f95298a78e8f8fde82c0e6b93bc3dc62476b0c34c4c370687948c6b631f2cc75287e144bf669b668ad3e0112e9ebf6a06c9e53d0 WHIRLPOOL 0cc7933fd106a97a22824c1386417fe1de4f0469d4b634b8239505916e921c1b043673d10d8814a4f263b16ce07f7226e82c712fb0dec0b9d30925fba0803583
+++ /dev/null
-<?xml version="1.0"?>
-
-<project name="mckoi" default="jar">
- <!-- some properties -->
- <property name="src.dir" value="src" />
- <property name="build.dir" value="build" />
- <property name="docs.dir" value="docs/api" />
- <property name="dist.dir" value="dist" />
- <property name="jarfile" value="${dist.dir}/mckoidb.jar" />
- <property name="target.jdk" value="1.4" />
- <property file="build.properties" />
-
- <!-- init -->
- <target name="init">
- <mkdir dir="${dist.dir}" />
- <mkdir dir="${build.dir}" />
- <mkdir dir="${docs.dir}" />
- </target>
-
- <!-- compile everything -->
- <target name="compile" depends="init">
- <mkdir dir="${build.dir}" />
- <javac srcdir="${src.dir}"
- destdir="${build.dir}"
- source="${target.jdk}"
- target="${target.jdk}">
- <classpath>
- <pathelement path="${gnu-regexp.jar}" />
- </classpath>
- </javac>
- </target>
-
- <!-- build the jar file -->
- <target name="jar" depends="compile">
- <jar jarfile="${jarfile}" basedir="${build.dir}" />
- </target>
-
- <!-- generate javadocs -->
- <target name="docs" depends="init">
- <javadoc sourcepath="${src.dir}"
- packagenames="com.*"
- destdir="${docs.dir}"
- author="true"
- version="true"
- use="true"
- windowtitle="${ant.project.name} API" />
- </target>
-
- <!-- clean up -->
- <target name="clean">
- <delete dir="${build.dir}" />
- <delete dir="${docs.dir}" />
- <delete dir="${dist.dir}" />
- </target>
-</project>
+++ /dev/null
-diff -ur mckoi1.0.3.orig/src/com/mckoi/store/JournalledSystem.java mckoi1.0.3/src/com/mckoi/store/JournalledSystem.java
---- mckoi1.0.3.orig/src/com/mckoi/store/JournalledSystem.java 2004-08-15 22:14:58.000000000 +0200
-+++ mckoi1.0.3/src/com/mckoi/store/JournalledSystem.java 2004-12-20 13:19:07.808868672 +0100
-@@ -1047,7 +1047,7 @@
- /**\r
- * The journal file.\r
- */\r
-- private final JournalFile journal;\r
-+ private final com.mckoi.store.JournalledSystem.JournalFile journal;\r
- \r
- /**\r
- * The position in the journal file.\r
-@@ -1069,7 +1069,7 @@
- /**\r
- * Constructs the entry.\r
- */\r
-- public JournalEntry(String resource_name, JournalFile journal,\r
-+ public JournalEntry(String resource_name, com.mckoi.store.JournalledSystem.JournalFile journal,\r
- long position, long page_number) {\r
- this.resource_name = resource_name;\r
- this.journal = journal;\r
-@@ -1080,7 +1080,7 @@
- /**\r
- * Returns the journal file for this entry.\r
- */\r
-- public JournalFile getJournalFile() {\r
-+ public com.mckoi.store.JournalledSystem.JournalFile getJournalFile() {\r
- return journal;\r
- }\r
- \r
-@@ -1716,7 +1716,7 @@
- /**\r
- * The JournalFile object that is a summary of.\r
- */\r
-- JournalFile journal_file;\r
-+ com.mckoi.store.JournalledSystem.JournalFile journal_file;\r
- \r
- /**\r
- * True if the journal is recoverable (has one or more complete check\r
-@@ -1737,7 +1737,7 @@
- /**\r
- * Constructor.\r
- */\r
-- public JournalSummary(JournalFile journal_file) {\r
-+ public JournalSummary(com.mckoi.store.JournalledSystem.JournalFile journal_file) {\r
- this.journal_file = journal_file;\r
- }\r
- \r
+++ /dev/null
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=2
-JAVA_PKG_IUSE="doc examples source"
-JAVA_PKG_WANT_BOOTCLASSPATH="1.5"
-
-inherit eutils java-pkg-2 java-ant-2
-
-DESCRIPTION="Mckoi Java SQL Database System"
-HOMEPAGE="http://mckoi.com/database/"
-SRC_URI="http://www.mckoi.com/database/ver/${P/-/}.zip"
-LICENSE="GPL-2"
-SLOT="1"
-KEYWORDS="amd64 x86"
-IUSE=""
-COMMON_DEP="=dev-java/gnu-regexp-1.1*"
-RDEPEND=">=virtual/jre-1.5
- ${COMMON_DEP}"
-DEPEND=">=virtual/jdk-1.5
- app-arch/unzip
- ${COMMON_DEP}"
-
-S="${WORKDIR}/${P/-/}"
-
-# uses enum as identifier
-JAVA_PKG_WANT_SOURCE="1.4"
-JAVA_PKG_WANT_TARGET="1.4"
-
-src_unpack() {
- default
- cd "${S}"
- unpack ./src.zip
-}
-
-java_prepare() {
- epatch "${FILESDIR}/${P}-jikes.patch"
-
- cp "${FILESDIR}/build.xml" . || die
- java-ant_rewrite-classpath
- java-ant_rewrite-bootclasspath 1.5
-
- rm -v gnu-regexp-*
- rm -v *.jar
- find demo -name '*.class' -delete
- # some contrib stuff depending on jboss
- rm -rf src/net
-}
-
-EANT_DOC_TARGET="docs"
-EANT_GENTOO_CLASSPATH="gnu-regexp-1"
-
-src_install() {
- java-pkg_dojar dist/mckoidb.jar
-
- dodoc README.txt db.conf
-
- # apidocs are in expected place
- use doc && java-pkg_dohtml -r docs/*
- use examples && java-pkg_doexamples demo
- use source && java-pkg_dosrc src/*
-}
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>java</herd>
-<longdescription>
-Mckoi SQL Database is an SQL (Structured Query Language) Database
-management system written for the JavaTM platform. Mckoi SQL Database is
-optimized to run as a client/server database server for multiple
-clients, however it can also be embedded in an application as a
-stand-alone database. It is highly multi-threaded and features an
-extendable object-oriented engine.
-
-Mckoi SQL Database started as an internal project and has since evolved
-from its inception in 1998. The main goals of the project are a code
-base that is simple to maintain and extend, ease of use and
-administration, robustness, multiple concurrent access, and performance.
-</longdescription>
-</pkgmetadata>