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

Revision 805, 3.6 KB checked in by Takemikaduchi, 14 years ago (diff)

change spec file of gnome-2.30

Line 
1Version:        2.30.0
2Release:        1%{?_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* Wed Mar 31 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-1
96- new upstream release.
97
98* Sun Mar 14 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.2-1
99- new upstream release.
100
101* Mon Nov 02 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.28.1-1
102- new upstream release.
103- fixed BR.
104- update summary, description and  license.
105- add Vendor, Distribution and Packager.
106
107
108* Thu Jul 30 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.27.3-1
109- update from upstream.
110- remove libglade from Requires and BuildRequires.
111
112* Thu Jul 30 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.26.0-1
113- update from upstream.
114
115* Wed Apr 29 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.26.0-1vl5
116- update from upstream.
117
118* Tue May 13 2008 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.7.11-2vl5
119- use macro for Release
120
121* Sat May 10 2008 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.7.11-1vl5
122- update from upstream.
123
124* Thu May 08 2008 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.7.7-1vl5
125- apply new virsioning policy.
126- remove *.la
127
128* Sat Jan 05 2008 Shu KONNO <owa@bg.wakwak.com> 0.7.7-0vl1
129- fixed %%{_prefix}/lib to %%{_libdir} in %%files section
130
131* Sat Mar 31 2007 Yasumichi Akahoshi <yasumichi@vinelinux.org>
132- update from upstream.
133
134* Thu Feb 22 2007 Yasumichi Akahoshi <yasumichi@vinelinux.org>
135- packaging for VineSeed.
136
137* Tue Aug 10 2004 Pierre Sarrazin <http://sarrazip.com/>
138- Update for version 0.4.0
139* Tue Oct 24 2002 Jean Schurger <jschurger@schurger.org
140- Update for gnome 2 version
141* Wed Aug 8 2001 Jens Finke <jens@gnome.org>
142- created spec file
Note: See TracBrowser for help on using the repository browser.