updated debian package generation files
This commit is contained in:
parent
11894494c4
commit
58fd5c470c
10 changed files with 39 additions and 33 deletions
|
@ -3,4 +3,5 @@ livesupport for Debian
|
|||
|
||||
First debian package of LiveSupport.
|
||||
|
||||
-- Akos Maroy <maroy@campware.org>, Tue, 19 Apr 2005 07:40:13 -0400
|
||||
-- Akos Maroy <maroy@campware.org>, Wed, 03 Aug 2005 08:17:25 -0400
|
||||
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
livesupport (1.0-1) unstable; urgency=low
|
||||
|
||||
* final release
|
||||
|
||||
-- Akos Maroy <maroy@campware.org> Wed, 03 Aug 2005 08:17:25 -0400
|
||||
|
||||
|
||||
livesupport (1.0rc1-1) unstable; urgency=low
|
||||
|
||||
* first release candidate
|
||||
|
|
|
@ -31,7 +31,6 @@ Build-Depends: debhelper (>= 4.0.0),
|
|||
libogg-dev,
|
||||
libvorbis-dev,
|
||||
libboost-dev (>= 1.31), libboost-date-time-dev (>= 1.31),
|
||||
libgtk2.0-dev (>= 2.6.1)
|
||||
Standards-Version: 3.6.1
|
||||
|
||||
Package: livesupport-libs
|
||||
|
@ -51,7 +50,6 @@ Depends: ${shlibs:Depends},
|
|||
libogg0,
|
||||
libvorbis0a,
|
||||
libboost-date-time1.32.0 (>= 1.31),
|
||||
libgtk2.0-0 (>= 2.6.1)
|
||||
Description: A radio program automation and support tool.
|
||||
This package contains the libraries used by LiveSupport.
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
This package was debianized by Akos Maroy <maroy@campware.org> on
|
||||
Tue, 19 Apr 2005 07:40:13 -0400.
|
||||
Wed, 03 Aug 2005 08:17:25 -0400
|
||||
|
||||
It was downloaded from http://livesupport.campware.org/
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
/opt/livesupport/var/storageServer/var/conf.php
|
||||
/opt/livesupport/var/archiveServer/var/conf.php
|
||||
/opt/livesupport/var/LiveSupport/storageServer/var/conf.php
|
||||
/opt/livesupport/var/LiveSupport/archiveServer/var/conf.php
|
||||
/opt/livesupport/etc/scheduler.xml
|
||||
/etc/apache/conf.d/90_php_livesupport.conf
|
||||
|
|
|
@ -45,6 +45,11 @@ case "$1" in
|
|||
$DAEMON -c $LIVESUPPORT_ETC/scheduler.xml start > /dev/null
|
||||
echo "$NAME."
|
||||
;;
|
||||
start)
|
||||
echo -n "Killing $DESC: "
|
||||
$DAEMON -c $LIVESUPPORT_ETC/scheduler.xml kill > /dev/null
|
||||
echo "$NAME."
|
||||
;;
|
||||
*)
|
||||
N=/etc/init.d/$NAME
|
||||
echo "Usage: $N {start|stop|restart|force-reload|kill}" >&2
|
||||
|
|
|
@ -4,11 +4,11 @@ Encoding=UTF-8
|
|||
Name=LiveSupport-Studio
|
||||
GenericName=LiveSupport Studio GUI Client
|
||||
Comment=
|
||||
Icon=/opt/livesupport/var/livesupport.png
|
||||
Icon=/opt/livesupport/var/LiveSupport/livesupport.png
|
||||
|
||||
Type=Application
|
||||
Categories=Application;AudioVideo;Audio;
|
||||
|
||||
Exec=/opt/livesupport/bin/gLiveSupport.sh
|
||||
Exec=/opt/livesupport/bin/LiveSupport/gLiveSupport.sh
|
||||
Terminal=false
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
?package(livesupport-studio):needs="X11" section="Apps/Sound" \
|
||||
title="LiveSupport-Studio" command="/opt/livesupport/bin/gLiveSupport.sh" \
|
||||
icon="/opt/livesupport/var/livesupport.png" \
|
||||
icon="/opt/livesupport/var/LiveSupport/livesupport.png" \
|
||||
|
||||
|
|
|
@ -23,8 +23,7 @@ apache_docroot=/var/www
|
|||
|
||||
case "$1" in
|
||||
configure)
|
||||
# do post-installation configuration
|
||||
$installdir/bin/postInstallGLiveSupport.sh --directory $installdir
|
||||
|
||||
;;
|
||||
|
||||
abort-upgrade|abort-remove|abort-deconfigure)
|
||||
|
|
|
@ -29,6 +29,7 @@ endif
|
|||
|
||||
config.status: configure
|
||||
dh_testdir
|
||||
rm -rf /opt/livesupport/*
|
||||
CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/opt/livesupport
|
||||
|
||||
|
||||
|
@ -57,16 +58,12 @@ install-arch:
|
|||
dh_clean -k -s
|
||||
dh_installdirs -s
|
||||
|
||||
# this will install everything into debian/livesupport
|
||||
$(MAKE) install prefix=$(CURDIR)/debian/livesupport/opt/livesupport
|
||||
# this will install everything into /opt/livesupport
|
||||
$(MAKE) install
|
||||
|
||||
# copy the template config files into their final places
|
||||
# so as to please the conffiles file, and the debian packager
|
||||
# that such a file really exist
|
||||
cp -f $(CURDIR)/debian/livesupport/opt/livesupport/etc/scheduler.xml.template \
|
||||
$(CURDIR)/debian/livesupport/opt/livesupport/etc/scheduler.xml
|
||||
cp -f $(CURDIR)/debian/livesupport/opt/livesupport/etc/gLiveSupport.xml.template \
|
||||
$(CURDIR)/debian/livesupport/opt/livesupport/etc/gLiveSupport.xml
|
||||
# move the installation to debian/livesupport
|
||||
mkdir -p $(CURDIR)/debian/livesupport/opt
|
||||
mv /opt/livesupport $(CURDIR)/debian/livesupport/opt
|
||||
|
||||
# now separate the libraries into debian/livesupport-libs
|
||||
mkdir -p $(CURDIR)/debian/livesupport-libs
|
||||
|
@ -84,7 +81,7 @@ install-arch:
|
|||
mkdir -p $(CURDIR)/debian/livesupport-station/opt/livesupport/bin
|
||||
mkdir -p $(CURDIR)/debian/livesupport-station/opt/livesupport/etc
|
||||
mkdir -p $(CURDIR)/debian/livesupport-station/opt/livesupport/tmp
|
||||
mkdir -p $(CURDIR)/debian/livesupport-station/opt/livesupport/var
|
||||
mkdir -p $(CURDIR)/debian/livesupport-station/opt/livesupport/var/LiveSupport
|
||||
mkdir -p $(CURDIR)/debian/livesupport-station/opt/livesupport/usr/lib
|
||||
mv -f $(CURDIR)/debian/livesupport/opt/livesupport/bin/scheduler \
|
||||
$(CURDIR)/debian/livesupport/opt/livesupport/bin/scheduler.sh \
|
||||
|
@ -93,12 +90,12 @@ install-arch:
|
|||
mv -f $(CURDIR)/debian/livesupport/opt/livesupport/etc/scheduler.xml* \
|
||||
$(CURDIR)/debian/livesupport/opt/livesupport/etc/odbc* \
|
||||
$(CURDIR)/debian/livesupport-station/opt/livesupport/etc
|
||||
mv -f $(CURDIR)/debian/livesupport/opt/livesupport/var/alib \
|
||||
$(CURDIR)/debian/livesupport/opt/livesupport/var/archiveServer \
|
||||
$(CURDIR)/debian/livesupport/opt/livesupport/var/getid3 \
|
||||
$(CURDIR)/debian/livesupport/opt/livesupport/var/htmlUI \
|
||||
$(CURDIR)/debian/livesupport/opt/livesupport/var/storageServer \
|
||||
$(CURDIR)/debian/livesupport-station/opt/livesupport/var
|
||||
mv -f $(CURDIR)/debian/livesupport/opt/livesupport/var/LiveSupport/alib \
|
||||
$(CURDIR)/debian/livesupport/opt/livesupport/var/LiveSupport/archiveServer \
|
||||
$(CURDIR)/debian/livesupport/opt/livesupport/var/LiveSupport/getid3 \
|
||||
$(CURDIR)/debian/livesupport/opt/livesupport/var/LiveSupport/htmlUI \
|
||||
$(CURDIR)/debian/livesupport/opt/livesupport/var/LiveSupport/storageServer \
|
||||
$(CURDIR)/debian/livesupport-station/opt/livesupport/var/LiveSupport
|
||||
mv -f $(CURDIR)/debian/livesupport/opt/livesupport/usr/lib/pear \
|
||||
$(CURDIR)/debian/livesupport-station/opt/livesupport/usr/lib
|
||||
mv -f $(CURDIR)/debian/livesupport/opt/livesupport/usr/bin \
|
||||
|
@ -113,18 +110,16 @@ install-arch:
|
|||
mkdir -p $(CURDIR)/debian/livesupport-studio/opt/livesupport/bin
|
||||
mkdir -p $(CURDIR)/debian/livesupport-studio/opt/livesupport/etc
|
||||
mkdir -p $(CURDIR)/debian/livesupport-studio/opt/livesupport/tmp
|
||||
mkdir -p $(CURDIR)/debian/livesupport-studio/opt/livesupport/var
|
||||
mkdir -p $(CURDIR)/debian/livesupport-studio/opt/livesupport/var/LiveSupport
|
||||
mv -f $(CURDIR)/debian/livesupport/opt/livesupport/bin/gLiveSupport \
|
||||
$(CURDIR)/debian/livesupport/opt/livesupport/bin/gLiveSupport.sh \
|
||||
$(CURDIR)/debian/livesupport/opt/livesupport/bin/postInstallGLiveSupport.sh \
|
||||
$(CURDIR)/debian/livesupport-studio/opt/livesupport/bin
|
||||
mv -f $(CURDIR)/debian/livesupport/opt/livesupport/etc/gLiveSupport.xml* \
|
||||
$(CURDIR)/debian/livesupport/opt/livesupport/etc/gtk-2.0 \
|
||||
$(CURDIR)/debian/livesupport/opt/livesupport/etc/pango \
|
||||
$(CURDIR)/debian/livesupport-studio/opt/livesupport/etc
|
||||
mv -f $(CURDIR)/debian/livesupport/opt/livesupport/var/widgets \
|
||||
$(CURDIR)/debian/livesupport/opt/livesupport/var/gLiveSupport*.res \
|
||||
$(CURDIR)/debian/livesupport/opt/livesupport/var/livesupport.png \
|
||||
mv -f $(CURDIR)/debian/livesupport/opt/livesupport/var/LiveSupport/Widgets \
|
||||
$(CURDIR)/debian/livesupport/opt/livesupport/var/LiveSupport/gLiveSupport*.res \
|
||||
$(CURDIR)/debian/livesupport/opt/livesupport/var/LiveSupport/livesupport.png \
|
||||
$(CURDIR)/debian/livesupport-studio/opt/livesupport/var
|
||||
mkdir -p $(CURDIR)/debian/livesupport-studio/usr/share/applications
|
||||
cp -a $(CURDIR)/debian/livesupport-studio.desktop \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue