forked from pool/perl-Prima
- updated to 1.43 see /usr/share/doc/packages/perl-Prima/Changes 1.43 2015-04-10 - Rewrite font test and polish rough ends in xft font handling - Copy images to clipboard so that GTK recognizes them 1.42 2015-03-11 - Tests became TAP compliant and using Prima::Test - Jpeg exif orientation support added - Scrollbar overriding properties added for scroller widgets - remove heavily outdated docs and VB-decent.diff OBS-URL: https://build.opensuse.org/request/show/297242 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Prima?expand=0&rev=29
86 lines
2.9 KiB
RPMSpec
86 lines
2.9 KiB
RPMSpec
#
|
|
# spec file for package perl-Prima
|
|
#
|
|
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: perl-Prima
|
|
Version: 1.43
|
|
Release: 0
|
|
#Upstream: SUSE-Public-Domain
|
|
%define cpan_name Prima
|
|
Summary: Perl Graphic Toolkit
|
|
License: BSD-2-Clause
|
|
Group: Development/Libraries/Perl
|
|
Url: http://search.cpan.org/dist/Prima/
|
|
Source0: http://www.cpan.org/authors/id/K/KA/KARASIK/%{cpan_name}-%{version}.tar.gz
|
|
Source1: cpanspec.yml
|
|
Patch0: gcc-warnings.patch
|
|
Patch1: Prima-GenericEvent.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
%{perl_requires}
|
|
# MANUAL BEGIN
|
|
BuildRequires: giflib-devel
|
|
BuildRequires: libpng-devel
|
|
BuildRequires: libtiff-devel
|
|
BuildRequires: xkeyboard-config
|
|
BuildRequires: xorg-x11
|
|
BuildRequires: xorg-x11-Xvfb
|
|
BuildRequires: xorg-x11-devel
|
|
%define X_display ":98"
|
|
Requires: xorg-x11
|
|
# MANUAL END
|
|
|
|
%description
|
|
The toolkit is combined from two basic set of classes - core and external.
|
|
The core classes are coded in C and form a base line for every Prima object
|
|
written in perl. The usage of C is possible together with the toolkit;
|
|
however, its full power is revealed in the perl domain. The external
|
|
classes present easily expandable set of widgets, written completely in
|
|
perl and communicating with the system using Prima library calls.
|
|
|
|
%prep
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
find . -type f -print0 | xargs -0 chmod 644
|
|
%patch0 -p1
|
|
%patch1
|
|
|
|
%build
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
%check
|
|
%{__make} test
|
|
|
|
%install
|
|
%perl_make_install
|
|
%perl_process_packlist
|
|
# MANUAL BEGIN
|
|
## oops, Prima/Config.pm must not contain BUILD_ROOT
|
|
find $RPM_BUILD_ROOT -name 'Config.pm' -print0 | xargs -0 perl -i -pe "s{\\Q$RPM_BUILD_ROOT}"'{}g'
|
|
###
|
|
### should these go to a perl-Prima-devel ?
|
|
find $RPM_BUILD_ROOT/%{perl_vendorarch} -name \*.h | xargs -t rm
|
|
# MANUAL END
|
|
%perl_gen_filelist
|
|
|
|
%files -f %{name}.files
|
|
%defattr(-,root,root,755)
|
|
%doc AbstractMenu.cls AccelTable.cls Application.cls Changes Clipboard.cls Component.cls Copying DeviceBitmap.cls Drawable.cls examples File.cls Icon.cls Image.cls Menu.cls Object.cls Popup.cls Printer.cls README Timer.cls Types.cls Utils.cls Widget.cls Window.cls
|
|
|
|
%changelog
|