source: projects/specs/trunk/v/vhelpdesk/vhelpdesk-vl.spec @ 521

Revision 521, 2.1 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1%define name vhelpdesk
2%define version 0.1.2
3%define release 1%{?_dist_release}
4
5Summary: The applet that is the front end of Namazu.
6Summary(ja): Namazuのフロントエンドとして働くアップレットです。
7Name: %{name}
8Version: %{version}
9Release: %{release}
10Source0: %{name}-%{version}.tar.gz
11License: GPL
12Group: Applications/Documentation
13URL: http://vinedocs.sourceforge.jp/
14
15Requires: gnome-panel, namazu_VineDocsdb, namazu_JFdb, namazu_JMANdb
16BuildRequires: glib2-devel
17BuildRequires: gtk2-devel
18BuildRequires: gnome-desktop-devel
19BuildRoot: %{_tmppath}/%{name}-%{version}-root
20
21Vendor: Project Vine
22Distribution: Vine Linux
23
24
25%description
26The applet that is the front end of Namazu.
27The document is retrieved based on the key word, and the result is
28displayed in a browser.
29
30%description -l ja
31Namazuのフロントエンドであるアップレットです。
32キーワードを元に文書を検索し、結果をブラウザに表示します。
33
34%prep
35if [ -e $RPM_BUILD_ROOT ] ; then
36    [ "$RPM_BUILD_ROOT" != "/" ] && %{__rm} -rf $RPM_BUILD_ROOT
37fi
38
39%setup -q
40
41
42%build
43%configure
44%__make
45
46
47%install
48rm -rf $RPM_BUILD_ROOT
49export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
50%makeinstall
51unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
52
53
54%clean
55rm -rf $RPM_BUILD_ROOT
56
57%post
58export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
59gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/vhelpdesk.schemas > /dev/null
60
61%files
62%defattr(-,root,root)
63%{_sysconfdir}/gconf/schemas/vhelpdesk.schemas
64%{_bindir}/vhelpdesk
65%{_libdir}/bonobo/servers/VHelpDeskApplet.server
66%{_libexecdir}/vhelpdesk_applet
67%{_datadir}/locale/ja/LC_MESSAGES/vhelpdesk.mo
68%{_datadir}/vhelpdesk/preferenses.glade
69%{_datadir}/vhelpdesk/vhelpdesk_menu.xml
70
71
72
73%changelog
74* Mon Oct 13 2008 Shu KONNO <owa@bg.wakwak.com> 0.1.2-1vl5
75- applied new versioning policy, spec in utf-8
76
77* Sun Mar 04 2007 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.1.2-0vl1
78- update source.
79
80* Sat Nov 25 2006 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.1.1-0vl1
81- update source.
82
83* Fri Nov 24 2006 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.1.0-0vl1
84- First release for VineSeed.
85
86
87
88# end of file
89
Note: See TracBrowser for help on using the repository browser.