source: projects/specs/trunk/m/mate-corba/mate-corba-vl.spec @ 6679

Revision 6679, 2.4 KB checked in by Takemikaduchi, 12 years ago (diff)

MATE-1.4.0

Line 
1Summary:        High-performance CORBA Object Request Broker for Mate
2Name:           mate-corba
3Version:        1.4.0
4Release:        1%{?_dist_release}
5Source0:        http://pub.mate-desktop.org/releases/1.4/%{name}-%{version}.tar.xz
6License:        GPLv2
7Group:          System Environment/Libraries
8URL:            http://mate-desktop.org/
9
10BuildRequires:  mate-common
11BuildRequires:  glib2-devel
12BuildRequires:  libIDL-devel
13BuildRequires:  gtk-doc
14BuildRequires:  autoconf
15BuildRequires:  automake
16
17BuildRoot:      %{_tmppath}/%{name}-%{version}-root
18
19Vendor:         Project Vine
20Distribution:   Vine Linux
21Packager:       Takemikaduchi
22
23
24%description
25Code for an ORB written in C will spontaneously evolve here,
26see http://www.gnome.org/projects/MateCORBA2 for more information.
27
28
29%package devel
30Summary:        Development tools for mate-corba
31Summary(ja):    mate-corba の開発環境
32Group:          Development/Libraries
33Requires:       %{name} = %{version}-%{release}
34Requires:       pkgconfig
35
36%description devel
37Header files and libraries for building a extension library for the
38mate-corba.
39
40
41%package        doc
42Summary:        Documentation for mate-corba
43Summary(ja):    mate-corba 用のドキュメント
44Group:          Documentation
45Requires:       %{name} = %{version}-%{release}
46BuildArch:      noarch
47
48%description    doc
49This package contains documentation for mate-corba.
50
51
52%prep
53%setup -q
54
55
56%build
57(if ! test -x configure; then NOCONFIGURE=1 ./autogen.sh; fi)
58%configure \
59        --disable-static \
60       
61%{__make} %{?_smp_mflags}
62
63
64%install
65%{__rm} -rf ${RPM_BUILD_ROOT}
66%{__make} install DESTDIR=${RPM_BUILD_ROOT}
67
68find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
69
70
71%clean
72%{__rm} -rf ${RPM_BUILD_ROOT}
73
74%post -p /sbin/ldconfig
75
76%postun -p /sbin/ldconfig
77
78%files
79%defattr(-,root,root,-)
80%doc COPYING COPYING.LIB ChangeLog NEWS README
81%{_bindir}/matecorba*
82%{_libdir}/libMateCORBA*.so.*
83%{_libdir}/libname-matecorba-server-2.a
84%{_libdir}/matecorba-2.0/Everything_module.so
85%{_datadir}/aclocal/MateCORBA2.m4
86%{_datadir}/idl/matecorba-2.0/CosNaming.idl
87
88%files devel
89%defattr(-,root,root,-)
90%{_includedir}/matecorba-2.0
91%{_libdir}/libMateCORBA*.so
92%{_libdir}/pkgconfig/*.pc
93
94
95%files doc
96%defattr(-,root,root,-)
97%{_datadir}/gtk-doc/html/MateCORBA2
98
99
100%changelog
101* Wed Aug 01 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.0-1
102- new upstream release
103
104* Sat May 12 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.2-1
105- new upstream release
106
107* Fri Dec 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.0-1
108- initial build for Vine Linux
109
Note: See TracBrowser for help on using the repository browser.