Browse Source

libburn, libisofs, xorg-x11-drv-ati: new upstream release
others: new package

git-svn-id: http://trac.vinelinux.org/repos/projects/specs@6299 ec354946-7b23-47d6-9f5a-488ba84defc7

Takemikaduchi 12 years ago
parent
commit
f1f4d77022

+ 6 - 5
lib/libb/libburn/libburn-vl.spec

@@ -1,16 +1,14 @@
-%define tbpostfix pl01
-
 Summary:        Library for reading, mastering and writing optical discs
 Summary:        Library for reading, mastering and writing optical discs
 Summary(ja):    光学ディスクの読み込み・マスタリング・書き込みを行うライブラリ
 Summary(ja):    光学ディスクの読み込み・マスタリング・書き込みを行うライブラリ
 
 
 Name:           libburn
 Name:           libburn
-Version:        0.6.0
-Release:        2%{?_dist_release}
+Version:        1.2.2
+Release:        1%{?_dist_release}
 
 
 Group:          System Environment/Libraries
 Group:          System Environment/Libraries
 License:        GPLv2
 License:        GPLv2
 URL:            http://libburnia-project.org/
 URL:            http://libburnia-project.org/
-Source0:        http://files.libburnia-project.org/releases/%{name}-%{version}.%{tbpostfix}.tar.gz
+Source0:        http://files.libburnia-project.org/releases/%{name}-%{version}.tar.gz
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
 
 
 BuildRequires:   libtool intltool gettext doxygen graphviz
 BuildRequires:   libtool intltool gettext doxygen graphviz
@@ -98,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 
 
 %changelog
 %changelog
+* Sat Jun 09 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.2-1
+- new upstream release
+
 * Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.0-2
 * Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.0-2
 - rebuild with rpm-4.8.1 for pkg-config file
 - rebuild with rpm-4.8.1 for pkg-config file
 
 

+ 5 - 2
lib/libi/libisofs/libisofs-vl.spec

@@ -2,8 +2,8 @@ Summary:        Library to create ISO 9660 disk images
 Summary(ja):    ISO9660 ディスクイメージを作成するためのライブラリ
 Summary(ja):    ISO9660 ディスクイメージを作成するためのライブラリ
 
 
 Name:           libisofs
 Name:           libisofs
-Version:        0.6.12
-Release:        2%{?_dist_release}
+Version:        1.2.2
+Release:        1%{?_dist_release}
 
 
 Group:          System Environment/Libraries
 Group:          System Environment/Libraries
 License:        GPLv2
 License:        GPLv2
@@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT
  
  
 
 
 %changelog
 %changelog
+* Sat Jun 09 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.2-1
+- new upstream release
+
 * Sun Oct 03 2010 Shu KONNO <owa@bg.wakwak.com> 0.6.12-2
 * Sun Oct 03 2010 Shu KONNO <owa@bg.wakwak.com> 0.6.12-2
 - rebuilt with rpm-4.8.1 for pkg-config
 - rebuilt with rpm-4.8.1 for pkg-config
 
 

+ 72 - 0
t/thunar-archive-plugin/thunar-archive-plugin-vl.spec

@@ -0,0 +1,72 @@
+Name: 		thunar-archive-plugin
+Summary:        Adds archive operations to the Thunar file context menus
+Version:        0.3.0
+Release: 	1%{?_dist_release}
+
+Group: 		User Interface/Desktops
+License:	GPLv2+
+URL: 		http://goodies.xfce.org/projects/thunar-plugins/%{name}
+
+Source0: 	http://archive.xfce.org/src/thunar-plugins/%{name}/0.3/%{name}-%{version}.tar.bz2
+
+BuildRoot: 	%{_tmppath}/%{name}-%{version}-root
+
+BuildRequires:  Thunar-devel >= 0.4.0
+BuildRequires:  libexo-devel >= 0.5.0
+BuildRequires:  libxfce4util-devel >= 4.8.0
+
+Vendor:		Project Vine
+Distribution:	Vine Linux
+Packager:	Takemikaduchi
+
+
+%description
+The thunar-archive-plugin is a plugin for the Thunar File Manager, which
+adds archive operations to the file context menus. Using this plugin you
+will be able to extract and create archive files from within Thunar using
+a single click.
+
+
+%prep
+%setup -q
+
+%build
+%configure --disable-static
+make %{?_smp_mflags}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install DESTDIR=$RPM_BUILD_ROOT
+
+find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
+
+%find_lang %{name}
+
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%post
+touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
+gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
+
+%postun
+if [ $1 -eq 0 ]; then
+    touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
+    gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
+fi
+
+
+%files -f %{name}.lang
+%defattr(-,root,root)
+%doc AUTHORS COPYING ChangeLog NEWS README
+%{_libdir}/thunarx-2/%{name}.so
+%{_libexecdir}/%{name}
+%{_datadir}/icons/hicolor/*/apps/*
+
+
+%changelog
+* Sat Jun 09 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.0-1
+- initial build for Vine Linux
+

+ 58 - 0
t/thunar-media-tags-plugin/thunar-media-tags-plugin-vl.spec

@@ -0,0 +1,58 @@
+Name: 		thunar-media-tags-plugin
+Summary:        Adds ID3/OGG tag support to the Thunar bulk rename dialog
+Version:        0.2.0
+Release: 	1%{?_dist_release}
+
+Group: 		User Interface/Desktops
+License:	GPLv2+
+URL: 		http://goodies.xfce.org/projects/thunar-plugins/%{name}
+
+Source0: 	http://archive.xfce.org/src/thunar-plugins/%{name}/0.2/%{name}-%{version}.tar.bz2
+
+BuildRoot: 	%{_tmppath}/%{name}-%{version}-root
+
+BuildRequires:  Thunar-devel >= 0.4.0
+BuildRequires:  libexo-devel >= 0.3.1.3
+BuildRequires:  thunar-vfs-devel >= 0.4.0
+BuildRequires:  taglib-devel >= 1.4
+
+Vendor:		Project Vine
+Distribution:	Vine Linux
+Packager:	Takemikaduchi
+
+
+%description
+The thunar-media-tags-plugin is a plugin for the Thunar File Manager, 
+which adds ID3/OGG tag support to the bulk rename dialog.
+
+
+%prep
+%setup -q
+
+%build
+%configure --disable-static
+make %{?_smp_mflags}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install DESTDIR=$RPM_BUILD_ROOT
+
+find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
+
+%find_lang %{name}
+
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%files -f %{name}.lang
+%defattr(-,root,root)
+%doc AUTHORS COPYING ChangeLog NEWS README
+%{_libdir}/thunarx-2/%{name}.so
+
+
+%changelog
+* Sat Jun 09 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.0-1
+- initial build for Vine Linux
+

+ 76 - 0
t/thunar-vcs-plugin/thunar-vcs-plugin-vl.spec

@@ -0,0 +1,76 @@
+Name: 		thunar-vcs-plugin
+Summary:        Version Contol System plugin for Thunar
+Version:        0.1.4
+Release: 	1%{?_dist_release}
+
+Group: 		User Interface/Desktops
+License:	GPLv2+
+URL: 		http://goodies.xfce.org/projects/thunar-plugins/%{name}
+
+Source0: 	http://archive.xfce.org/src/thunar-plugins/%{name}/0.1/%{name}-%{version}.tar.bz2
+
+BuildRoot: 	%{_tmppath}/%{name}-%{version}-root
+
+BuildRequires:  Thunar-devel >= 0.4.0
+BuildRequires:  libexo-devel >= 0.5.0
+BuildRequires:  libxfce4util-devel >= 4.8.0
+BuildRequires:  gtk2-devel >= 2.14
+BuildRequires:  subversion-devel >= 1.5
+BuildRequires:  apr-devel >= 0.9.7
+BuildRequires:  git-devel
+BuildRequires:  libuuid-devel
+
+Vendor:		Project Vine
+Distribution:	Vine Linux
+Packager:	Takemikaduchi
+
+
+%description
+The Thunar VCS Plugin adds Subversion actions to the context menu of thunar.
+This gives a VCS integration to Thunar.
+
+
+%prep
+%setup -q
+
+%build
+%configure --disable-static
+make %{?_smp_mflags}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install DESTDIR=$RPM_BUILD_ROOT
+
+find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
+
+%find_lang %{name}
+
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%post
+touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
+gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
+
+%postun
+if [ $1 -eq 0 ]; then
+    touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
+    gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
+fi
+
+
+%files -f %{name}.lang
+%defattr(-,root,root)
+%doc AUTHORS COPYING ChangeLog NEWS README
+%{_libdir}/thunarx-2/%{name}.so
+%{_libexecdir}/tvp-git-helper
+%{_libexecdir}/tvp-svn-helper
+%{_datadir}/icons/hicolor/*/apps/*
+
+
+%changelog
+* Sat Jun 09 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.4-1
+- initial build for Vine Linux
+

+ 95 - 0
x/xfburn/xfburn-vl.spec

@@ -0,0 +1,95 @@
+Name:           xfburn
+Summary:        An easy to use CD/DVD burning program
+Summary(ja):    簡単に使える CD/DVD 焼き込みプログラム
+Version:        0.4.3
+Release:        1%{?_dist_release}
+
+License:        GPLv2+
+Group:          Applications/Multimedia
+URL:            http://goodies.xfce.org/projects/applications/%{name}
+
+Source0:        http://archive.xfce.org/src/apps/%{name}/0.4/%{name}-%{version}.tar.bz2
+Source1:	xfburn-autogen.sh
+Source2:	xfburn-icons.tar.xz
+
+Patch0:		xfburn-0.4.3-git20120604.patch
+
+BuildRoot:	%{_tmppath}/%{name}-%{version}-root
+
+BuildRequires:	desktop-file-utils
+BuildRequires:	libburn-devel >= 0.4.2
+BuildRequires:	libisofs-devel >= 0.6.2
+BuildRequires:	libxfcegui4-devel >= 4.4.0
+BuildRequires:	gtk2-devel >= 2.10.0
+BuildRequires:	libexo-devel >= 0.3.4
+BuildRequires:	thunar-vfs-devel >= 0.3.0
+BuildRequires:	dbus-glib-devel >= 0.34
+BuildRequires:	gstreamer-plugins-base-devel
+BuildRequires:	xfce4-dev-tools
+
+Requires(post,postun):	desktop-file-utils
+
+Vendor:		Project Vine
+Distribution:	Vine Linux
+Packager:	Takemikaduchi
+
+
+%description
+This application allows you to capture the entire screen, the active window or a selected region. You can set the delay that elapses before the screenshot is taken and the action that will be done with the screenshot: save it to a PNG file, copy it to the clipboard, open it using another application, or host it on ZimageZ, a free online image hosting service.
+
+A plugin for the Xfce panel is also available.
+
+
+
+%prep
+%setup -q
+%patch0 -p1 -b .git
+
+%build
+cp %{SOURCE1} autogen.sh
+tar xJf %{SOURCE2}
+mv configure.in configure.in.in
+NOCONFIGURE=1 ./autogen.sh
+%configure --disable-static
+make %{?_smp_mflags}
+
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install DESTDIR=$RPM_BUILD_ROOT
+
+find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
+
+%find_lang %{name}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%post
+touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
+gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
+update-desktop-database %{_datadir}/applications &> /dev/null || :
+
+%postun
+if [ $1 -eq 0 ]; then
+    touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
+    gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
+fi
+update-desktop-database %{_datadir}/applications &> /dev/null || :
+
+
+%files -f %{name}.lang
+%defattr(-,root,root,-)
+%doc AUTHORS ChangeLog NEWS TODO COPYING
+%{_bindir}/%{name}
+%{_datadir}/Thunar/sendto/thunar-sendto-xfburn.desktop
+%{_datadir}/applications/%{name}.desktop
+%{_datadir}/icons/hicolor/*/*/*
+%{_datadir}/%{name}
+%{_mandir}/man1/xfburn.1.gz
+
+%changelog
+* Sat Jun 09 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.4.3-1
+- initial build for Vine Linux
+

+ 100 - 0
x/xfce4-dict/xfce4-dict-vl.spec

@@ -0,0 +1,100 @@
+Name:           xfce4-dict
+Summary:        Dictionary services for Xfce
+Summary(ja):    Xfce の辞書サービス
+Version:        0.6.0
+Release:        1%{?_dist_release}
+
+License:        GPLv2+
+Group:          User Interface/Desktops
+URL:            http://goodies.xfce.org/projects/applications/%{name}
+
+Source0:        http://archive.xfce.org/src/apps/%{name}/0.6/%{name}-%{version}.tar.bz2
+Source1:	xfce4-dict-autogen.sh
+
+Patch0:		xfce4-dict-0.6.0-git20120605.patch
+Patch1:		xfce4-dict-0.6.0-ui.patch
+
+BuildRoot:     %{_tmppath}/%{name}-%{version}-root
+
+BuildRequires: desktop-file-utils
+BuildRequires: gtk2-devel >= 2.20.0
+BuildRequires: libxfce4ui-devel >= 4.10.0
+BuildRequires: libxfce4util-devel >= 4.10.0
+BuildRequires: xfce4-panel-devel >= 4.10.0
+BuildRequires: libX11-devel
+BuildRequires: xfce4-dev-tools
+
+Requires(post,postun):	desktop-file-utils
+
+Vendor:		Project Vine
+Distribution:	Vine Linux
+Packager:	Takemikaduchi
+
+
+%description
+This program allows you to search different kinds of dictionary services
+for words or phrases and shows you the result.
+Currently you can query a "Dict" server(RFC 2229), any online dictionary
+service by opening a web browser or search for words using a spell check
+program like aspell, ispell or enchant.
+
+
+
+%prep
+%setup -q
+%patch0 -p1 -b .git
+%patch1 -p1 -b .ui
+
+%build
+cp %{SOURCE1} autogen.sh
+NOCONFIGURE=1 ./autogen.sh
+%configure --disable-static
+make %{?_smp_mflags}
+
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install DESTDIR=$RPM_BUILD_ROOT
+
+find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
+
+desktop-file-install \
+	--add-category="X-XFCE" \
+	--delete-original \
+	--dir=%{buildroot}%{_datadir}/applications \
+        ${RPM_BUILD_ROOT}%{_datadir}/applications/xfce4-dict.desktop
+
+%find_lang %{name}-plugin
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%post
+touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
+gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
+update-desktop-database %{_datadir}/applications &> /dev/null || :
+update-desktop-database %{_datadir}/applications &> /dev/null || :
+
+%postun
+if [ $1 -eq 0 ]; then
+    touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
+    gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
+fi
+update-desktop-database %{_datadir}/applications &> /dev/null || :
+
+
+%files -f %{name}-plugin.lang
+%defattr(-,root,root,-)
+%doc AUTHORS ChangeLog NEWS COPYING
+%{_bindir}/xfce4-dict
+%{_libdir}/xfce4/panel/plugins/libxfce4dict.so
+%{_datadir}/applications/xfce4-dict.desktop
+%{_datadir}/icons/hicolor/*/*/*
+%{_datadir}/xfce4/panel/plugins/xfce4-dict-plugin.desktop
+%{_mandir}/man1/xfce4-dict.1.gz
+
+%changelog
+* Sat Jun 09 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.6.0-1
+- initial build for Vine Linux
+

+ 94 - 0
x/xfce4-notifyd/xfce4-notifyd-vl.spec

@@ -0,0 +1,94 @@
+Name:           xfce4-notifyd
+Summary:        Notification daemon for Xfce
+Summary(ja):    Xfce 用 notification daemon
+Version:        0.2.2
+Release:        1%{?_dist_release}
+
+License:        GPLv2+
+Group:          User Interface/Desktops
+URL:            http://goodies.xfce.org/projects/applications/%{name}
+
+Source0:        http://archive.xfce.org/src/apps/%{name}/0.2/%{name}-%{version}.tar.bz2
+
+BuildRoot:     %{_tmppath}/%{name}-%{version}-root
+
+BuildRequires: desktop-file-utils
+BuildRequires: libxfce4util-devel >= 4.4.0
+BuildRequires: libxfce4ui-devel >= 4.7.0
+BuildRequires: xfconf-devel >= 0.1
+BuildRequires: gtk2-devel >= 2.14.0
+BuildRequires: dbus-glib-devel >= 0.72
+BuildRequires: libnotify-devel >= 0.4.4
+
+Requires(post,postun):	desktop-file-utils
+
+Vendor:		Project Vine
+Distribution:	Vine Linux
+Packager:	Takemikaduchi
+
+
+%description
+The Xfce Notify Daemon (xfce4-notifyd for short) is a smallish program that
+implements the "server-side" portion of the Freedesktop desktop notifications
+specification.  Applications that wish to pop up a notification bubble in
+a standard way can implicitly make use of xfce4-notifyd to do so by
+sending standard messages over D-Bus using the org.freedesktop.Notifications
+interface.
+
+
+%prep
+%setup -q
+
+%build
+%configure --disable-static
+make %{?_smp_mflags}
+
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install DESTDIR=$RPM_BUILD_ROOT
+
+find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
+
+desktop-file-install \
+	--add-category="X-XFCE" \
+	--delete-original \
+	--dir=%{buildroot}%{_datadir}/applications \
+        ${RPM_BUILD_ROOT}%{_datadir}/applications/xfce4-notifyd-config.desktop
+
+%find_lang %{name}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%post
+touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
+gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
+update-desktop-database %{_datadir}/applications &> /dev/null || :
+
+%postun
+if [ $1 -eq 0 ]; then
+    touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
+    gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
+fi
+update-desktop-database %{_datadir}/applications &> /dev/null || :
+
+
+%files -f %{name}.lang
+%defattr(-,root,root,-)
+%doc AUTHORS ChangeLog NEWS TODO COPYING
+%{_bindir}/%{name}-config
+%{_libdir}/xfce4/notifyd/%{name}
+%{_datadir}/applications/%{name}-config.desktop
+%{_datadir}/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service
+%{_datadir}/icons/hicolor/*/apps/*
+%{_datadir}/themes/Default/xfce-notify-4.0
+%{_datadir}/themes/Smoke/xfce-notify-4.0
+%{_datadir}/themes/ZOMG-PONIES!/xfce-notify-4.0
+%{_mandir}/man1/xfce4-notifyd-config.1.gz
+
+%changelog
+* Sat Jun 09 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.2-1
+- initial build for Vine Linux
+

+ 1 - 2
x/xfce4-screenshooter/xfce4-screenshooter-vl.spec

@@ -4,8 +4,7 @@ Summary(ja):    Xfce のスクリーンキャプチャツール
 Version:        1.8.1
 Version:        1.8.1
 Release:        1%{?_dist_release}
 Release:        1%{?_dist_release}
 
 
-# xfce4-settings-helper is GPLv2 only. 
-License:        GPLv2+ and GPLv2
+License:        GPLv2+
 Group:          User Interface/Desktops
 Group:          User Interface/Desktops
 URL:            http://goodies.xfce.org/projects/applications/%{name}
 URL:            http://goodies.xfce.org/projects/applications/%{name}
 
 

+ 1 - 2
x/xfce4-taskmanager/xfce4-taskmanager-vl.spec

@@ -4,8 +4,7 @@ Summary(ja):    Xfce のタスクマネージャー
 Version:        1.0.0
 Version:        1.0.0
 Release:        1%{?_dist_release}
 Release:        1%{?_dist_release}
 
 
-# xfce4-settings-helper is GPLv2 only. 
-License:        GPLv2+ and GPLv2
+License:        GPLv2+
 Group:          User Interface/Desktops
 Group:          User Interface/Desktops
 URL:            http://goodies.xfce.org/projects/applications/xfce4-taskmanager
 URL:            http://goodies.xfce.org/projects/applications/xfce4-taskmanager
 
 

+ 9 - 5
x/xorg-x11-drv-ati/xorg-x11-drv-ati-vl.spec

@@ -5,8 +5,8 @@
 Summary:   Xorg X11 ati video driver
 Summary:   Xorg X11 ati video driver
 Summary(ja):   Xorg X11 ati ビデオドライバ
 Summary(ja):   Xorg X11 ati ビデオドライバ
 Name:      xorg-x11-drv-ati
 Name:      xorg-x11-drv-ati
-Version:   6.14.4
-Release:   2%{?_dist_release}
+Version:   6.14.5
+Release:   1%{?_dist_release}
 URL:       http://www.x.org
 URL:       http://www.x.org
 License:   MIT
 License:   MIT
 Group:     User Interface/X Hardware Support
 Group:     User Interface/X Hardware Support
@@ -14,7 +14,7 @@ Group:     User Interface/X Hardware Support
 Source0:   ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2
 Source0:   ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2
 Source1:   mkxinf.ati
 Source1:   mkxinf.ati
 
 
-Patch0:    xf86-video-ati-6.14.4-git20120606.patch
+Patch0:     xf86-video-ati-6.14.5-revert-libdrm.patch
 
 
 Patch10:    radeon-6.9.0-bgnr-enable.patch	
 Patch10:    radeon-6.9.0-bgnr-enable.patch	
 Patch11:    radeon-6.12.2-lvds-default-modes.patch
 Patch11:    radeon-6.12.2-lvds-default-modes.patch
@@ -25,7 +25,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
 ExcludeArch: s390 s390x
 ExcludeArch: s390 s390x
 BuildRequires: xorg-x11-server-sdk >= 1.6
 BuildRequires: xorg-x11-server-sdk >= 1.6
 BuildRequires: mesa-libGL-devel
 BuildRequires: mesa-libGL-devel
-BuildRequires: libdrm-devel
+BuildRequires: libdrm-devel >= 2.4.33
 BuildRequires: automake autoconf libtool pkgconfig
 BuildRequires: automake autoconf libtool pkgconfig
 BuildRequires: xorg-x11-util-macros
 BuildRequires: xorg-x11-util-macros
 BuildRequires: libudev-devel
 BuildRequires: libudev-devel
@@ -40,7 +40,7 @@ X.Org X11 ati video driver.
 
 
 %prep
 %prep
 %setup -q -n %{tarball}-%{version}
 %setup -q -n %{tarball}-%{version}
-%patch0 -p1
+%patch0 -p1 -b .drm
 %patch10 -p1 -b .bgnr
 %patch10 -p1 -b .bgnr
 %patch11 -p1 -b .lvds
 %patch11 -p1 -b .lvds
 %patch12 -p1 -b .def
 %patch12 -p1 -b .def
@@ -77,6 +77,10 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man4/radeon.4*
 %{_mandir}/man4/radeon.4*
 
 
 %changelog
 %changelog
+* Sat Jun 09 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 6.14.5-1
+- new upstream release
+- replace Patch0 (xf86-video-ati-6.14.5-revert-libdrm.patch)
+
 * Wed Jun 06 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 6.14.4-2
 * Wed Jun 06 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 6.14.4-2
 - add Patch0 (xf86-video-ati-6.14.4-git20120606.patch)
 - add Patch0 (xf86-video-ati-6.14.4-git20120606.patch)