From e6b99b972182db14193dae5c7f0d66f472f981f4 Mon Sep 17 00:00:00 2001 From: Grupa za izradu paketa Date: Sun, 21 Oct 2007 21:48:34 +0000 Subject: [PATCH] r1: [svn-inject] Installing original source of samba-cn --- README.CARNet | 5 ++++ changelog.CARNet | 1 + debian/changelog | 33 +++++++++++++++++++++ debian/compat | 1 + debian/control | 15 ++++++++++ debian/docs | 2 ++ debian/postinst | 42 ++++++++++++++++++++++++++ debian/rules | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 8 files changed, 185 insertions(+) create mode 100644 README.CARNet create mode 120000 changelog.CARNet create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/docs create mode 100755 debian/postinst create mode 100755 debian/rules diff --git a/README.CARNet b/README.CARNet new file mode 100644 index 0000000..3aa5bc7 --- /dev/null +++ b/README.CARNet @@ -0,0 +1,5 @@ +samba-cn + +Trenutno nema CARNet specificnih izmjena u paketu. + + -- Bozo Juretic Wed, 28 Apr 2004 19:11:46 +0200 diff --git a/changelog.CARNet b/changelog.CARNet new file mode 120000 index 0000000..194579e --- /dev/null +++ b/changelog.CARNet @@ -0,0 +1 @@ +changelog.Debian \ No newline at end of file diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..10609fd --- /dev/null +++ b/debian/changelog @@ -0,0 +1,33 @@ +samba-cn (3.0.24-1) carnet-etch; urgency=low + + * Prva verzija za Etch + + -- Ivan Rako Sun, 21 Oct 2007 23:45:03 +0200 + +samba-cn (3.0.10-1) testing; urgency=high + + * ovisnost o novoj inacici koja ispravlja propust cjelobrojnog + prepisivanja (CAN-2004-1154) + + -- Ivan 'ico' Rako Tue, 21 Dec 2004 21:31:42 +0100 + +samba-cn (3.0.8-1) testing unstable; urgency=high + + * ovisnost o novoj verziji koja ispravlja ranjivost na DoS napad + (CAN-2004-0930) + + -- Ivan 'ico' Rako Tue, 16 Nov 2004 13:46:10 +0100 + +samba-cn (3.0.2a-1) testing unstable; urgency=low + + * Novi odrzavatelj paketa + * Izdanje za Sarge Debian distribuciju + * Dodana ovisnost i o smbclient paketu + + -- Bozo Juretic Wed, 28 Apr 2004 19:11:46 +0200 + +samba-cn (3.0.0final-1) + + * inicijalna verzija paketa + + -- Ivan 'ico' Rako Thu, 20 Nov 2003 19:29:17 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +4 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..cf5c263 --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: samba-cn +Section: net +Priority: optional +Maintainer: Ivan Rako +Build-Depends: debhelper (>= 4.0.0) +Standards-Version: 3.6.1 + +Package: samba-cn +Architecture: all +Depends: samba, smbclient +Description: a LanManager-like file and printer server for Unix + The Samba software suite is a collection of programs that + implements the SMB/CIFS protocol for unix systems, allowing you to serve + files and printers to Windows, NT, OS/2 and DOS clients. This protocol + is sometimes also referred to as the LanManager or NetBIOS protocol. diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..d92e2d1 --- /dev/null +++ b/debian/docs @@ -0,0 +1,2 @@ +README.CARNet +changelog.CARNet diff --git a/debian/postinst b/debian/postinst new file mode 100755 index 0000000..eeb7068 --- /dev/null +++ b/debian/postinst @@ -0,0 +1,42 @@ +#!/bin/sh + +[ "$1" = "configure" ] || exit 0 + +konfiguriraj() { + if [ -f /etc/ntp.conf ]; then + cp -p /etc/ntp.conf /etc/ntp.conf.dpkg-old + fi + + if [ -f /etc/default/ntp-servers ]; then + cp -p /etc/default/ntp-servers /etc/default/ntp-servers.dpkg-old + fi + + cp /usr/share/doc/ntp-cn/ntp.conf.tmpl /etc + + cat > /etc/default/ntp-servers </dev/null && sleep 1 || break + done + invoke-rc.d ntp start + else + /etc/init.d/ntp stop + for i in 1 2 3 4 5 6 7 8 9 0; do + pgrep -u root -f /usr/sbin/ntpd >/dev/null && sleep 1 || break + done + /etc/init.d/ntp start + fi +fi diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..ae6471a --- /dev/null +++ b/debian/rules @@ -0,0 +1,86 @@ +#!/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 + # Add here commands to configure the package. + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + # Add here commands to compile the package. + # $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + # -$(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/ntp-cn. + # $(MAKE) install DESTDIR=$(CURDIR)/debian/ntp-cn + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs -k + dh_installdocs +# dh_installexamples + dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman +# dh_link +# dh_strip +# dh_compress + dh_fixperms +# dh_perl +# dh_python +# dh_makeshlibs + 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 -- 1.7.10.4