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