Index: trunk/debs/php5-fss/debian.lucid/control |
— | — | @@ -0,0 +1,12 @@ |
| 2 | +Source: php5-fss |
| 3 | +Section: web |
| 4 | +Priority: optional |
| 5 | +Maintainer: Brion Vibber <brion@wikimedia.org> |
| 6 | +Build-Depends: debhelper (>= 5), php5-dev |
| 7 | +Standards-Version: 3.7.2 |
| 8 | + |
| 9 | +Package: php5-fss |
| 10 | +Architecture: any |
| 11 | +Depends: ${shlibs:Depends}, ${misc:Depends}, php5-common |
| 12 | +Description: FastStringSearch extension used for MediaWiki |
| 13 | + FastStringSearch extension used for MediaWiki |
Index: trunk/debs/php5-fss/debian.lucid/dirs |
— | — | @@ -0,0 +1,2 @@ |
| 2 | +usr/bin |
| 3 | +usr/sbin |
Index: trunk/debs/php5-fss/debian.lucid/files |
— | — | @@ -0,0 +1 @@ |
| 2 | +php5-fss_0.0.1-4ubuntu1~lucid1_amd64.deb web optional |
Index: trunk/debs/php5-fss/debian.lucid/compat |
— | — | @@ -0,0 +1 @@ |
| 2 | +5 |
Index: trunk/debs/php5-fss/debian.lucid/changelog |
— | — | @@ -0,0 +1,24 @@ |
| 2 | +php5-fss (0.0.1-4ubuntu1~lucid1) lucid-wikimedia; urgency=low |
| 3 | + |
| 4 | + * Include patch for php 5.3 |
| 5 | + |
| 6 | + -- Ariel T. Glenn <ariel@wikimedia.org> Sun, 17 Jul 2011 11:44:00 +0000 |
| 7 | + |
| 8 | +php5-fss (0.0.1-3) lucid-wikimedia; urgency=low |
| 9 | + |
| 10 | + * Changing packaging for lucid |
| 11 | + |
| 12 | + -- Ryan Lane <rlane@wikimedia.org> Mon, 4 Apr 2011 19:44:00 +0000 |
| 13 | + |
| 14 | +php5-fss (0.0.1-2) unstable; urgency=low |
| 15 | + |
| 16 | + * Added .ini file to enable |
| 17 | + |
| 18 | + -- Brion Vibber <brion@wikimedia.org> Tue, 21 Aug 2007 18:56:56 +0000 |
| 19 | + |
| 20 | +php5-fss (0.0.1-1) unstable; urgency=low |
| 21 | + |
| 22 | + * Initial release as deb package |
| 23 | + |
| 24 | + -- Brion Vibber <brion@wikimedia.org> Tue, 21 Aug 2007 18:46:56 +0000 |
| 25 | + |
Index: trunk/debs/php5-fss/debian.lucid/copyright |
— | — | @@ -0,0 +1,22 @@ |
| 2 | +This package was debianized by unknown <brion@wikimedia.org> on |
| 3 | +Tue, 21 Aug 2007 18:46:56 +0000. |
| 4 | + |
| 5 | +It was downloaded from <fill in http/ftp site> |
| 6 | + |
| 7 | +Upstream Author: <put author(s) name and email here> |
| 8 | + |
| 9 | +Copyright: <put the year(s) of the copyright, and the names of the |
| 10 | + copyright holder(s) here> |
| 11 | + |
| 12 | +License: |
| 13 | + |
| 14 | +<Put the license of the package here> |
| 15 | + |
| 16 | + |
| 17 | +The Debian packaging is (C) 2007, unknown <brion@wikimedia.org> and |
| 18 | +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. |
| 19 | + |
| 20 | + |
| 21 | +# Please also look if there are files or directories which have a |
| 22 | +# different copyright/license attached and list them here. |
| 23 | + |
Index: trunk/debs/php5-fss/debian.lucid/docs |
— | — | @@ -0,0 +1 @@ |
| 2 | +README |
Index: trunk/debs/php5-fss/debian.lucid/fss.ini |
— | — | @@ -0,0 +1,2 @@ |
| 2 | +# Enable FastStringSearch extension |
| 3 | +extension=fss.so |
Index: trunk/debs/php5-fss/debian.lucid/rules |
— | — | @@ -0,0 +1,101 @@ |
| 2 | +#!/usr/bin/make -f |
| 3 | +# -*- makefile -*- |
| 4 | +# Sample debian/rules that uses debhelper. |
| 5 | +# This file was originally written by Joey Hess and Craig Small. |
| 6 | +# As a special exception, when this file is copied by dh-make into a |
| 7 | +# dh-make output file, you may use that output file without restriction. |
| 8 | +# This special exception was added by Craig Small in version 0.37 of dh-make. |
| 9 | + |
| 10 | +# Uncomment this to turn on verbose mode. |
| 11 | +#export DH_VERBOSE=1 |
| 12 | + |
| 13 | + |
| 14 | + |
| 15 | + |
| 16 | +CFLAGS = -Wall -g |
| 17 | + |
| 18 | +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) |
| 19 | + CFLAGS += -O0 |
| 20 | +else |
| 21 | + CFLAGS += -O2 |
| 22 | +endif |
| 23 | + |
| 24 | +configure: configure-stamp |
| 25 | +configure-stamp: |
| 26 | + dh_testdir |
| 27 | + # Add here commands to configure the package. |
| 28 | + phpize |
| 29 | + ./configure |
| 30 | + |
| 31 | + touch configure-stamp |
| 32 | + |
| 33 | + |
| 34 | +build: build-stamp |
| 35 | + |
| 36 | +build-stamp: configure-stamp |
| 37 | + dh_testdir |
| 38 | + |
| 39 | + # Add here commands to compile the package. |
| 40 | + $(MAKE) |
| 41 | + #docbook-to-man debian/php5-fss.sgml > php5-fss.1 |
| 42 | + |
| 43 | + touch $@ |
| 44 | + |
| 45 | +clean: |
| 46 | + dh_testdir |
| 47 | + dh_testroot |
| 48 | + rm -f build-stamp configure-stamp |
| 49 | + |
| 50 | + # Add here commands to clean up after the build process. |
| 51 | + -$(MAKE) clean |
| 52 | + |
| 53 | + dh_clean |
| 54 | + |
| 55 | +install: build |
| 56 | + dh_testdir |
| 57 | + dh_testroot |
| 58 | + dh_clean -k |
| 59 | + dh_installdirs |
| 60 | + |
| 61 | + # Add here commands to install the package into debian/php5-fss. |
| 62 | + $(MAKE) INSTALL_ROOT=$(CURDIR)/debian/php5-fss install |
| 63 | + install -m 0644 -D debian/fss.ini $(CURDIR)/debian/php5-fss/etc/php5/conf.d/fss.ini |
| 64 | + |
| 65 | + |
| 66 | +# Build architecture-independent files here. |
| 67 | +binary-indep: build install |
| 68 | +# We have nothing to do by default. |
| 69 | + |
| 70 | +# Build architecture-dependent files here. |
| 71 | +binary-arch: build install |
| 72 | + dh_testdir |
| 73 | + dh_testroot |
| 74 | + dh_installchangelogs |
| 75 | + dh_installdocs |
| 76 | + dh_installexamples |
| 77 | +# dh_install |
| 78 | +# dh_installmenu |
| 79 | +# dh_installdebconf |
| 80 | +# dh_installlogrotate |
| 81 | +# dh_installemacsen |
| 82 | +# dh_installpam |
| 83 | +# dh_installmime |
| 84 | +# dh_python |
| 85 | +# dh_installinit |
| 86 | +# dh_installcron |
| 87 | +# dh_installinfo |
| 88 | + dh_installman |
| 89 | + dh_link |
| 90 | + dh_strip |
| 91 | + dh_compress |
| 92 | + dh_fixperms |
| 93 | +# dh_perl |
| 94 | +# dh_makeshlibs |
| 95 | + dh_installdeb |
| 96 | + dh_shlibdeps |
| 97 | + dh_gencontrol |
| 98 | + dh_md5sums |
| 99 | + dh_builddeb |
| 100 | + |
| 101 | +binary: binary-indep binary-arch |
| 102 | +.PHONY: build clean binary-indep binary-arch binary install configure |
Property changes on: trunk/debs/php5-fss/debian.lucid/rules |
___________________________________________________________________ |
Added: svn:executable |
1 | 103 | + * |