Switch Solaris package build naming to a more generic SVR4. Add RPM and SRPM

package build targets.  Move ethereal.spec(.in) to packaging/rpm.

The spec file is different from Henri's.  We might want to switch to his
for the sake of consistency.

svn path=/trunk/; revision=2162
This commit is contained in:
Gerald Combs 2000-07-26 03:39:11 +00:00
parent eeade6de43
commit 7baf3c1730
13 changed files with 1902 additions and 24 deletions

View File

@ -1,7 +1,7 @@
# Makefile.am
# Automake file for Ethereal
#
# $Id: Makefile.am,v 1.212 2000/07/22 20:56:13 oabad Exp $
# $Id: Makefile.am,v 1.213 2000/07/26 03:38:26 gerald Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@zing.org>
@ -487,7 +487,6 @@ EXTRA_DIST = \
doc/randpkt.txt \
doc/tethereal.pod.template \
editcap.c \
ethereal.spec.in \
getopt.c \
getopt.h \
ieee-float.h \
@ -544,7 +543,7 @@ endif
#dist-hook:
# @rm -f $(distdir)/register.c
SUBDIRS = wiretap gtk plugins @ethereal_SUBDIRS@
SUBDIRS = wiretap gtk plugins packaging @ethereal_SUBDIRS@
ethereal.1: ethereal doc/ethereal.pod.template
(cd doc ; \
@ -565,29 +564,50 @@ libtool: $(LIBTOOL_DEPS)
$(SHELL) ./config.status --recheck
# We load top_stagedir with an explicit path so that libtool doesn't freak.
top_stagedir=`cd $(top_srcdir) && pwd`/packaging/solaris.stage
top_stagedir=`cd $(top_srcdir) && pwd`/packaging/svr4.stage
stagedir=$(top_stagedir)/$(PACKAGE).stage
host_cpu=@host_cpu@
host_os=@host_os@
solaris-package: $(bin_SCRIPTS) $(lib_LTLIBRARIES)
case x$(host_os) in \
xsolaris*) \
svr4-package: $(bin_SCRIPTS) $(lib_LTLIBRARIES)
if test x$(HAVE_SVR4_PACKAGING) = xyes ; then \
rm -rf $(stagedir) ; \
$(MAKE) DESTDIR=$(stagedir) install-strip; \
$(srcdir)/packaging/solaris/mkpkg \
$(srcdir)/packaging/svr4/mkpkg \
$(PACKAGE) \
$(PACKAGE)-$(VERSION)-$(host_os)-$(host_cpu)-local \
$(prefix) \
$(top_stagedir) \
;; \
*) \
echo "Solaris packages can only be built on machines running Solaris." ; \
;; \
esac
$(top_stagedir) ; \
else \
echo "Error: SVR4 packaging tools not found." ; \
echo "Package build abandoned." ; \
fi
solaris-package: svr4-package
specfile=$(top_srcdir)/packaging/rpm/ethereal.spec
rpm-package: dist
if test x$(HAVE_RPM_PACKAGING) = xyes ; then \
cp $(top_srcdir)/$(distdir).tar.gz $(RPM_SOURCEDIR) ; \
rpm -bb --clean --rmsource $(specfile) ; \
else \
echo "Error: RPM executable and/or source directory not found." ; \
echo "Package build abandoned." ; \
fi
srpm-package: dist
if test x$(HAVE_RPM_PACKAGING) = xyes ; then \
cp $(top_srcdir)/$(distdir).tar.gz $(RPM_SOURCEDIR) ; \
rpm -bs --clean --rmsource $(specfile) ; \
else \
echo "Error: RPM executable and/or source directory not found." ; \
echo "Package build abandoned." ; \
fi
debian-package: debian/rules
dpkg-buildpackage -rfakeroot -us -uc
clean-local:
rm -rf $(top_stagedir)
debian-package: debian/rules
dpkg-buildpackage -rfakeroot -us -uc

1121
config.guess vendored Executable file

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
# $Id: configure.in,v 1.96 2000/07/22 04:09:55 gerald Exp $
# $Id: configure.in,v 1.97 2000/07/26 03:38:27 gerald Exp $
dnl
dnl Process this file with autoconf 2.13 or later to produce a
dnl configure script; 2.12 doesn't generate a "configure" script that
@ -33,6 +33,55 @@ AC_SUBST(PERL_PATH)
AC_SUBST(FLEX_PATH)
# Check for packaging utilities
# For now, we check to see if the various packaging utilites are in our
# path. I'm too lazy to write code to go hunt for them. - Gerald
AC_CHECK_PROG(HAVE_PKGPROTO, pkgproto, "yes", "no")
AC_CHECK_PROG(HAVE_PKGMK, pkgmk, "yes", "no")
AC_CHECK_PROG(HAVE_PKGTRANS, pkgtrans, "yes", "no")
AC_CHECK_PROG(HAVE_RPM, rpm, "yes", "no")
if test x$HAVE_PKGPROTO = xyes -a x$HAVE_PKGMK = xyes \
-a x$HAVE_PKGTRANS = xyes ; then
HAVE_SVR4_PACKAGING=yes
else
HAVE_SVR4_PACKAGING=no
fi
AC_SUBST(HAVE_SVR4_PACKAGING)
# Grr. Rpm 2.x has a nifty "--showrc" flag that lists all of the current
# configuration values. Version 3.x took the niftiness away by returning
# the values in their raw, unexpanded, macro-embedded form. We can either
# try to expand the values we get from 3.x, or poke around for popular build
# directories.
HAVE_RPM_PACKAGING=no
if test x$HAVE_RPM = xyes ; then
AC_MSG_CHECKING(for rpm build directories)
RPM_SOURCESDIR=`rpm --showrc | grep "^sourcedir" | \
sed -e 's/.*: //' 2> /dev/null`
if test x$RPM_SPECDIR = x ; then
# Red Hat : /usr/src/redhat
# Mandrake : /usr/scr/rpm
# SuSE : /usr/src/packages
for TEST_DIR in /usr/src/redhat /usr/src/rpm /usr/src/packages ; do
if test -d $TEST_DIR/SPECS -a -d $TEST_DIR/SOURCES -a \
-d $TEST_DIR/RPMS -a -d $TEST_DIR/SRPMS -a \
-d $TEST_DIR/BUILD ; then
RPM_SOURCESDIR=$TEST_DIR/SOURCES
fi
done
fi
if test x$RPM_SOURCESDIR = x ; then
AC_MSG_RESULT(not found)
RPM_SOURCESDIR=""
else
AC_MSG_RESULT(found)
HAVE_RPM_PACKAGING=yes
fi
fi
AC_SUBST(HAVE_RPM_PACKAGING)
# If we're running gcc, add '-Wall' to CFLAGS.
AC_MSG_CHECKING(to see if we can add '-Wall' to CFLAGS)
if test x$GCC != x ; then
@ -395,13 +444,15 @@ AM_CONFIG_HEADER(config.h)
AC_CONFIG_SUBDIRS(wiretap)
AC_OUTPUT(
Makefile
ethereal.spec
doc/Makefile
doc/dfilter2pod
gtk/Makefile
packaging/Makefile
packaging/solaris/Makefile
packaging/solaris/pkginfo
packaging/rpm/Makefile
packaging/rpm/ethereal.spec
packaging/svr4/Makefile
packaging/svr4/checkinstall
packaging/svr4/pkginfo
plugins/Makefile
plugins/gryphon/Makefile,
[chmod +x doc/dfilter2pod])

View File

@ -1 +1 @@
SUBDIRS = solaris
SUBDIRS = rpm svr4

View File

@ -71,6 +71,12 @@ GLIB_LIBS = @GLIB_LIBS@
GTK_CFLAGS = @GTK_CFLAGS@
GTK_CONFIG = @GTK_CONFIG@
GTK_LIBS = @GTK_LIBS@
HAVE_PKGMK = @HAVE_PKGMK@
HAVE_PKGPROTO = @HAVE_PKGPROTO@
HAVE_PKGTRANS = @HAVE_PKGTRANS@
HAVE_RPM = @HAVE_RPM@
HAVE_RPM_PACKAGING = @HAVE_RPM_PACKAGING@
HAVE_SVR4_PACKAGING = @HAVE_SVR4_PACKAGING@
INET_ATON_C = @INET_ATON_C@
INET_ATON_O = @INET_ATON_O@
INET_NTOP_C = @INET_NTOP_C@
@ -95,6 +101,8 @@ SNMP_LIBS = @SNMP_LIBS@
SNPRINTF_C = @SNPRINTF_C@
SNPRINTF_O = @SNPRINTF_O@
SOCKET_LIBS = @SOCKET_LIBS@
STRCASECMP_C = @STRCASECMP_C@
STRCASECMP_O = @STRCASECMP_O@
STRERROR_C = @STRERROR_C@
STRERROR_O = @STRERROR_O@
STRNCASECMP_C = @STRNCASECMP_C@
@ -103,7 +111,7 @@ VERSION = @VERSION@
YACC = @YACC@
ethereal_SUBDIRS = @ethereal_SUBDIRS@
SUBDIRS = solaris
SUBDIRS = rpm svr4
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_HEADER = ../config.h
CONFIG_CLEAN_FILES =
@ -112,7 +120,7 @@ DIST_COMMON = Makefile.am Makefile.in
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
TAR = tar
TAR = gtar
GZIP_ENV = --best
all: all-redirect
.SUFFIXES:
@ -226,7 +234,7 @@ distdir: $(DISTFILES)
@for file in $(DISTFILES); do \
d=$(srcdir); \
if test -d $$d/$$file; then \
cp -pr $$/$$file $(distdir)/$$file; \
cp -pr $$d/$$file $(distdir)/$$file; \
else \
test -f $(distdir)/$$file \
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \

View File

@ -0,0 +1 @@
EXTRA_DIST = ethereal.spec.in

224
packaging/rpm/Makefile.in Normal file
View File

@ -0,0 +1,224 @@
# Makefile.in generated automatically by automake 1.4 from Makefile.am
# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
SHELL = @SHELL@
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
sbindir = @sbindir@
libexecdir = @libexecdir@
datadir = @datadir@
sysconfdir = @sysconfdir@
sharedstatedir = @sharedstatedir@
localstatedir = @localstatedir@
libdir = @libdir@
infodir = @infodir@
mandir = @mandir@
includedir = @includedir@
oldincludedir = /usr/include
DESTDIR =
pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
top_builddir = ../..
ACLOCAL = @ACLOCAL@
AUTOCONF = @AUTOCONF@
AUTOMAKE = @AUTOMAKE@
AUTOHEADER = @AUTOHEADER@
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
INSTALL_DATA = @INSTALL_DATA@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
transform = @program_transform_name@
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
host_alias = @host_alias@
host_triplet = @host@
AS = @AS@
CC = @CC@
CPP = @CPP@
DATAFILE_DIR = @DATAFILE_DIR@
DLLTOOL = @DLLTOOL@
FLEX_PATH = @FLEX_PATH@
GLIB_CFLAGS = @GLIB_CFLAGS@
GLIB_CONFIG = @GLIB_CONFIG@
GLIB_LIBS = @GLIB_LIBS@
GTK_CFLAGS = @GTK_CFLAGS@
GTK_CONFIG = @GTK_CONFIG@
GTK_LIBS = @GTK_LIBS@
HAVE_PKGMK = @HAVE_PKGMK@
HAVE_PKGPROTO = @HAVE_PKGPROTO@
HAVE_PKGTRANS = @HAVE_PKGTRANS@
HAVE_RPM = @HAVE_RPM@
HAVE_RPM_PACKAGING = @HAVE_RPM_PACKAGING@
HAVE_SVR4_PACKAGING = @HAVE_SVR4_PACKAGING@
INET_ATON_C = @INET_ATON_C@
INET_ATON_O = @INET_ATON_O@
INET_NTOP_C = @INET_NTOP_C@
INET_NTOP_O = @INET_NTOP_O@
INET_PTON_C = @INET_PTON_C@
INET_PTON_O = @INET_PTON_O@
LEX = @LEX@
LIBTOOL = @LIBTOOL@
LIBTOOL_DEPS = @LIBTOOL_DEPS@
LN_S = @LN_S@
MAKEINFO = @MAKEINFO@
MKSTEMP_C = @MKSTEMP_C@
MKSTEMP_O = @MKSTEMP_O@
NSL_LIBS = @NSL_LIBS@
OBJDUMP = @OBJDUMP@
PACKAGE = @PACKAGE@
PCAP_LIBS = @PCAP_LIBS@
PERL_PATH = @PERL_PATH@
PLUGIN_DIR = @PLUGIN_DIR@
RANLIB = @RANLIB@
SNMP_LIBS = @SNMP_LIBS@
SNPRINTF_C = @SNPRINTF_C@
SNPRINTF_O = @SNPRINTF_O@
SOCKET_LIBS = @SOCKET_LIBS@
STRCASECMP_C = @STRCASECMP_C@
STRCASECMP_O = @STRCASECMP_O@
STRERROR_C = @STRERROR_C@
STRERROR_O = @STRERROR_O@
STRNCASECMP_C = @STRNCASECMP_C@
STRNCASECMP_O = @STRNCASECMP_O@
VERSION = @VERSION@
YACC = @YACC@
ethereal_SUBDIRS = @ethereal_SUBDIRS@
EXTRA_DIST = ethereal.spec.in
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_HEADER = ../../config.h
CONFIG_CLEAN_FILES = ethereal.spec
DIST_COMMON = Makefile.am Makefile.in ethereal.spec.in
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
TAR = gtar
GZIP_ENV = --best
all: all-redirect
.SUFFIXES:
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
cd $(top_srcdir) && $(AUTOMAKE) --gnu packaging/rpm/Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
cd $(top_builddir) \
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
ethereal.spec: $(top_builddir)/config.status ethereal.spec.in
cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
tags: TAGS
TAGS:
distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
subdir = packaging/rpm
distdir: $(DISTFILES)
here=`cd $(top_builddir) && pwd`; \
top_distdir=`cd $(top_distdir) && pwd`; \
distdir=`cd $(distdir) && pwd`; \
cd $(top_srcdir) \
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu packaging/rpm/Makefile
@for file in $(DISTFILES); do \
d=$(srcdir); \
if test -d $$d/$$file; then \
cp -pr $$d/$$file $(distdir)/$$file; \
else \
test -f $(distdir)/$$file \
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|| cp -p $$d/$$file $(distdir)/$$file || :; \
fi; \
done
info-am:
info: info-am
dvi-am:
dvi: dvi-am
check-am: all-am
check: check-am
installcheck-am:
installcheck: installcheck-am
install-exec-am:
install-exec: install-exec-am
install-data-am:
install-data: install-data-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
install: install-am
uninstall-am:
uninstall: uninstall-am
all-am: Makefile
all-redirect: all-am
install-strip:
$(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
installdirs:
mostlyclean-generic:
clean-generic:
distclean-generic:
-rm -f Makefile $(CONFIG_CLEAN_FILES)
-rm -f config.cache config.log stamp-h stamp-h[0-9]*
maintainer-clean-generic:
mostlyclean-am: mostlyclean-generic
mostlyclean: mostlyclean-am
clean-am: clean-generic mostlyclean-am
clean: clean-am
distclean-am: distclean-generic clean-am
-rm -f libtool
distclean: distclean-am
maintainer-clean-am: maintainer-clean-generic distclean-am
@echo "This command is intended for maintainers to use;"
@echo "it deletes files that may require special tools to rebuild."
maintainer-clean: maintainer-clean-am
.PHONY: tags distdir info-am info dvi-am dvi check check-am \
installcheck-am installcheck install-exec-am install-exec \
install-data-am install-data install-am install uninstall-am uninstall \
all-redirect all-am all installdirs mostlyclean-generic \
distclean-generic clean-generic maintainer-clean-generic clean \
mostlyclean distclean maintainer-clean
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:

View File

@ -0,0 +1,73 @@
# 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://ethereal.zing.org/
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
%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
/usr/X11R6/bin/ethereal
/usr/X11R6/man/man1/ethereal.1
/usr/bin/tethereal
/usr/bin/editcap
/usr/man/man1/tethereal.1
/usr/man/man1/editcap.1
%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

View File

@ -0,0 +1,3 @@
DISTCLEANFILES = Prototype
EXTRA_DIST = checkinstall.in mkpkg pkginfo.in

229
packaging/svr4/Makefile.in Normal file
View File

@ -0,0 +1,229 @@
# Makefile.in generated automatically by automake 1.4 from Makefile.am
# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
SHELL = @SHELL@
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
sbindir = @sbindir@
libexecdir = @libexecdir@
datadir = @datadir@
sysconfdir = @sysconfdir@
sharedstatedir = @sharedstatedir@
localstatedir = @localstatedir@
libdir = @libdir@
infodir = @infodir@
mandir = @mandir@
includedir = @includedir@
oldincludedir = /usr/include
DESTDIR =
pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
top_builddir = ../..
ACLOCAL = @ACLOCAL@
AUTOCONF = @AUTOCONF@
AUTOMAKE = @AUTOMAKE@
AUTOHEADER = @AUTOHEADER@
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
INSTALL_DATA = @INSTALL_DATA@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
transform = @program_transform_name@
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
host_alias = @host_alias@
host_triplet = @host@
AS = @AS@
CC = @CC@
CPP = @CPP@
DATAFILE_DIR = @DATAFILE_DIR@
DLLTOOL = @DLLTOOL@
FLEX_PATH = @FLEX_PATH@
GLIB_CFLAGS = @GLIB_CFLAGS@
GLIB_CONFIG = @GLIB_CONFIG@
GLIB_LIBS = @GLIB_LIBS@
GTK_CFLAGS = @GTK_CFLAGS@
GTK_CONFIG = @GTK_CONFIG@
GTK_LIBS = @GTK_LIBS@
HAVE_PKGMK = @HAVE_PKGMK@
HAVE_PKGPROTO = @HAVE_PKGPROTO@
HAVE_PKGTRANS = @HAVE_PKGTRANS@
HAVE_RPM = @HAVE_RPM@
HAVE_RPM_PACKAGING = @HAVE_RPM_PACKAGING@
HAVE_SVR4_PACKAGING = @HAVE_SVR4_PACKAGING@
INET_ATON_C = @INET_ATON_C@
INET_ATON_O = @INET_ATON_O@
INET_NTOP_C = @INET_NTOP_C@
INET_NTOP_O = @INET_NTOP_O@
INET_PTON_C = @INET_PTON_C@
INET_PTON_O = @INET_PTON_O@
LEX = @LEX@
LIBTOOL = @LIBTOOL@
LIBTOOL_DEPS = @LIBTOOL_DEPS@
LN_S = @LN_S@
MAKEINFO = @MAKEINFO@
MKSTEMP_C = @MKSTEMP_C@
MKSTEMP_O = @MKSTEMP_O@
NSL_LIBS = @NSL_LIBS@
OBJDUMP = @OBJDUMP@
PACKAGE = @PACKAGE@
PCAP_LIBS = @PCAP_LIBS@
PERL_PATH = @PERL_PATH@
PLUGIN_DIR = @PLUGIN_DIR@
RANLIB = @RANLIB@
SNMP_LIBS = @SNMP_LIBS@
SNPRINTF_C = @SNPRINTF_C@
SNPRINTF_O = @SNPRINTF_O@
SOCKET_LIBS = @SOCKET_LIBS@
STRCASECMP_C = @STRCASECMP_C@
STRCASECMP_O = @STRCASECMP_O@
STRERROR_C = @STRERROR_C@
STRERROR_O = @STRERROR_O@
STRNCASECMP_C = @STRNCASECMP_C@
STRNCASECMP_O = @STRNCASECMP_O@
VERSION = @VERSION@
YACC = @YACC@
ethereal_SUBDIRS = @ethereal_SUBDIRS@
DISTCLEANFILES = Prototype
EXTRA_DIST = checkinstall.in mkpkg pkginfo.in
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_HEADER = ../../config.h
CONFIG_CLEAN_FILES = checkinstall pkginfo
DIST_COMMON = Makefile.am Makefile.in checkinstall.in pkginfo.in
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
TAR = gtar
GZIP_ENV = --best
all: all-redirect
.SUFFIXES:
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
cd $(top_srcdir) && $(AUTOMAKE) --gnu packaging/svr4/Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
cd $(top_builddir) \
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
checkinstall: $(top_builddir)/config.status checkinstall.in
cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
pkginfo: $(top_builddir)/config.status pkginfo.in
cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
tags: TAGS
TAGS:
distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
subdir = packaging/svr4
distdir: $(DISTFILES)
here=`cd $(top_builddir) && pwd`; \
top_distdir=`cd $(top_distdir) && pwd`; \
distdir=`cd $(distdir) && pwd`; \
cd $(top_srcdir) \
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu packaging/svr4/Makefile
@for file in $(DISTFILES); do \
d=$(srcdir); \
if test -d $$d/$$file; then \
cp -pr $$d/$$file $(distdir)/$$file; \
else \
test -f $(distdir)/$$file \
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|| cp -p $$d/$$file $(distdir)/$$file || :; \
fi; \
done
info-am:
info: info-am
dvi-am:
dvi: dvi-am
check-am: all-am
check: check-am
installcheck-am:
installcheck: installcheck-am
install-exec-am:
install-exec: install-exec-am
install-data-am:
install-data: install-data-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
install: install-am
uninstall-am:
uninstall: uninstall-am
all-am: Makefile
all-redirect: all-am
install-strip:
$(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
installdirs:
mostlyclean-generic:
clean-generic:
distclean-generic:
-rm -f Makefile $(CONFIG_CLEAN_FILES)
-rm -f config.cache config.log stamp-h stamp-h[0-9]*
-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
maintainer-clean-generic:
mostlyclean-am: mostlyclean-generic
mostlyclean: mostlyclean-am
clean-am: clean-generic mostlyclean-am
clean: clean-am
distclean-am: distclean-generic clean-am
-rm -f libtool
distclean: distclean-am
maintainer-clean-am: maintainer-clean-generic distclean-am
@echo "This command is intended for maintainers to use;"
@echo "it deletes files that may require special tools to rebuild."
maintainer-clean: maintainer-clean-am
.PHONY: tags distdir info-am info dvi-am dvi check check-am \
installcheck-am installcheck install-exec-am install-exec \
install-data-am install-data install-am install uninstall-am uninstall \
all-redirect all-am all installdirs mostlyclean-generic \
distclean-generic clean-generic maintainer-clean-generic clean \
mostlyclean distclean maintainer-clean
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:

53
packaging/svr4/checkinstall.in Executable file
View File

@ -0,0 +1,53 @@
#!/bin/sh
#
# Checkinstall - perform preinstallation install checks.
#
# This is a modified version of a script written by mark@metalab.unc.edu .
# The original is at http://metalab.unc.edu/pub/packages/solaris/sparc/html/creating.solaris.packages.html .
gtk_major_needed="1"
gtk_minor_needed="2"
host_cpu="@host_cpu@"
host_os="@host_os@"
release=`uname -r`
platform=`uname -p`
# GNU autoconf translates "i86pc" to "i386".
if [ "$host_cpu" = "i386" ] ; then
expected_platform="i86pc"
else
expected_platform="@host_cpu@"
fi
#
if [ -x /usr/local/bin/gtk-config ] ; then
gtk_installed=`/usr/local/bin/gtk-config --version`
gtk_major_installed=`echo $gtk_installed | cut -f1 -d.`
gtk_minor_installed=`echo $gtk_installed | cut -f2 -d.`
else
gtk_major_installed="0"
gtk_minor_installed="0"
fi
#
if [ ${platform} != ${expected_platform} ]; then
echo "\n\n\n\tThis package must be installed on a ${expected_platform} architecture\n"
echo "\tAborting installation.\n\n\n"
exit 1
fi
# if [ ${release} != ${expected_release} ]; then
# echo "\n\n\n\tThis package must be installed on a ${expected_release} machine\n"
# echo "\tAborting installation.\n\n\n"
# exit 1
# fi
if [ "$gtk_major_installed" -lt "$gtk_major_needed" -a \
"$gtk_minor_installed" -lt "$gtk_minor_needed" ] ; then
echo "\n\n\n\tThis package requires gtk+ version >= $gtk_major_needed.$gtk_minor_needed installed in /usr/local."
echo "\tAborting installation.\n\n\n"
exit 1
fi
exit 0

82
packaging/svr4/mkpkg Executable file
View File

@ -0,0 +1,82 @@
#!/bin/sh
#
# mkpkg - Builds a pkgadd-installable package from a listing of the contents in
# a staging directory.
#
# This is a modified version of a script written by mark@metalab.unc.edu .
# The original is at http://metalab.unc.edu/pub/packages/solaris/sparc/html/creating.solaris.packages.html .
if [ "$1" != "" ] ; then
pkg=$1
else
echo "Usage: " `basename $0` " <package name> [output file]"
exit 1
fi
if [ "$2" != "" ] ; then
pkgfile=$2
else
pkgfile=$pkg
fi
if [ "$3" != "" ] ; then
prefix=$3
else
prefix=/usr/local
fi
if [ "$4" != "" ] ; then
srcdir=$4
else
srcdir=`basename $0`/../..
fi
# Initialize our variables
prepdir=`dirname $0`
prototype="$prepdir/Prototype"
stagedir=$srcdir/${pkg}.stage
# Create the Prototype file
cat > $prototype <<Fin
i pkginfo
i checkinstall
Fin
if [ ! -d $stagedir ] ; then
echo "Whoops! Staging directory $stagedir doesn't exist. Bailing."
exit 1
fi
find $stagedir/$prefix -mindepth 1 -print | \
pkgproto $stagedir/$prefix=$prefix >> $prototype
# Make the package installation directory
pkgmk -o -r / -d /$srcdir -f $prototype
echo "Setting file permissions in $stagedir tree to 644."
find $stagedir -type f -print | xargs chmod a+r
find $stagedir -type f -print | xargs chmod u+w
echo "Setting directory permissions in $stagedir tree to 755."
find $stagedir -type d -print | xargs chmod 755
if [ -f $stagedir/install/preinstall ]; then
chmod 755 $stagedir/install/preinstall
fi
if [ -f $stagedir/install/postinstall ]; then
chmod 755 $stagedir/install/postinstall
fi
if [ -f $stagedir/install/preremove ]; then
chmod 755 $stagedir/install/preremove
fi
if [ -f $stagedir/install/postremove ]; then
chmod 755 $stagedir/install/postremove
fi
if [ -f $stagedir/install/request ]; then
chmod 755 $stagedir/install/request
fi
if [ -f $stagedir/install/checkinstall ]; then
chmod 755 $stagedir/install/checkinstall
fi
# Spool the install directory into its own self-contained file.
pkgtrans -s $srcdir $pkgfile $pkg
# echo "Compressing package file"
# gzip -9 $srcdir/$pkgfile

13
packaging/svr4/pkginfo.in Normal file
View File

@ -0,0 +1,13 @@
PKG="@PACKAGE@"
NAME="@PACKAGE@ @VERSION@"
VERSION="@VERSION@"
ARCH="@host_cpu@"
CLASSES="none"
CATEGORY="application,network"
DESC="A GUI network protocol analyzer"
VENDOR="Ethereal Development Team"
PSTAMP="2000-07-16"
EMAIL="gerald@zing.org"
ISTATES="S s 1 2 3"
RSTATES="S s 1 2 3"
BASEDIR=""