summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore13
-rw-r--r--debian/changelog54
-rw-r--r--debian/control21
-rw-r--r--debian/copyright26
-rwxr-xr-xdebian/rules2
5 files changed, 92 insertions, 24 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..6fe4345
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,13 @@
+build_log
+*.log
+*.pyc
+usr
+opt
+*.o
+*.os
+*.exe
+packages
+binaries
+*.ipk
+control
+*~
diff --git a/debian/changelog b/debian/changelog
index ef080b0..7f8f6d2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,58 @@
+pcre (7.6-4-1slp2) unstable; urgency=low
+
+ * add the following options
+ * --enable-utf8, --enable-unicode-properties, --enable-newline-is-any, --disable-stack-for-recursion
+
+ * Git : slp/pkgs/p/pcre
+ * Tag : pcre_7.6-4-1slp2
+
+ -- Yunchan Cho <yunchan.cho@samsung.com> Wed, 25 Jan 2012 21:32:05 +0900
+
pcre (7.6-3-3slp2) unstable; urgency=low
- * Init changelog
+ * Redebianized
- * Git : pkgs/p/pcre
+ * Git : 165.213.180.234:/git/slp/pkgs/pcre
* Tag : pcre_7.6-3-3slp2
-- Yunchan Cho <yunchan.cho@samsung.com> Mon, 29 Nov 2010 13:54:22 +0900
+
+pcre (7.6-3-2slp2) unstable; urgency=low
+
+ * Maintainer information changed
+ * debianize
+ * Git: 165.213.180.234:/git/slp/pkgs/pcre
+ * Tag: pcre_7.6-3-2slp2
+
+ -- Yunchan Cho <yunchan.cho@samsung.com> Mon, 29 Nov 2010 13:37:16 +0900
+
+pcre (7.6-3-1slp2) unstable; urgency=low
+
+ * SLP2.0 version policy for open source applied. + Toolchain Upgrade
+
+ -- Koeun Choi <koeun.choi@samsung.com> Fri, 19 Mar 2010 12:10:02 +0900
+
+pcre (7.6-2-2) unstable; urgency=low
+
+ * Uploading the package again due to toolchain change in aquila-i686
+ (changed from gcc4.3.2 to gcc4.4.1)
+
+ -- Ming Jin <ming79.jin@samsung.com> Mon, 01 Feb 2010 15:57:21 +0900
+
+pcre (7.6-2-1) unstable; urgency=low
+
+ * Added my email address in debian/control
+
+ -- Ming Jin <ming79.jin@samsung.com> Sun, 17 Jan 2010 17:55:38 +0900
+
+pcre (7.6-1) unstable; urgency=low
+
+ * Include i386 package
+
+ -- Ming Jin <ming79.jin@samsung.com> Sun, 17 Jan 2010 17:37:16 +0900
+
+pcre (7.6) unstable; urgency=low
+
+ * Initial Release.
+
+ -- unknown <p.fatyga@samsung.com> Tue, 24 Nov 2009 17:27:45 +0900
diff --git a/debian/control b/debian/control
deleted file mode 100644
index 89f102a..0000000
--- a/debian/control
+++ /dev/null
@@ -1,21 +0,0 @@
-Source: pcre
-Section: devel
-Priority: extra
-Maintainer: Andrew Lee <hyunchul2.lee@samsung.com>, Piotr Fatiga <p.fatyga@samsung.com>
-Uploaders: Koeun Choi <koeun.choi@samsung.com>, Ming Jin <ming79.jin@samsung.com>, Yunchan Cho <yunchan.cho@samsung.com>
-Build-Depends: debhelper (>= 5), autotools-dev
-Standards-Version: 3.7.2
-
-Package: libpcre
-Architecture: any
-Section: libs
-Depends: ${shlibs:Depends}, ${misc:Depends}
-Replaces: pcre
-Description: regular expression library - runtime library
-
-Package: libpcre-dev
-Architecture: any
-Section: libs
-Depends: libpcre (= ${Source-Version})
-Replaces: pcre-dev
-Description: regular expression dev library - runtime library
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..aaf5c8c
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,26 @@
+This is pcre, written and maintained by unknown <p.fatyga@samsung.com>
+on Tue, 24 Nov 2009 17:27:45 +0900.
+
+The original source can always be found at:
+ ftp://ftp.debian.org/dists/unstable/main/source/
+
+Copyright Holder: unknown
+
+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 2 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'.
diff --git a/debian/rules b/debian/rules
index f12218c..6a16305 100755
--- a/debian/rules
+++ b/debian/rules
@@ -31,7 +31,7 @@ LDFLAGS += -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed
config.status:
dh_testdir
# Add here commands to configure the package.
- CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" ./autogen.sh --prefix=$(PREFIX)
+ CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" ./autogen.sh --prefix=$(PREFIX) --enable-utf8 --enable-unicode-properties --enable-newline-is-any --disable-stack-for-recursion
build: build-stamp