Upload Tizen:Base source
authorKim Kibum <kb0929.kim@samsung.com>
Mon, 21 May 2012 08:45:41 +0000 (17:45 +0900)
committerKim Kibum <kb0929.kim@samsung.com>
Mon, 21 May 2012 08:45:41 +0000 (17:45 +0900)
packaging/m4-1.4.14-include.patch [new file with mode: 0644]
packaging/m4.changes [new file with mode: 0644]
packaging/m4.spec [new file with mode: 0644]

diff --git a/packaging/m4-1.4.14-include.patch b/packaging/m4-1.4.14-include.patch
new file mode 100644 (file)
index 0000000..48b91d4
--- /dev/null
@@ -0,0 +1,11 @@
+diff -up m4-1.4.14/src/m4.h_old m4-1.4.14/src/m4.h
+--- m4-1.4.14/src/m4.h_old     2010-03-01 15:43:40.376976016 +0100
++++ m4-1.4.14/src/m4.h 2010-03-01 15:44:00.265984491 +0100
+@@ -33,6 +33,7 @@
+ #include <stdint.h>
+ #include <string.h>
+ #include <sys/types.h>
++#include <sys/stat.h>
+ #include "binary-io.h"
+ #include "clean-temp.h"
diff --git a/packaging/m4.changes b/packaging/m4.changes
new file mode 100644 (file)
index 0000000..e5e5ebf
--- /dev/null
@@ -0,0 +1,32 @@
+* Fri Jul 29 2011 Junfeng Dong <junfeng.dong@intel.com> -1.4.14
+- Import 1.4.14 for SLP.
+
+* Thu Apr 07 2011 Junfeng Dong <junfeng.dong@intel.com> - 1.4.16
+- Update to 1.4.16
+
+* Thu Dec 10 2009 Austin Zhang <austin.zhang@intel.com> - 1.4.13
+- Remove unset LD_AS_NEEDED
+
+* Thu Sep 24 2009 Anas Nashif <anas.nashif@intel.com> - 1.4.13
+- Remove %_infodir/dir, again
+
+* Thu Sep 24 2009 Anas Nashif <anas.nashif@intel.com> - 1.4.13
+- Fixed file list
+
+* Sat Sep 19 2009 Anas Nashif <anas.nashif@intel.com> - 1.4.13
+- Dont install infodir
+
+* Mon Aug 17 2009 Austin Zhang <austin.zhang@intel.com> 1.4.13
+- Update to version 1.4.13
+
+* Thu Jan 08 2009 Anas Nashif <anas.nashif@intel.com> 1.4.12
+- Update to version 1.4.12
+
+* Thu Dec 18 2008 Arjan van de Ven <arjan@linux.intel.com> 1.4.10
+- Use standard specfile
+
+* Fri Sep 12 2008 Yi Yang <yi.y.yang@intel.com> 1.4.10
+- Remove installation warnings of info files
+
+* Wed Jul 23 2008 Xu Li <xu.li@intel.com>
+- add %doc to man/info in %files
diff --git a/packaging/m4.spec b/packaging/m4.spec
new file mode 100644 (file)
index 0000000..f98c588
--- /dev/null
@@ -0,0 +1,48 @@
+Name:       m4
+Summary:    The GNU macro processor
+Version:    1.4.14
+Release:    1
+Group:      Applications/Text
+License:    GPLv3+
+URL:        http://www.gnu.org/software/m4/
+Source0:    ftp://ftp.gnu.org/gnu/m4/m4-%{version}.tar.xz
+Patch0:     m4-1.4.14-include.patch
+
+
+%description
+A GNU implementation of the traditional UNIX macro processor.  M4 is
+useful for writing text files which can be logically parsed, and is used
+by many programs as part of their build process.  M4 has built-in
+functions for including files, running shell commands, doing arithmetic,
+etc.  The autoconf program needs m4 for generating configure scripts, but
+not for running configure scripts.
+
+Install m4 if you need a macro processor.
+
+
+
+
+%prep
+%setup -q -n %{name}-%{version}
+
+# m4-1.4.14-include.patch
+%patch0 -p1
+
+%build
+
+%configure --disable-static
+make %{?jobs:-j%jobs}
+
+%install
+rm -rf %{buildroot}
+%make_install
+
+
+%docs_package 
+
+%files
+%defattr(-,root,root,-)
+%doc COPYING
+%{_bindir}/m4
+
+