source: projects/specs/trunk/g/gdl/gdl-vl.spec @ 1883

Revision 1883, 3.7 KB checked in by Takemikaduchi, 14 years ago (diff)

rebuild with rpm-4.8.1

Line 
1Version:        2.30.0
2Release:        2%{?_dist_release}
3
4Name:           gdl
5Summary:        Gnome Docking library
6License:        LGPL
7Group:          Development/Libraries
8Source:         %{name}-%{version}.tar.bz2
9BuildRoot:      /var/tmp/%{name}-%{version}-root
10URL:            http://www.gnome.org/
11Summary(ja):    GNOMEドッキングライブラリ
12
13Requires:       gtk2 >= 2.12.0
14#Requires:      libgnomeui >= 2.6.0
15Requires:       libxml2 >= 2.2.8
16#Requires:      libglade2 >= 2.0.0
17
18BuildRequires:  gtk2-devel >= 2.12.0
19BuildRequires:  libxml2-devel >= 2.2.8
20#BuildRequires: libglade2 >= 2.0.0
21
22Vendor: Project Vine
23Distribution: Vine Linux
24Packager: yasumichi
25
26%description
27Provides docking features for gtk+. Currently used by anjuta and lumiera.
28
29%description -l ja
30GTK+にドッキング機能を提供します。現在はAnjutaとLumieraで使用されています。
31
32%package devel
33Summary:        Libraries and include files for gdl.
34Group:          Development/Libraries
35Requires:       %{name} = %{version}
36
37%description devel
38Libraries and header files if you want to make use of the gdl library in your
39own programs.
40
41%description devel -l ja
42プログラムをgdlを使用して構築するのに必要なライブラリとヘッダファイルです。
43
44%prep
45%setup -q
46
47%build
48%ifarch x86_64
49%configure
50%else
51./configure --prefix=%{_prefix} \
52    --bindir=%{_bindir} --mandir=%{_mandir} \
53    --localstatedir=%{_localstatedir} --libdir=%{_libdir} \
54    --datadir=%{_datadir} --includedir=%{_includedir} \
55    --sysconfdir=%{_sysconfdir}
56%endif
57
58CFLAGS="$RPM_OPT_FLAGS" make
59
60%install
61[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
62
63%makeinstall
64
65rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
66
67%clean
68[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
69
70%post
71/sbin/ldconfig
72
73%postun
74/sbin/ldconfig
75
76
77%files
78%doc AUTHORS COPYING ChangeLog NEWS README
79%defattr (-, root, root)
80%{_libdir}/lib*.so.*
81%{_prefix}/share/gdl
82%{_prefix}/share/locale/*/LC_MESSAGES/*
83%{_prefix}/share/gtk-doc/html/gdl
84
85
86%files devel
87%defattr (-, root, root)
88%{_prefix}/include/libgdl-1.0
89#%{_prefix}/lib/lib*.a
90#%{_libdir}/lib*.la
91%{_libdir}/lib*.so
92%{_libdir}/pkgconfig/*
93
94%changelog
95* Thu Sep 23 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-2
96- rebuild with rpm-4.8.1 for pkg-config file
97
98* Wed Mar 31 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-1
99- new upstream release.
100
101* Sun Mar 14 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.2-1
102- new upstream release.
103
104* Mon Nov 02 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.28.1-1
105- new upstream release.
106- fixed BR.
107- update summary, description and  license.
108- add Vendor, Distribution and Packager.
109
110
111* Thu Jul 30 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.27.3-1
112- update from upstream.
113- remove libglade from Requires and BuildRequires.
114
115* Thu Jul 30 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.26.0-1
116- update from upstream.
117
118* Wed Apr 29 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.26.0-1vl5
119- update from upstream.
120
121* Tue May 13 2008 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.7.11-2vl5
122- use macro for Release
123
124* Sat May 10 2008 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.7.11-1vl5
125- update from upstream.
126
127* Thu May 08 2008 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.7.7-1vl5
128- apply new virsioning policy.
129- remove *.la
130
131* Sat Jan 05 2008 Shu KONNO <owa@bg.wakwak.com> 0.7.7-0vl1
132- fixed %%{_prefix}/lib to %%{_libdir} in %%files section
133
134* Sat Mar 31 2007 Yasumichi Akahoshi <yasumichi@vinelinux.org>
135- update from upstream.
136
137* Thu Feb 22 2007 Yasumichi Akahoshi <yasumichi@vinelinux.org>
138- packaging for VineSeed.
139
140* Tue Aug 10 2004 Pierre Sarrazin <http://sarrazip.com/>
141- Update for version 0.4.0
142* Tue Oct 24 2002 Jean Schurger <jschurger@schurger.org
143- Update for gnome 2 version
144* Wed Aug 8 2001 Jens Finke <jens@gnome.org>
145- created spec file
Note: See TracBrowser for help on using the repository browser.