aboutsummaryrefslogtreecommitdiffstats
path: root/packaging/ubuntu/debian
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-05-24 09:52:10 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-05-24 09:52:10 -0700
commit1a97d011bf5ba22987c75c98dadcccd525b95aa5 (patch)
tree32f5f7a3850fb6ae09eb3e04bf39e2af9e9227ff /packaging/ubuntu/debian
parent38456cbaacc0782c785693fe16de3b555e5a060f (diff)
downloadsubsurface-1a97d011bf5ba22987c75c98dadcccd525b95aa5.tar.gz
Remove rules and control files for Ubuntu 12.04
Since we got rid of all the Qt4 support there is no point in having those files around anymore, either. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/ubuntu/debian')
-rw-r--r--packaging/ubuntu/debian/12.04.control45
-rwxr-xr-xpackaging/ubuntu/debian/12.04.rules43
2 files changed, 0 insertions, 88 deletions
diff --git a/packaging/ubuntu/debian/12.04.control b/packaging/ubuntu/debian/12.04.control
deleted file mode 100644
index 147d3b979..000000000
--- a/packaging/ubuntu/debian/12.04.control
+++ /dev/null
@@ -1,45 +0,0 @@
-Source: subsurface
-Section: utils
-Priority: optional
-Maintainer: Dirk Hohndel <dirk@hohndel.org>
-Build-Depends: asciidoc,
- debhelper (>= 9),
- libgconf2-dev,
- libtool,
- libxml2-dev,
- libxslt-dev,
- libsoup2.4-dev,
- pkg-config,
- txt2html,
- libzip-dev,
- libsqlite3-dev,
- autoconf,
- automake,
- cmake,
- dpkg-dev (>= 1.16.1.1),
- libusb-1.0-0-dev,
- dh-autoreconf,
- libz-dev,
- libssl-dev,
- git,
- qt4-qmake,
- libqt4-svg,
- libqt4-webkit,
- libqtwebkit-dev,
- libqt4-dev,
- qtscript-tools,
- qt4-linguist-tools
-Standards-Version: 3.9.5
-Homepage: http://subsurface-divelog.org
-#Vcs-Git: git://git.debian.org/collab-maint/subsurface-4.2.90.git
-#Vcs-Browser: http://git.debian.org/?p=collab-maint/subsurface-4.2.90.git;a=summary
-
-Package: subsurface
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: Dive log program
- Subsurface is an open source divelog program that runs on Windows, Mac and Linux.
- Subsurface is able to track single- and multi-tank dives using air, Nitrox or
- TriMix. It also allows logging of weights and exposure protection used, dive
- masters and dive buddies and enables the user to rate dives and provide
- additional dive notes.
diff --git a/packaging/ubuntu/debian/12.04.rules b/packaging/ubuntu/debian/12.04.rules
deleted file mode 100755
index fad75fb03..000000000
--- a/packaging/ubuntu/debian/12.04.rules
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/usr/bin/make -f
-# -*- makefile -*-
-
-# Uncomment this to turn on verbose mode.
-export DH_VERBOSE=1
-
-
-%:
- dh $@
-
-override_dh_auto_clean:
- (cd libdivecomputer ; make clean || true)
- make clean || true
- rm -rf libgit2/build
- rm -rf marble-build
- rm -f ssrf-version.h
- rm -f subsurface
- rm -f Makefile
-
-override_dh_auto_configure:
- (cd libdivecomputer ; autoreconf --install ; ./configure --disable-shared ; make -j8 )
- (mkdir libgit2/build ; cd libgit2/build ; \
- cmake -DBUILD_SHARED_LIBS=OFF -DBUILD_CLAR=OFF -DBUILD_EXAMPLES=OFF .. ; \
- sed -i 's/.so$/.a/' CMakeCache.txt ; make -j8 )
- (mkdir marble-build ; cd marble-build ; \
- cmake -DQTONLY=ON -DQT5BUILD=OFF \
- -DBUILD_MARBLE_APPS=OFF -DBUILD_MARBLE_EXAMPLES=OFF \
- -DBUILD_MARBLE_TESTS=OFF -DBUILD_MARBLE_TOOLS=OFF \
- -DBUILD_TESTING=OFF -DWITH_DESIGNER_PLUGIN=OFF \
- -DBUILD_WITH_DBUS=OFF ../marble-source ; \
- make -j8 ; \
- ln -s src/lib/marble lib ; \
- mkdir include ; cd include ; for i in `find ../../marble-source -name \*.h` ; do ln -s $$i . ; done ; \
- ln -s . marble )
- qmake-qt4 LIBDCDEVEL=./libdivecomputer LIBGIT2DEVEL=./libgit2 LIBGIT2STATIC=1 LIBMARBLEDEVEL=./marble-build SPECIAL_MARBLE_PREFIX=1 subsurface.pro
-
-override_dh_installchangelogs:
- dh_installchangelogs
- dh_installchangelogs ReleaseNotes/ReleaseNotes.txt
- txt2html Documentation/user-manual.txt > Documentation/user-manual.html
- mkdir -p debian/subsurface/usr/share/doc/subsurface
- cp Documentation/user-manual.txt debian/subsurface/usr/share/doc/subsurface/
- cp Documentation/user-manual.html debian/subsurface/usr/share/doc/subsurface/html