Initial packaging of www-admin (I copied trunk/debian/ to tags/1.1.4/ so we can build both versions)

1.2@1701
Michael Prokop 18 years ago
parent 6b2efead79
commit e8377b3236

5
debian/changelog vendored

@ -0,0 +1,5 @@
www-admin (1.1.4-1) unstable; urgency=low
* Initial release.
-- Michael Prokop <mika@grml.org> Tue, 10 Feb 2009 18:45:14 +0100

1
debian/compat vendored

@ -0,0 +1 @@
7

14
debian/control vendored

@ -0,0 +1,14 @@
Source: www-admin
Section: admin
Priority: extra
Maintainer: Michael Prokop <mika@grml.org>
Build-Depends: debhelper (>= 5)
Standards-Version: 3.8.0
Homepage: http://sipwise.com/
Package: www-admin
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, ossbss, libcatalyst-perl
Description: administration framework to configure the Sipwise NGCP
This package provides an administration framework which is used to
configure the Sipwise NGCP.

22
debian/copyright vendored

@ -0,0 +1,22 @@
This package was debianized by Michael Prokop <mika@grml.org> on
Tue, 10 Feb 2009 18:45:14 +0100.
It was downloaded from http://sipwise.com/
Upstream Author:
Daniel Tiefnig <dtiefnig@sipwise.com>
Copyright:
Copyright (c) 2007 Sipwise GmbH, Austria
License:
All software included in this package is Copyright (c) 2007 Sipwise
GmbH, Austria. All rights reserved.
You may not copy, distribute or modify without prior written permission
from Sipwise GmbH, Austria.
The Debian packaging is copyright 2009, Michael Prokop <mika@grml.org> and
is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

2
debian/dirs vendored

@ -0,0 +1,2 @@
usr/bin
usr/sbin

73
debian/rules vendored

@ -0,0 +1,73 @@
#!/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
build: build-stamp
build-stamp:
dh_testdir
# Add here commands to compile the package.
# $(MAKE)
touch $@
clean:
dh_testdir
dh_testroot
rm -f build-stamp
# Add here commands to clean up after the build process.
# $(MAKE) clean
dh_clean
install: build
dh_testdir
dh_testroot
dh_prep
dh_installdirs usr/local/admin usr/local/admin/script/
# Add here commands to install the package into debian/www-admin.
cp -a lib debian/www-admin/usr/local/admin/
cp -a root debian/www-admin/usr/local/admin/
install -m 644 admin.yml debian/www-admin/usr/local/admin/
# we don't need admin_create.pl and admin_test.pl:
install -m 755 script/admin_cgi.pl debian/www-admin/usr/local/admin/script/
install -m 755 script/admin_fastcgi.pl debian/www-admin/usr/local/admin/script/
install -m 755 script/admin_server.pl debian/www-admin/usr/local/admin/script/
# make sure we don't have any svn files inside the .deb:
find debian/www-admin -name \.svn -print0 | xargs -0 rm -rf
# Build architecture-dependent files here.
binary-arch: install
# We have nothing to do by default.
# Build architecture-independent files here.
binary-indep: install
dh_testdir
dh_testroot
dh_installchangelogs
dh_installdocs
dh_installexamples
dh_installman
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
Loading…
Cancel
Save