]> git.pld-linux.org Git - packages/cvsgraph.git/blob - cvsgraph.spec
- updated to 1.4.0
[packages/cvsgraph.git] / cvsgraph.spec
1 Summary:        Create graphs of branches and revisions for files in a CVS repository
2 Summary(pl):    Tworzenie grafów rozga³êzieñ i rewizji dla plików w repozytorium CVS
3 Name:           cvsgraph
4 Version:        1.4.0
5 Release:        1
6 License:        GPL
7 Group:          Applications/Publishing
8 Source0:        http://www.akhphd.au.dk/~bertho/cvsgraph/release/%{name}-%{version}.tar.gz
9 # Source0-md5:  706f0af002424712feb5b8c8406dcce8
10 URL:            http://www.akhphd.au.dk/~bertho/cvsgraph/
11 BuildRequires:  bison
12 BuildRequires:  flex
13 BuildRequires:  gd-devel
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 CvsGraph is a utility to make a graphical representation of all
18 revisions and branches of a file in a CVS/RCS repository. It has been
19 inspired by the 'graph' option in WinCVS, but I could not find a
20 stand-alone version of this graph code. So, it was time to write one.
21
22 %description -l pl
23 CvsGraph to narzêdzie do tworzenia graficznej reprezentacji wszystkich
24 rewizji i rozga³êzieñ pliku w repozytorium CVS/RCS. Jest zainspirowane
25 opcj± 'graph' w programie WinCVS - poniewa¿ autor nie móg³ znale¼æ
26 samodzielnej wersji tego kodu, uzna³, ¿e czas tak± napisaæ.
27
28 %prep
29 %setup -q
30
31 %build
32 %configure2_13 \
33         --sysconfdir=%{_sysconfdir}/%{name}
34 %{__make}
35
36 %install
37 rm -rf $RPM_BUILD_ROOT
38 install -d -m 755 $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man{1,5},%{_sysconfdir}/%{name}}
39
40 install -m 755 %{name} $RPM_BUILD_ROOT%{_bindir}
41 install %{name}.conf $RPM_BUILD_ROOT%{_sysconfdir}/%{name}
42 install %{name}.1 $RPM_BUILD_ROOT%{_mandir}/man1
43 install %{name}.conf.5 $RPM_BUILD_ROOT%{_mandir}/man5
44
45 %clean
46 rm -rf $RPM_BUILD_ROOT
47
48 %files
49 %defattr(644,root,root,755)
50 %doc ChangeLog README cvsgraphwrapper.php3 mkimage.php3
51 %attr(755,root,root) %{_bindir}/%{name}
52 %{_mandir}/man?/*
53 %dir %{_sysconfdir}/%{name}
54 %config(noreplace) %verify(not md5 size mtime) %{_sysconfdir}/%{name}/%{name}.conf
This page took 0.102134 seconds and 4 git commands to generate.