--- /dev/null
+* Sat Jun 16 2012 Anas Nashif <anas.nashif@intel.com> 6cd2246
+- Update package name to match upstream
+
+* Wed May 30 2012 Ryan Ware <ryan.r.ware@intel.com> 95195a5
+- Add default Smack manifest for pkgconfig.spec
+
+* Wed May 23 2012 Kevin Wang <kevin.a.wang@intel.com> 712881a
+- Merge "clean tarball setup path to facilitate hudson automation submission"
+
+* Sat May 19 2012 Zhang Qiang <qiang.z.zhang@intel.com> 52df729
+- clean tarball setup path to facilitate hudson automation submission
+
+* Fri May 18 2012 Yang Lin <lin.a.yang@intel.com> f953be4
+- clean tarball setup path to facilitate hudson automation submission
+
+* Sun Apr 29 2012 Kim Kibum <kb0929.kim@samsung.com> 8c303a8
+- upload tizen1.0 source
+
+* Fri Jan 06 2012 Kibum Kim <kb0929.kim@samsung.com> eade8e0
+- Git init
+[ Eunkyoung Kim ]
+- Initial empty repository
+
--- /dev/null
+Name: pkg-config
+Version: 0.25
+Release: 3
+License: GPL-2.0+
+Summary: A tool for determining compilation options
+Url: http://pkgconfig.freedesktop.org
+Group: Development/Tools
+Source: http://www.freedesktop.org/software/pkgconfig/releases/%{name}-%{version}.tar.gz
+Source1001: %{name}.manifest
+BuildRequires: popt-devel
+
+Provides: pkgconfig(pkg-config) = %{version}
+Provides: pkgconfig
+
+%description
+The pkgconfig tool determines compilation options. For each required
+library, it reads the configuration file and outputs the necessary
+compiler and linker flags.
+
+%prep
+%setup -q
+
+%build
+cp %{SOURCE1001} .
+%configure --disable-shared \
+ --with-pc-path=%{_libdir}/pkgconfig:%{_datadir}/pkgconfig
+make
+
+%install
+%make_install
+mkdir -p %{buildroot}%{_libdir}/pkgconfig
+mkdir -p %{buildroot}%{_datadir}/pkgconfig
+
+# we include this below, already
+rm -rf %{buildroot}%{_datadir}/doc/pkg-config
+
+%remove_docs
+
+%files
+%manifest %{name}.manifest
+%{_bindir}/*
+%{_libdir}/pkgconfig
+%{_datadir}/pkgconfig
+%{_datadir}/aclocal/*
+++ /dev/null
-Summary: A tool for determining compilation options
-Name: pkgconfig
-Version: 0.25
-Release: 2.2
-License: GPLv2+
-URL: http://pkgconfig.freedesktop.org
-Group: Development/Tools
-Source: http://www.freedesktop.org/software/pkgconfig/releases/pkg-config-%{version}.tar.gz
-Source1001: packaging/pkgconfig.manifest
-#BuildRequires: glib2-devel
-BuildRequires: popt-devel
-
-Provides: pkgconfig(pkg-config) = %{version}
-
-%description
-The pkgconfig tool determines compilation options. For each required
-library, it reads the configuration file and outputs the necessary
-compiler and linker flags.
-
-%prep
-%setup -n %{name}-%{version} -q
-
-%build
-cp %{SOURCE1001} .
-%configure \
- --disable-shared \
- --with-pc-path=%{_libdir}/pkgconfig:%{_datadir}/pkgconfig
-make
-
-%install
-make install DESTDIR=$RPM_BUILD_ROOT
-mkdir -p $RPM_BUILD_ROOT%{_libdir}/pkgconfig
-mkdir -p $RPM_BUILD_ROOT%{_datadir}/pkgconfig
-
-# we include this below, already
-rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/pkg-config
-
-%remove_docs
-
-
-%files
-%manifest pkgconfig.manifest
-%defattr(-,root,root)
-%{_bindir}/*
-%{_libdir}/pkgconfig
-%{_datadir}/pkgconfig
-%{_datadir}/aclocal/*