This is an automated email from the git hooks/post-receive script. spectra pushed a commit to branch master in repository conquest-dicom-server.
commit e767e836711f6eaa3be1c76488d406300c1673e5 Author: Mathieu Malaterre <[email protected]> Date: Thu Jul 5 09:52:57 2012 +0000 add apache bindings git-svn-id: svn+ssh://svn.debian.org/svn/debian-med/trunk/packages/conquest-dicom-server/trunk@11565 d8681a01-af0d-0410-a158-b4166a59cfaa --- debian/conquest-dicom-server.lintian-overrides | 2 +- debian/conquest-dicom-server.postinst | 6 ++++++ debian/conquest-dicom-server.prerm | 4 ++++ debian/control | 21 ++++++++++++--------- debian/dgate.conf | 2 ++ debian/dgate.load | 0 6 files changed, 25 insertions(+), 10 deletions(-) diff --git a/debian/conquest-dicom-server.lintian-overrides b/debian/conquest-dicom-server.lintian-overrides index 5c176e9..c26cb0e 100644 --- a/debian/conquest-dicom-server.lintian-overrides +++ b/debian/conquest-dicom-server.lintian-overrides @@ -1,3 +1,3 @@ # As any other DICOM implementation we need to heavily patch IJG in order to support -# all type of JPEG streams +# all types of JPEG streams conquest-dicom-server: embedded-library usr/lib/conquest-dicom-server/dgate: libjpeg diff --git a/debian/conquest-dicom-server.postinst b/debian/conquest-dicom-server.postinst index 2482e02..0b3b088 100644 --- a/debian/conquest-dicom-server.postinst +++ b/debian/conquest-dicom-server.postinst @@ -8,7 +8,13 @@ if [ "$1" != "configure" -a "$1" != "purge" ]; then exit 0 fi +# DICOM db setup /usr/lib/conquest-dicom-server/dgate -v -r +# web access: +if [ -e /etc/apache2/apache2.conf ]; then + a2enmod dgate || true +fi + exit 0 diff --git a/debian/conquest-dicom-server.prerm b/debian/conquest-dicom-server.prerm index 00b1e17..f7ddbda 100644 --- a/debian/conquest-dicom-server.prerm +++ b/debian/conquest-dicom-server.prerm @@ -10,5 +10,9 @@ fi rm /var/log/dgate.log +if [ -e /etc/apache2/apache2.conf ]; then + a2dismod dgate || true +fi + exit 0 diff --git a/debian/control b/debian/control index d695a4c..d8ce8e2 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Maintainer: Debian Med Packaging Team <[email protected]. DM-Upload-Allowed: yes Uploaders: Mathieu Malaterre <[email protected]> Priority: extra -Build-Depends: debhelper (>= 9) +Build-Depends: debhelper (>= 9), liblua5.1-dev, libsqlite3-dev Standards-Version: 3.9.3 Vcs-Browser: http://anonscm.debian.org/viewvc/debian-med/trunk/packages/conquest-dicom-server/trunk/ Vcs-Svn: svn://svn.debian.org/debian-med/trunk/packages/conquest-dicom-server/trunk/ @@ -12,15 +12,18 @@ Homepage: http://ingenium.home.xs4all.nl/dicom.html Package: conquest-dicom-server Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends} +Depends: ${shlibs:Depends}, ${misc:Depends}, libapache2-mod-fcgid Description: ConQuest DICOM Server A full featured DICOM server that has been developed based on and heavily extending the public domain UCDMC DICOM code. Some possible applications of the ConQuest DICOM software are: - - DICOM training and testing - - Demonstration and research image archives - - Image format conversion from a scanner with DICOM network access - - DICOM image viewing and slide making - - DICOM image selection, (limited) editing, and splitting and merging of series - - Advanced automatic image forwarding and (de)compression - - DICOM caching and archive merging + - DICOM training and testing + - Demonstration and research image archives + - Image format conversion from a scanner with DICOM network access + - DICOM image viewing and slide making + - DICOM image selection, (limited) editing, and splitting and merging of + series + - Advanced scriptable image modification, filtering, forwarding and + conversion + - DICOM caching and archive merging + - DICOM web access for viewing and data management (scriptable) diff --git a/debian/dgate.conf b/debian/dgate.conf new file mode 100644 index 0000000..0134c8e --- /dev/null +++ b/debian/dgate.conf @@ -0,0 +1,2 @@ +# Create a directory for the dgate binary +ScriptAlias /dgate/ "/usr/lib/conquest-dicom-server/" diff --git a/debian/dgate.load b/debian/dgate.load new file mode 100644 index 0000000..e69de29 -- Alioth's /git/debian-med/git-commit-notice on /srv/git.debian.org/git/debian-med/conquest-dicom-server.git _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
