summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2011-03-30 02:54:36 (GMT)
committerChristian Pointner <equinox@helsinki.at>2011-03-30 02:54:36 (GMT)
commit0f362d16fb55b3a1fce3643fb4037c6992f8456e (patch)
tree5ced46283e5d06f849c00ba305616f66fcadd414
parent50bdc20f9024216de8f6cb45756ca54ffec42a5d (diff)
added inital debian packaging
-rw-r--r--rhnop-server/debian/changelog5
-rw-r--r--rhnop-server/debian/compat1
-rw-r--r--rhnop-server/debian/control15
-rw-r--r--rhnop-server/debian/copyright28
-rwxr-xr-xrhnop-server/debian/rules60
5 files changed, 109 insertions, 0 deletions
diff --git a/rhnop-server/debian/changelog b/rhnop-server/debian/changelog
new file mode 100644
index 0000000..57e75c1
--- /dev/null
+++ b/rhnop-server/debian/changelog
@@ -0,0 +1,5 @@
+rhnop-server (0.1) unstable; urgency=low
+
+ * Initial release.
+
+ -- Christian Pointner <equinox@helsinki> Wed, 30 Mar 2011 13:50:41 +0200
diff --git a/rhnop-server/debian/compat b/rhnop-server/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/rhnop-server/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/rhnop-server/debian/control b/rhnop-server/debian/control
new file mode 100644
index 0000000..25892dd
--- /dev/null
+++ b/rhnop-server/debian/control
@@ -0,0 +1,15 @@
+Source: rhnop-server
+Section: interpreters
+Priority: optional
+Maintainer: Christian Pointner <equinox@helsinki.at>
+Build-Depends: debhelper (>= 5), liblua5.1-0-dev
+Standards-Version: 3.8.2
+Homepage: http://www.helsinki.at/
+
+Package: rhnop-server
+Architecture: any
+Depends: ${shlibs:Depends}, liblua5.1-mq, liblua5.1-socket2, liblua5.1-sql-mysql-2
+Description: Radio Helsinki now playing information system - server
+ The Radio Helsinki now playing information system gathers the
+ now playing info into an mysql database for further processing.
+ This package contains the server component (rivendell side). \ No newline at end of file
diff --git a/rhnop-server/debian/copyright b/rhnop-server/debian/copyright
new file mode 100644
index 0000000..7812c4d
--- /dev/null
+++ b/rhnop-server/debian/copyright
@@ -0,0 +1,28 @@
+This package was debianized by Christian Pointner <equinox@helsinki.at> on
+Fri, 30 Mar 2011 11:23:42 +0200.
+
+Upstream Author: Christian Pointner <equinox@helsinki.at>
+
+Copyright: 2011 Christian Pointner
+
+License:
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program 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 General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this package; 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 General
+Public License can be found in `/usr/share/common-licenses/GPL-3'.
+
+The Debian packaging is © 2009, Christian Pointner <equinox@helsinki.at> and
+is licensed under the GPL, see above.
diff --git a/rhnop-server/debian/rules b/rhnop-server/debian/rules
new file mode 100755
index 0000000..14b266a
--- /dev/null
+++ b/rhnop-server/debian/rules
@@ -0,0 +1,60 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+configure: configure-stamp
+configure-stamp:
+ dh_testdir
+ ./configure --prefix=/usr --sysconfdir=/etc
+ touch configure-stamp
+
+build: build-stamp
+
+build-stamp: configure-stamp
+ dh_testdir
+ $(MAKE)
+ touch $@
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp configure-stamp
+ $(MAKE) clean
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_installdirs
+ $(MAKE) DESTDIR=$(CURDIR)/debian/rhnop-server install
+
+# Build architecture-independent files here.
+binary-indep: install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: install
+ dh_testdir
+ dh_testroot
+ dh_installdocs
+ dh_installchangelogs
+ dh_installexamples
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure