1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
# $Id: /trunk/debian/dists/henplus/debian/packages 41 2005-03-11T20:01:17.408822Z dexter $
# If the debian/rules or debian/control file is missing, rebuild the file:
#
# $ yada rebuild control
# $ yada rebuild rules
%define with_sablevm 0
%define with_kaffe 1
# Macro switches:
# with_sablevm=%{with_sablevm}
# with_kaffe=%{with_kaffe}
%define libant_version 1.6
%if %{with_sablevm}
%define java sablevm
%define javac jikes-sablevm
%define bin_java java-sablevm
%define bin_javac jikes-sablevm
%else
%if %{with_kaffe}
%define java kaffe-jthreads
%define javac jikes-kaffe
%define bin_java kaffe
%define bin_javac jikes-kaffe
%endif
%endif
# Other macros:
# libant_version=%{libant_version}
# java=%{java}
# javac=%{javac}
# bin_java=%{bin_java}
# bin_javac=%{bin_javac}
Source: henplus
Section: utils
Priority: optional
Maintainer: Piotr Roszatycki <dexter@debian.org>
Standards-Version: 3.6.1
Upstream-Source: <URL:ftp://ftp.ossp.org/pkg/lib/uuid/uuid-([0-9.]+)\.tar.gz>
Home-Page: <URL:http://http://henplus.sourceforge.net/>
Upstream-Authors: Henner Zeller <H.Zeller@acm.org>
Description: JDBC SQL commandline frontend with TAB-completion
Copyright: GPL
author: Henner Zeller <H.Zeller@acm.org>
Build-Depends-Indep: %{java}, %{javac}
Build-Depends-Indep: libant%{libant_version}-java, libxerces-java
Build-Depends-Indep: libreadline-java (>= 0.7.3)
%if %{with_kaffe}
Build-Conflicts-Indep: kaffe-pthreads
%endif
Patches: patches/*.patch
Major-Changes:
%`cd debian/patches; ls *.patch | sed -e 's/^/ /'`
Build: bash
%include java-common.packages
.
$ANT jar
Clean: bash
%include java-common.packages
.
$ANT clean
Package: henplus
Architecture: all
Depends: %{java} | java-virtual-machine
Depends: libreadline-java (>= 0.7.3)
Description: JDBC SQL commandline frontend with TAB-completion
HenPlus is a SQL shell written in Java that works for any database that
has JDBC support. It provides commandline history, commandline completion,
and can handle multiple connects to different databases at once.
Database-independant table dumps, aliases, and variables are also supported.
Install: bash
%include java-common.packages
.
$ANT install -DDESTDIR=$ROOT
.
yada install -script debian/scripts/henplus
.
yada undocumented henplus.1
|