]> git.pld-linux.org Git - packages/firestarter.git/blame - firestarter.spec
- raw version.
[packages/firestarter.git] / firestarter.spec
CommitLineData
ec6c8d00 1%define name firestarter
2%define version 0.2.2
3%define release 1
4%define prefix /usr
5
6Summary: A firewall tool GNOME
7Name: %{name}
8Version: %{version}
9Release: %{release}
10Copyright: GPL
11Group: Applications/Internet
12URL: http://firestarter.sourceforge.net
13
14Source: http://download.sourceforge.com/firestarter/firestarter-%{version}.tar.gz
15BuildRoot: /var/tmp/%{name}-%{version}-%{release}-root
16
17Docdir: %{prefix}/doc
18
19Requires: gtk+ >= 1.2.5
20Requires: gnome-libs >= 1.0.55
21Requires: ipchains >= 1.3.9
22
23%description
24FireStarter is an easy-to-use, yet powerful, Linux firewall tool for GNOME.
25Use it to quickly set up a secure environment using the firewall creation
26wizard, or use it's monitoring and administrating features with your old
27firewall scripts.
28
29%prep
30
31%setup
32
33%build
34CFLAGS="-O2"
35%ifarch i586
36CFLAGS="-O2 -mpentium -march=pentium"
37%endif
38%ifarch i686
39CFLAGS="-O2 -mpentiumpro -march=pentiumpro"
40%endif
41./configure --prefix=%{prefix}
42make
43
44%install
45rm -rf $RPM_BUILD_ROOT
46make prefix=$RPM_BUILD_ROOT%{prefix} install
47
48%files
49%defattr(-,root,root)
50%doc README ChangeLog AUTHORS TODO COPYING CREDITS
51%attr(755,root,root) %{prefix}/bin/firestarter
52%{prefix}/share/gnome/apps/Internet/firestarter.desktop
53%{prefix}/share/pixmaps/*
54
55%clean
56rm -r $RPM_BUILD_ROOT
57
58%changelog
59* Mon May 29 2000 Tomas Junnonen
60- First spec file
This page took 0.07715 seconds and 4 git commands to generate.