aboutsummaryrefslogtreecommitdiffstats
path: root/packaging/rpm/ethereal.spec.in
blob: 4524497eb67e488bb66c9b9df9a4bd58bc1ad6ec (plain)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Note that this is NOT a relocatable package
%define ver      @VERSION@
%define rel      1
%define prefix   /usr/X11R6

Summary:	Network traffic analyzer
Name:		ethereal
Version:	%ver
Release:	%rel
Copyright:	GPL
Group:		Networking/Utilities
Source:		ethereal-%{PACKAGE_VERSION}.tar.gz
URL:		http://www.ethereal.com/
BuildRoot:	/tmp/ethereal-%{PACKAGE_VERSION}-root
Packager:	FastJack <fastjack@i-s-o.net>
Requires:	gtk+
Requires:	libpcap

%description
Ethereal is a network traffic analyzer for Unix-ish operating systems.

%prep
%setup
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix --sysconfdir=/etc
make

%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT/{etc,usr/X11R6/bin,usr/X11R6/man/man1,usr/bin,usr/man/man1}

# can't use make install here. It would put manuf directly into /etc
cp ethereal $RPM_BUILD_ROOT/usr/X11R6/bin
cp tethereal $RPM_BUILD_ROOT/usr/bin
cp editcap $RPM_BUILD_ROOT/usr/bin
cp ethereal.1 $RPM_BUILD_ROOT/usr/X11R6/man/man1
cp tethereal.1 $RPM_BUILD_ROOT/usr/man/man1
cp editcap.1 $RPM_BUILD_ROOT/usr/man/man1
cp manuf $RPM_BUILD_ROOT/etc
cp dictionary.dtd $RPM_BUILD_ROOT/etc
cp dictionary.xml $RPM_BUILD_ROOT/etc
cp mobileipv4.xml $RPM_BUILD_ROOT/etc
cp nasreq.xml $RPM_BUILD_ROOT/etc
cp sunping.xml $RPM_BUILD_ROOT/etc

%clean
rm -rf $RPM_BUILD_ROOT

%files
%defattr(-, root, root)
%doc AUTHORS COPYING ChangeLog INSTALL NEWS README
%doc README.hpux  README.linux  README.vmware
%doc README.aix  README.irix  README.tru64  README.win32
%doc README.bsd
%config /etc/manuf
%config /etc/dictionary.dtd
%config /etc/dictionary.xml
%config /etc/mobileipv4.xml
%config /etc/nasreq.xml
%config /etc/sunping.xml
/usr/X11R6/bin/ethereal
/usr/X11R6/man/man1/ethereal.1.gz
/usr/bin/tethereal
/usr/bin/editcap
/usr/man/man1/tethereal.1.gz
/usr/man/man1/editcap.1.gz

%changelog
* Tue Aug 24 1999 Gilbert Ramirez
- changed to ethereal.spec.in so that 'configure' can update
  the version automatically

* Tue Aug 03 1999 Gilbert Ramirez <gram@xiexie.org>
- updated to 0.7.0 and changed gtk+ requirement

* Sun Jan 01 1999 Gerald Combs <gerald@zing.org>
- updated to 0.5.1

* Fri Nov 20 1998 FastJack <fastjack@i-s-o.net>
- updated to 0.5.0

* Sun Nov 15 1998 FastJack <fastjack@i-s-o.net>
- created .spec file