File: cheops-ng.spec.in

package info (click to toggle)
cheops-ng 0.2.3-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,036 kB
  • ctags: 2,488
  • sloc: ansic: 21,812; sh: 3,000; makefile: 348
file content (63 lines) | stat: -rw-r--r-- 1,849 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
%define name       @CHEOPS_PACKAGE@
%define version    @CHEOPS_VERSION@
%define release    1
%define serial     1
%define prefix     /usr
%define sysconfdir /etc

Summary:	A Gnome network mapper, OS/port scanner, and monitoring program
Name:		%{name}
Version:	%{version}
Release:	%{release}
Serial:		%{serial}
Copyright:	GPL
Group:		Applications/Internet
Vendor:		Priddy Good Software
Url:		http://cheops-ng.sourceforge.net/
Source:		%{name}-%{version}.tar.gz
Packager:	Brent Priddy <toopriddy@mailcity.com>
BuildRoot:	/var/tmp/%{name}-%{version}-root
Requires:	gtk+ >= 1.2.5
Requires:   gnome-libs >= 1.2.0
Requires:   libxml >= 1.8.0
Requires:   imlib >= 1.9.0

%description
Cheops-ng is a Network management tool for mapping and monitoring your
network. It has host/network discovery functionality as well as OS detection
of hosts. Cheops-ng has the ability to probe hosts to see what services they
are running. On some services, cheops-ng is actually able to see what
program is running for a service and the version number of that program. The
future for cheops-ng includes host monitoring via various methods like ping,
grabbing a web page, logging in via ftp... whatever is needed

%prep
%setup

%build
echo "here"
CFLAGS="$RPM_OPT_FLAGS" 
./configure --prefix=%{prefix}
make 
make strip
if [ -d $RPM_BUILD_ROOT ]; then rm -r $RPM_BUILD_ROOT; fi;
mkdir -p $RPM_BUILD_ROOT%{prefix}
make prefix=$RPM_BUILD_ROOT%{prefix} install
make clean

%install
make DESTDIR=$RPM_BUILD_ROOT prefix=%{prefix} sysconfdir=%{sysconfdir} install

%files
%defattr(-,root,root)
%{prefix}/bin/cheops-ng
%{prefix}/bin/cheops-agent
%{prefix}/share/pixmaps/cheops-ng.xpm
%{prefix}/share/cheops-ng/pixmaps/*
%{prefix}/share/gnome/apps/Internet/cheops-ng.desktop
%{prefix}/share/gnome/ximian/Programs/Internet/cheops-ng.desktop

%clean
rm -r $RPM_BUILD_ROOT

%changelog