From: Dinko Korunic <Dinko.Korunic@CARNet.hr>
Date: Mon, 22 Oct 2007 16:45:27 +0000 (+0000)
Subject: r1: [svn-inject] Installing original source of php-suhosin-cn
X-Git-Tag: v0.9.32.2~7
X-Git-Url: http://ftp.carnet.hr/pub/carnet-debian/scm?a=commitdiff_plain;h=ceac04497695e9b8144689db8c76bcd4144c08b6;p=php-suhosin-cn.git

r1: [svn-inject] Installing original source of php-suhosin-cn
---

ceac04497695e9b8144689db8c76bcd4144c08b6
diff --git a/README.CARNet b/README.CARNet
new file mode 100644
index 0000000..a4043c4
--- /dev/null
+++ b/README.CARNet
@@ -0,0 +1,6 @@
+php-suhosin-cn
+~~~~~~~~~~~~~~
+
+Ovaj paket donosi neka dodatna pravila i iznimke za CARNet pakete.
+
+ -- Dinko Korunic <kreator@carnet.hr>  Mon, 22 Oct 2007 17:43:23 +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..dcfba55
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+php-suhosin-cn (1.3-1) stable; urgency=low
+
+  * inicijalna verzija paketa -- za sada je dummy, dok ne ustanovimo postoje
+    li problemi sa ostalim PHP programima
+
+ -- Dinko Korunic <kreator@carnet.hr>  Sun, 21 Oct 2007 17:50:14 +0200
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..0c98a80
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,24 @@
+Source: php-suhosin-cn
+Section: net
+Priority: optional
+Maintainer: Dinko Korunic <kreator@carnet.hr>
+Build-Depends: debhelper (>= 4)
+Standards-Version: 3.7.2
+
+Package: php-suhosin-cn
+Architecture: all
+Depends: php4-suhosin | php5-suhosin
+Description: advanced protection module for php4/5 -- CARNet version
+ This package provides a module for suhosin functions.
+ .
+ Suhosin is an advanced protection system for PHP installations. It was
+ designed to protect servers and users from known and unknown flaws in PHP
+ applications and the PHP core. Suhosin comes in two independent parts, that
+ can be used separately or in combination. The first part is a small patch
+ against the PHP core, that implements a few low-level protections against
+ bufferoverflows or format string vulnerabilities and the second part is a
+ powerful PHP extension that implements all the other protections.
+ .
+ Homepage: <http://www.hardened-php.net/suhosin/>
+ .
+ This package brings CARNet-related configuration.
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..ef5ce6c
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1,2 @@
+changelog.CARNet
+README.CARNet
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..ec73f03
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,73 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper. 
+# This file is public domain software, originally written by Joey Hess.
+#
+# This version is for packages that are architecture independent.
+
+# 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 build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+
+	# Add here commands to clean up after the build process.
+	#-$(MAKE) clean
+	#-$(MAKE) distclean
+
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	# Add here commands to install the package into debian/<packagename>.
+	#$(MAKE) prefix=`pwd`/debian/`dh_listpackages`/usr install
+
+# Build architecture-independent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs
+	dh_installdocs
+#	dh_installexamples
+#	dh_installmenu
+#	dh_installdebconf
+#	dh_installlogrotate
+#	dh_installemacsen
+#	dh_installcatalogs
+#	dh_installpam
+#	dh_installmime
+#	dh_installinit
+#	dh_installcron
+#	dh_installinfo
+#	dh_undocumented
+	dh_installman
+	dh_link
+	dh_compress
+	dh_fixperms
+#	dh_perl
+#	dh_python
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+# Build architecture-dependent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install