Browse Source

新規パッケージ (shutter の新規依存)

git-svn-id: http://trac.vinelinux.org/repos/projects/specs@2683 ec354946-7b23-47d6-9f5a-488ba84defc7
kazutaka 13 years ago
parent
commit
ea19c64f71

+ 60 - 0
p/perl-Gtk2-Unique/perl-Gtk2-Unique-vl.spec

@@ -0,0 +1,60 @@
+Name:		perl-Gtk2-Unique
+Version:	0.05
+Release:	1%{?_dist_release}
+Summary:	Perl bindings for the C library "libunique"
+
+Group:		Development/Libraries
+License:	Artistic or GPL (same terms as Perl)
+URL:		http://search.cpan.org/dist/Gtk2-Unique/
+Source0:	http://search.cpan.org/CPAN/authors/id/P/PO/POTYL/Gtk2-Unique-%{version}.tar.gz
+BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildRequires:	perl(Gtk2)
+BuildRequires:	perl(ExtUtils::MakeMaker)
+BuildRequires:	perl(ExtUtils::Depends)
+BuildRequires:	perl(ExtUtils::PkgConfig)
+BuildRequires:	unique-devel
+Requires:	perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+Requires:	unique
+
+%description
+Perl bindings for the C library "libunique" that provides a mechanism for
+writing single instance applications. If you launch a single instance
+application twice, the second instance will either just quit or will send a
+message to the running instance.
+
+
+%prep
+%setup -q -n Gtk2-Unique-%{version}
+
+
+%build
+%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS"
+%{__make} %{?_smp_mflags}
+
+
+%install
+%{__rm} -rf $RPM_BUILD_ROOT
+%{__make} pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
+find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
+find $RPM_BUILD_ROOT -type f -name '*.bs' -empty -exec rm -f {} ';'
+find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';'
+%{__chmod} -R u+w $RPM_BUILD_ROOT/*
+
+
+%clean
+%{__rm} -rf $RPM_BUILD_ROOT
+
+
+%files
+%defattr(-,root,root,-)
+%doc Changes README
+%{perl_vendorarch}/auto/Gtk2/Unique/
+%{perl_vendorarch}/Gtk2/Unique*
+%{_mandir}/man3/*.3pm*
+
+
+%changelog
+* Sat Feb 12 2011 Kazutaka HARADA <kazutaka@vinelinux.org> 0.05-1
+- initial build for Vine Linux
+

+ 157 - 0
p/perl-Image-ExifTool/perl-Image-ExifTool-vl.spec

@@ -0,0 +1,157 @@
+Name:		perl-Image-ExifTool
+Version:	8.40
+Release:	1%{?_dist_release}
+License:	GPL+ or Artistic
+Group:		Applications/Multimedia
+Summary:	Utility for reading and writing image meta info
+URL:		http://www.sno.phy.queensu.ca/%7Ephil/exiftool/
+Source0:	http://www.sno.phy.queensu.ca/%7Ephil/exiftool/Image-ExifTool-%{version}.tar.gz
+
+BuildRequires:	perl
+BuildRequires:	perl(ExtUtils::Command::MM)
+Requires:	perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+
+BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildArch:	noarch
+
+%description
+ExifTool is a Perl module with an included command-line application for 
+reading and writing meta information in image, audio, and video files. 
+It reads EXIF, GPS, IPTC, XMP, JFIF, MakerNotes, GeoTIFF, ICC Profile, 
+Photoshop IRB, FlashPix, AFCP, and ID3 meta information from JPG, JP2, 
+TIFF, GIF, PNG, MNG, JNG, MIFF, EPS, PS, AI, PDF, PSD, BMP, THM, CRW, 
+CR2, MRW, NEF, PEF, ORF, DNG, and many other types of images. ExifTool 
+also extracts information from the maker notes of many digital cameras 
+by various manufacturers including Canon, Casio, FujiFilm, HP, 
+JVC/Victor, Kodak, Leaf, Minolta/Konica-Minolta, Nikon, Olympus/Epson, 
+Panasonic/Leica, Pentax/Asahi, Ricoh, Sanyo, Sigma/Foveon, and Sony.
+
+
+%prep
+%setup -q -n Image-ExifTool-%{version}
+
+
+%build
+%{__perl} Makefile.PL INSTALLDIRS=vendor
+%{__make}
+
+
+%install
+%{__rm} -rf $RPM_BUILD_ROOT
+%{__make} pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
+find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
+chmod -R u+w $RPM_BUILD_ROOT/*
+
+# Somehow, these empty directories are getting created.
+# Delete them.
+rm -rf $RPM_BUILD_ROOT%{perl_vendorlib}/*-linux-thread-multi
+
+
+%check
+make test
+
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%files
+%defattr(-,root,root,-)
+%doc README Changes
+%{_bindir}/exiftool
+%{perl_vendorlib}/File/
+%{perl_vendorlib}/Image/
+%{_mandir}/man1/*.1*
+%{_mandir}/man3/*.3*
+
+%changelog
+* Sat Feb 12 2011 Kazutaka HARADA <kazutaka@vinelinux.org> 8.40-1
+- initial build for Vine Linux based of fedora development
+
+* Mon Nov 22 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 8.40-1
+- update to 8.40
+
+* Tue Jul 13 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 8.25-1
+- update to 8.25
+
+* Sun May 02 2010 Marcela Maslanova <mmaslano@redhat.com> - 8.15-2
+- Mass rebuild with perl-5.12.0
+
+* Tue Mar 23 2010 Tom "spot" Callaway <tcallawa@redhat.com> 8.15-1
+- update to 8.15
+
+* Mon Feb 15 2010 Tom "spot" Callaway <tcallawa@redhat.com> 8.10-1
+- update to 8.10
+
+* Mon Dec  7 2009 Tom "spot" Callaway <tcallawa@redhat.com> 8.00-1
+- update to 8.00 (Production)
+
+* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 7.67-5
+- rebuild against perl 5.10.1
+
+* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.67-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.67-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.67-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Wed Feb 11 2009 Tom "spot" Callaway <tcallawa@redhat.com> 7.67-1
+- update to 7.67
+
+* Tue Jan  6 2009 Tom "spot" Callaway <tcallawa@redhat.com> 7.60-1
+- update to 7.60
+
+* Mon Oct 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> 7.51-1
+- update to 7.51
+
+* Wed May 28 2008 Tom "spot" Callaway <tcallawa@redhat.com> 7.25-2
+- get rid of empty arch-specific directories (bz 448744)
+
+* Fri Apr 25 2008 Tom "spot" Callaway <tcallawa@redhat.com> 7.25-1
+- update to 7.25
+
+* Tue Feb  5 2008 Tom "spot" Callaway <tcallawa@redhat.com> 7.15-1
+- 7.15
+- rebuild for new perl
+
+* Mon Oct 29 2007 Tom "spot" Callaway <tcallawa@redhat.com> 7.00-1
+- 7.00
+
+* Sun Aug 26 2007 Tom "spot" Callaway <tcallawa@redhat.com> 6.95-1
+- 6.95
+- license tag fix
+
+* Wed Aug  1 2007 Tom "spot" Callaway <tcallawa@redhat.com> 6.94-1
+- bump to 6.94
+
+* Wed Feb 21 2007 Tom "spot" Callaway <tcallawa@redhat.com> 6.77-1
+- bump to 6.77
+
+* Wed Jan 17 2007 Tom "spot" Callaway <tcallawa@redhat.com> 6.69-1
+
+* Fri Sep 15 2006 Tom "spot" Callaway <tcallawa@redhat.com> 6.40-1
+- bump to 6.40
+
+* Wed Aug  2 2006 Tom "spot" Callaway <tcallawa@redhat.com> 6.30-1
+- bump to 6.30
+ 
+* Tue Jul 11 2006 Tom "spot" Callaway <tcallawa@redhat.com> 6.26-2
+- clean up the places where "use the" shows up in the code as a workaround
+
+* Fri Jul  7 2006 Tom "spot" Callaway <tcallawa@redhat.com> 6.26-1
+- bump to 6.26
+
+* Mon Apr 24 2006 Tom "spot" Callaway <tcallawa@redhat.com> 6.15-1
+- bump to 6.15
+
+* Fri Mar 31 2006 Tom "spot" Callaway <tcallawa@redhat.com> 6.09-1
+- bump to 6.09
+
+* Tue Jan 10 2006 Tom "spot" Callaway <tcallawa@redhat.com> 5.89-1
+- bump to 5.89
+
+* Thu Aug  4 2005 Tom "spot" Callaway <tcallawa@redhat.com> 5.53-1
+- initial package for Fedora Extras