Initial import of keximdb files

pull/3/head
Timothy Pearson 9 years ago
parent c9f7683c90
commit 56b081e488

@ -0,0 +1,28 @@
keximdb (1.1.0-1ubuntu1) jaunty; urgency=low
* debian/rules: added --without-arts parameter to configure script call to
rebuild without arts support (LP: #320915)
-- Fabrice Coutadeur <fabricesp@ubuntu.com> Fri, 17 Apr 2009 18:15:55 +0000
keximdb (1.1.0-1) unstable; urgency=low
* Update for KOffice 1.6 packages.
-- Martin Ellis <martin.ellis@kdemail.net> Wed, 18 Oct 2006 21:22:27 +0100
keximdb (1.0.2-1) unstable; urgency=low
* Update for KOffice 1.5 packages
* libkexi-dev is gone, using koffice-dev
* Update standards version to 3.7.2
* Update copyright: new description, and update FSF address
-- Martin Ellis <martin.ellis@kdemail.net> Fri, 14 Jul 2006 17:08:59 +0100
keximdb (0.9-1) UNRELEASED; urgency=low
* Initial Release.
-- Martin Ellis <martin.ellis@kdemail.net> Mon, 30 May 2005 16:29:07 +0000

@ -0,0 +1,20 @@
Source: keximdb
Priority: optional
Maintainer: Ubuntu MOTU Developers <ubuntu-motu@lists.ubuntu.com>
XSBC-Original-Maintainer: Martin Ellis <martin.ellis@kdemail.net>
Build-Depends: debhelper (>= 4.0.0), autotools-dev, koffice-trinity-dev, libglib2.0-dev
Standards-Version: 3.7.2
Section: tde
Package: kexi-mdb-plugin-trinity
Section: tde
Architecture: any
Depends: ${shlibs:Depends}
Description: MS Access (MDB) driver for Kexi [Trinity]
MDB migration driver for converting MS Access databases in MDB files
into KexiDB databases.
.
This driver allows Kexi, the KOffice database program, to convert MDB
database files to Kexi databases via the Tools->Migration->Import Database
menu option. Note that this package does not allow MDB files to be opened
directly - they must be converted to a Kexi database first.

@ -0,0 +1,33 @@
This package was debianized by Martin Ellis <martin.ellis@kdemail.net> on
Mon, 30 May 2005 16:29:07 +0000.
It was downloaded from
svn://anonsvn.kde.org/home/kde/trunk/kdenonbeta/keximdb
Copyright Holder: Martin Ellis <martin.ellis@kdemail.net>
License:
keximdb - a Kexi plugin for importing Microsoft Access databases.
Copyright (C) 2005-2006 Martin Ellis <martin.ellis@kdemail.net>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
On Debian systems, the complete text of the GNU Lesser General
Public License can be found in `/usr/share/common-licenses/LGPL'.
The Debian packaging is Copyright 2006 Martin Ellis <martin.ellis@kdemail.net>
and is also licensed under the LGPL, see `/usr/share/common-licenses/LGPL'.

@ -0,0 +1,105 @@
#!/usr/bin/make -f
# -*- makefile -*-
# debian/rules for keximdb.
include /usr/share/cdbs/1/rules/debhelper.mk
include debian/cdbs/kde.mk
#include /usr/share/cdbs/1/rules/patchsys-quilt.mk
DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include
DEB_CONFIGURE_MANDIR := /opt/trinity/share/man
DEB_CONFIGURE_PREFIX := /opt/trinity
DEB_CONFIGURE_INFODIR := /opt/trinity/share/info
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
&& echo xz || echo bzip2)
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# These are used for cross-compiling and for saving the configure script
# from having to guess our platform (since we know it already)
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
CFLAGS = -Wall -g
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O0
else
CFLAGS += -O2
endif
debian/stamp-bootstrap:
dh_testdir
# Regenerate build system
! [ -f /usr/share/libtool/ltmain.sh ] || \
cp -f /usr/share/libtool/ltmain.sh admin/ltmain.sh
! [ -f /usr/share/libtool/config/ltmain.sh ] || \
cp -f /usr/share/libtool/config/ltmain.sh admin/ltmain.sh
cp -f /usr/share/aclocal/libtool.m4 admin/libtool.m4.in
autoreconf --install && automake -f && \
$(MAKE) -f admin/Makefile.common && \
touch debian/stamp-bootstrap
config.status: configure
dh_testdir
CFLAGS="$(CFLAGS)" ./configure \
--host=$(DEB_HOST_GNU_TYPE) \
--build=$(DEB_BUILD_GNU_TYPE) \
--disable-rpath \
--without-arts \
--prefix=/opt/trinity
build: build-stamp
build-stamp: config.status
dh_testdir
$(MAKE)
touch build-stamp
clean:
dh_testdir
dh_testroot
rm -f build-stamp
-$(MAKE) distclean
ifneq "$(wildcard /usr/share/misc/config.sub)" ""
cp -f /usr/share/misc/config.sub config.sub
endif
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
cp -f /usr/share/misc/config.guess config.guess
endif
dh_clean
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
$(MAKE) install DESTDIR=$(CURDIR)/debian/kexi-mdb-plugin
# Build architecture-independent files here.
binary-indep: build install
# We have nothing to do by default.
# Build architecture-dependent files here.
binary-arch: build install
dh_testdir
dh_testroot
dh_installchangelogs ChangeLog
dh_installdocs
dh_link
dh_strip
dh_compress
dh_fixperms
# dh_makeshlibs
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install
Loading…
Cancel
Save