[csw-devel] SF.net SVN: gar:[20248] csw/mgar/pkg/hylafax/trunk

dmichelsen at users.sourceforge.net dmichelsen at users.sourceforge.net
Thu Jan 31 18:29:14 CET 2013


Revision: 20248
          http://gar.svn.sourceforge.net/gar/?rev=20248&view=rev
Author:   dmichelsen
Date:     2013-01-31 17:29:13 +0000 (Thu, 31 Jan 2013)
Log Message:
-----------
hylafax: More work toward release, file ownership still missing

Modified Paths:
--------------
    csw/mgar/pkg/hylafax/trunk/Makefile

Added Paths:
-----------
    csw/mgar/pkg/hylafax/trunk/files/0002-Return-value-if-function-requires-it.patch
    csw/mgar/pkg/hylafax/trunk/files/config.site

Removed Paths:
-------------
    csw/mgar/pkg/hylafax/trunk/files/config.site.CSW

Modified: csw/mgar/pkg/hylafax/trunk/Makefile
===================================================================
--- csw/mgar/pkg/hylafax/trunk/Makefile	2013-01-31 16:57:36 UTC (rev 20247)
+++ csw/mgar/pkg/hylafax/trunk/Makefile	2013-01-31 17:29:13 UTC (rev 20248)
@@ -10,7 +10,8 @@
 MASTER_SITES = $(SF_MIRRORS)
 DISTFILES  = $(NAME)-$(VERSION).tar.gz
 # DISTFILES += $(call admfiles,CSWhylafax,prototype depend postinstall preremove postremove)
-DISTFILES += config.site.CSW
+DISTFILES += config.site
+EXPANDVARS += config.site
 #DISTFILES += cswhylafax.init cswhylafax.xml svc-cswhylafax
 
 # We define upstream file regex so we can be notifed of new upstream software release
@@ -21,9 +22,22 @@
 PATCHFILES = patch-hylafax.diff
 
 # PATCHFILES += 0001-Use-relative-path.patch
+PATCHFILES += 0002-Return-value-if-function-requires-it.patch
 
+BUILD_DEP_PKGS += CSWlibjbig-dev
+BUILD_DEP_PKGS += CSWliblcms2-dev
 BUILD_DEP_PKGS += CSWopenldap-dev
 
+PACKAGES += CSWhylafax-plus
+SPKG_DESC_CSWhylafax-plus = An enterprise-class system for sending and receiving facsimiles and alpha-numeric pages
+# PKGFILES is catchall
+RUNTIME_DEP_PKGS_CSWhylafax-plus += CSWlibjbig2
+RUNTIME_DEP_PKGS_CSWhylafax-plus += CSWliblcms2-2
+RUNTIME_DEP_PKGS_CSWhylafax-plus += CSWlibldap2-4-2
+RUNTIME_DEP_PKGS_CSWhylafax-plus += CSWlibz1
+
+INITSMF += /etc/opt/csw/init.d/hylafax
+
 #export CC=/opt/SUNWspro/bin/cc
 #export CXX=/opt/SUNWspro/bin/CC
 #export CFLAGS="-I/opt/csw/include -L/opt/csw/lib -lsocket -lnsl"
@@ -36,6 +50,17 @@
 #export LD_LIBRARY_PATH=/opt/csw/lib:/opt/hylafax/lib
 #export MANPATH=/usr/share/man:/opt/hylafax/man
 
+EXTRA_CXXFLAGS += -norunpath
+# Why does LD_OPTIONS does not work???
+# EXTRA_CXXFLAGS += $(LINKER_IGNORE)
+
+# EXTRA_CFLAGS += $(LINKER_IGNORE)
+
+EXTRA_LDFLAGS += $(LD_OPTIONS)
+
+#EXTRA_CXXFLAGS += $(LINKER_DIRECT)
+#EXTRA_CXXFLAGS += $(LINKER_IGNORE)
+
 #CONFIGURE_ENV = PATH_GSRIP=$(bindir)/gs PS=gs DIR_MAN=$(mandir)
 #BUILD_ENV = PATH_GSRIP=$(bindir)/gs PS=gs DIR_MAN=$(mandir)
 
@@ -53,34 +78,33 @@
 #EXTRA_BUILD_EXPORTS += DIR_MAN
 BUILD_ENV_DIR_MAN = $(mandir)
 
-#EXTRA_LINKER_FLAGS += -lsocket -lnsl
-
 CONFIGURE_ARGS += --nointeractive
-#CONFIGURE_ARGS += --with-INSTALLROOT=$(DESTDIR)
+CONFIGURE_ARGS += --with-INSTALLROOT=$(DESTDIR)
 
 # Hylafax doesn't have a testsuite
 TEST_SCRIPTS =
 
+EXTRA_MERGE_EXCLUDE_FILES += /etc/opt/csw/rc.*
+# EXTRA_PAX_ARGS += -s '(/etc/init.d)(/etc/opt/csw/init.d)'
+
 include gar/category.mk
 
 #CFLAGS := $(CFLAGS) -L$(libdir) -R$(libdir) -lsocket -lnsl
 #CXXFLAGS := $(CXXFLAGS) -L$(libdir) -R$(libdir) -lsocket -lnsl
 
 post-extract:
-	#cp $(WORKDIR)/config.site.CSW $(WORKSRC)/config.site
 	cd $(WORKSRC) && perl -npi -e 's{\$$\{DEPTH\}/\$$\{TOPSRCDIR\}}{\$${TOPSRCDIR}}' `find . -type f`
-	banner ex
 	@$(MAKECOOKIE)
 
+pre-configure:
+	cp $(WORKDIR)/config.site $(WORKSRC)/config.site
+	@$(MAKECOOKIE)
+
 post-install:
 	@echo " ==> Fixing permissions"
 	#chown -R uucp:uucp $(addprefix $(DESTDIR)$(localstatedir)/spool/hylafax/,info log recvq status sendq doneq docq tmp pollq archive FIFO)
 	#@echo " ==> Adding RC-Scripts"
-	#-ginstall $(WORKSRC)/etc/hylafax $(DESTDIR)/etc/init.d/cswhylafax
-	#-gln -s ../init.d/cswhylafax $(DESTDIR)/etc/rc2.d/S80cswhylafax
-	#-$(foreach D,rc0.d rc1.d rcS.d,gln -s ../init.d/hylafax $(DESTDIR)/etc/$D/K20cswhylafax;)
-	#ginstall $(WORKSRC)/etc/hylafax $(DESTDIR)/opt/csw/etc/init.d/cswhylafax
-	-mkdir -p $(DESTDIR)$(sharedstatedir)/hylafax
+	#-mkdir -p $(DESTDIR)$(sharedstatedir)/hylafax
 	#@$(MAKECOOKIE)
 
 # 1. rmdir /opt/csw/var/spool/hylafax/dev

Added: csw/mgar/pkg/hylafax/trunk/files/0002-Return-value-if-function-requires-it.patch
===================================================================
--- csw/mgar/pkg/hylafax/trunk/files/0002-Return-value-if-function-requires-it.patch	                        (rev 0)
+++ csw/mgar/pkg/hylafax/trunk/files/0002-Return-value-if-function-requires-it.patch	2013-01-31 17:29:13 UTC (rev 20248)
@@ -0,0 +1,25 @@
+From 75d55fc4634622a7827db482a8d8474a534e108a Mon Sep 17 00:00:00 2001
+From: Dagobert Michelsen <dam at opencsw.org>
+Date: Wed, 30 Jan 2013 16:48:04 -0600
+Subject: [PATCH] Return value if function requires it
+
+---
+ faxd/itufaxicc.c++ | 2 ++
+ 1 Datei geändert, 2 Zeilen hinzugefügt(+)
+
+diff --git a/faxd/itufaxicc.c++ b/faxd/itufaxicc.c++
+index 9c33744..c0ba0bf 100644
+--- a/faxd/itufaxicc.c++
++++ b/faxd/itufaxicc.c++
+@@ -63,6 +63,8 @@ int lcms_error_exit(int ErrorCode, const char *ErrorText)
+ {
+ 	strncpy(ErrorMessage, ErrorText, JMSG_LENGTH_MAX-1);
+ 	longjmp(State, 1);
++	// This line will never be reached but without return the compile is unhappy
++	return 0;
+ }
+ 
+ 
+-- 
+1.7.11.3
+

Copied: csw/mgar/pkg/hylafax/trunk/files/config.site (from rev 20241, csw/mgar/pkg/hylafax/trunk/files/config.site.CSW)
===================================================================
--- csw/mgar/pkg/hylafax/trunk/files/config.site	                        (rev 0)
+++ csw/mgar/pkg/hylafax/trunk/files/config.site	2013-01-31 17:29:13 UTC (rev 20248)
@@ -0,0 +1,254 @@
+# $Id: config.site,v 1.4 2009/05/25 18:41:23 faxguy Exp $
+#
+# HylaFAX Facsimile Software
+#
+# Copyright (c) 1990-1996 Sam Leffler
+# Copyright (c) 1991-1996 Silicon Graphics, Inc.
+# HylaFAX is a trademark of Silicon Graphics, Inc.
+# 
+# Permission to use, copy, modify, distribute, and sell this software and 
+# its documentation for any purpose is hereby granted without fee, provided
+# that (i) the above copyright notices and this permission notice appear in
+# all copies of the software and related documentation, and (ii) the names of
+# Sam Leffler and Silicon Graphics may not be used in any advertising or
+# publicity relating to the software without the specific, prior written
+# permission of Sam Leffler and Silicon Graphics.
+# 
+# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
+# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
+# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
+# 
+# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
+# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
+# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
+# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
+# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
+# OF THIS SOFTWARE.
+#
+
+#
+# This file holds site-specific configuration parameters.
+#
+# Nothing is defined in here by default, the definitions
+# commented out below serve as documentation for what you
+# can set in this file or a config.local file.
+#
+# Note that you do not need to set anything here unless you
+# want to override the auto-configuration behaviour and/or
+# interactive prompting done by the configure script.
+#
+
+#
+# Package controls.
+#
+#DSO="auto"			# configure DSO support (auto|IRIX|no)
+#GETTY="auto"			# type of getty support (auto|BSD|SysV)
+HTML="yes"			# install HTML documentation (yes|no)
+PS="gs"				# PostScript support to use (auto|gs|dps|imp)
+#SGI2FAX="auto"			# configure SGI image support (auto|yes|no)
+#DPS="no"			# install SGI DPS-based RIP (yes|no)
+#GS="no"			# install Ghostscript RIP (yes|no)
+#IMP="no"			# install SGI Impressario 2.1 support (yes|no)
+#REGEX="yes"			# use distributed regular expression package
+#UTMP="utmpx"			# type of utmp+wtmp handling (auto|utmp|utmpx)
+
+#
+# Directory parameters.
+#
+DIR_BIN="@bindir@"				# directory for client apps
+DIR_LIB="@libdir@"				# directory for libfaxserver, libfaxutil
+DIR_LIBDATA="@libdir@/hylafax"			# directory for client data
+DIR_LIBEXEC="@libexecdir@"			# directory for libraries&hidden apps
+DIR_MAN="@mandir@"				# directory for manual pages
+DIR_SPOOL="@localstatedir@/hylafax/spool"	# directory for spooling area
+DIR_SBIN="@sbindir@"				# directory for system apps
+DIR_LOCKS="@localstatedir@/hylafax/locks"	# directory for UUCP lock files
+FONTMAP="@sharedstatedir@/ghostscript/3.33"	# directorys containing Fontmap files
+PATH_AFM="@sharedstatedir@/ghostscript/AFM"	# directorys for AFM files
+
+#
+# HTML-specific parameters; only used when the
+# HTML package is configured for installation.
+#
+# Note that ``PATH''s are the virtual pathnames used
+# in forming URLs; they are not directory pathnames
+# in the filesystem.
+#
+DIR_HTML="@sharedstatedir@/www/hylafax/htdocs"	# directory for HTML documentation
+DIR_CGI="@sharedstatedir@/www/hylafax/cgi-bin"		# directory for CGI scripts
+#HTMLPATH="/hylafax"			# virtual path to HTML materials
+#CGIPATH="/cgi-bin"			# virtual path to CGI scripts
+
+#
+# Miscellaneous parameters.
+#
+#DEFVRES="196"				# default vertical res for outbound fax
+#FILLORDER="MS2LSB"			# bit order of cpu (MSB2LSB/LSB2MSB)
+#FAXGID="uucp"				# group ID for fax user
+#FAXUID="uucp"				# user ID for fax user
+#PAGESIZE="North American Letter"	# default page size
+#SYSGID="sys"				# group ID for system installs
+#SYSUID="bin"				# user ID for system installs
+#LOCKS="ascii"				# default UUCP lockfile scheme
+#
+#PATH_GETTY="/etc/getty"		# pathname of suitable getty program
+#PATH_VGETTY="/bin/vgetty"		# pathname of voice getty program
+#PATH_EGETTY="/bin/egetty"		# pathname of external getty program
+#PATH_SENDMAIL="/usr/lib/sendmail"	# pathname of suitable sendmail program
+#PATH_GSRIP="/usr/local/bin/gs"		# pathname of Ghostscript-based RIP
+#PATH_DPSRIP="/var/spool/hylafax/bin/ps2fax.exe" # pathname of DPS-based RIP
+#PATH_IMPRIP="/usr/lib/print/psrip"	# pathname of Impressario 2.1 RIP
+#MANSCHEME="sysv-source-cat-strip"	# manual page installation scheme
+#SYSVINIT="auto"		# install SysV-style init support (auto|yes|no)
+DIR_SYSVINIT="@sysconfdir@/init.d"	# location of SysV-style init script
+#DIR_SYSVINITSTART="../rc2.d"	# location of SysV-style start script
+#DIR_SYSVINITSTOP="../rc0.d"	# location of SysV-style stop script
+#NAME_SYSVINITSTART="S80fax"	# name of SysV-style start script
+#NAME_SYSVINITSTOP="K80fax"	# name of SysV-style stop script
+#FAXQ_SERVER=yes		# init script starts faxq
+#HFAXD_SERVER=yes		# init script starts hfaxd
+#HFAXD_SNPP_SERVER=no		# don't start paging protocol
+
+# SVR4 packaging stuff
+#PKG_ARCH=				# ARCH variable in pkginfo file
+#PKG_EMAIL=someone at somehost.somedomain	# EMAIL variable in pkginfo file
+#PKG_VENDOR="Your Name Here"		# VENDOR variable in pkginfo file
+#
+
+#
+# Parameters used when building the software.
+#
+# Note that configure has several ENVOPTS built into it that are
+# set according to the target.  This is done to help naive folks.
+#
+# Beware of changing the INSTALL definition; you *must* have an
+# install script that emulates the Silicon Graphics install program!
+#
+AR="/usr/ccs/bin/ar"			# pathname of suitable ar program
+#AROPTS="rc"				# options to ar for creating archive
+CC="@CC@"				# name/pathname of C compiler
+CXX="@CXX@"				# name/pathname of C++ compiler
+#CXXFILE="-x c++"			# options for proper C++ processing
+#ENVOPTS="-Aa"				# options for getting ANSI C
+GCOPTS="@CFLAGS@ @LINKER_FLAGS@"	# options to pass C compiler
+GCXXOPTS="@CXXFLAGS@"			# options to pass C++ compiler
+#GENDIST="/sbin/gendist"		# pathname of SGI inst generator program
+#INSTALL='${SHELL} ${PORT}/install.sh'	# SGI install program/emulator
+LIBMALLOC="no"				# yes|no|auto configure -lmalloc use
+#LIBPORT='${PORT}/libport.a'		# library with emulation code
+#LIBSUN="auto"				# yes|no|auto configure -lsun use
+LLDOPTS="@LDFLAGS@ @LD_OPTIONS@"	# extra link line options
+#MACHDEPLIBS=""				# extra libraries for linking
+#OPTIMIZER="-O"				# optimizer flags
+#PORTFUNCS=""				# non-standard functions to emulate
+#PROTOTYPES="-prototypes"		# C compiler options for checking function prototypes
+#RANLIB=":"				# pathname of suitable ranlib program
+#SHDLIBC="-lc_s"			# shared C library, if not standard
+#SIGHANDLERTYPES='(void(*)(int,...))'	# types to check for signal handler
+#STRIP="/bin/strip"			# strip program used by install.sh
+
+#
+# The source for the TIFF library is not required
+# to build this software, but the library is required
+# to link against.  If libtiff is installed in a
+# non-standard location then setup LIBTIFF accordingly.
+#
+LIBTIFF="-L at libdir@ -ltiff"	# linkage convention for libtiff
+TIFFINC="-I at includedir@"		# place to find tiffio.h
+TIFFBIN="@bindir@"		# where TIFF tools live
+
+#
+# The source for the ZLIB library is not required
+# to build this software, but the library is required
+# to link against.  If ZLIB is installed in a 
+# non-standard location then setup LIBZ accordingly.
+#
+LIBZ="-L at libdir@ -lz"		# linkage convention for libz
+ZLIBINC="-I at includedir@"		# place to find zlib.h
+
+#
+# The source for the POSIX regular expression package
+# is not required to build this software, but the package
+# is required to link against.  If the copy of the software
+# that is included in this distribution is not to be used
+# then set REGEX=no and supply the following definitions.
+#
+#LIBREGEX=" "				# linkage convention for regex package
+#REGEXINC="-I/usr/include"		# place to find regex.h
+
+#
+# Parameters to control various workarounds for system bugs.
+#
+# These parameters are normally set in configure based on
+# the target system.  If they are set here, then they will
+# override anything done by configure.
+#
+#CONFIG_OPENFIFO="O_RDONLY"		# mode to open FIFOs in server proc's
+#CONFIG_FIFOBUG="yes"			# enable workaround for FIFO select bug
+#CONFIG_TIOCMBISBYREF="yes"		# pass arg by reference to ioctl
+#CONFIG_WINSZHACK="no"			# include extra files for TIOCWINSZ use
+#CONFIG_ABORTBUG="no"			# enable workaround for abort problems
+#CONFIG_NOREOPEN="yes"			# reopen tty device after toggling DTR
+#CONFIG_NOSTDINDUP="yes"		# do not redirect stdout to stdin in ondelay
+#CONFIG_BADEXECVPROTO="no"		# system has incorrect execv func decl
+#CONFIG_BADEXECVEPROTO="no"		# system has incorrect execve func decl
+#CONFIG_BADGETOPTPROTO="no"		# system has incorrect getopt func decl
+#CONFIG_SOCKARGLENTYPE="unsigned long"	# call-by-ref arg type for socket funcs
+#CONFIG_BADSELECTPROTO="no"		# system has way old select func decl
+#CONFIG_MAXGID="5999"			# maximum permissable GID
+#CONFIG_OSFCNH="auto"			# control inclusion of <osfcn.h>
+
+#
+# Dynamic Shared Object (DSO) support.
+#
+# Beware that adding new support for DSOs may require some
+# modifications to the */Makefile.dso files.
+#
+#DSOSUF="so"				# DSO filename suffix
+#DSODELAY="-delay_load"			# DSO option for delayed loading
+#DSOOPTS="-shared -rdata_shared"	# options for building DSOs
+
+#
+# Makefile construction parameters.
+#
+# These should not normally be set; configure will
+# deduce the appropriate syntax to use for includes.
+#
+#MAKECXXOVERRIDE="=.C"			# make override stuff for SunPRO C++
+#MAKEDEPINCLUDE="include"		# make include for dependency files
+#MAKEDSOINCLUDE="#"			# make include for DSO support
+#MAKEINCLUDE=".include"			# make include syntax
+#MAKELQUOTE="<"				# make include syntax
+#MAKERQUOTE=">"				# make include syntax
+#SETMAKE='MAKE	= ${MAKE}'		# define if make does not setup $MAKE
+#MKDEPCOPTS=""				# C compiler opts to supply w/ -M
+#MKDEPCXXOPTS=""			# C++ compiler opts to supply w/ -M
+
+#
+# General system stuff used by the distribution.
+#
+# Beware of setting these as configure selects several programs
+# based on whether or not they are capable of processing scripts
+# included in the distribution (e.g AWK and SCRIPT_SH, SED).
+#
+#AWK="/bin/awk"				# pathname of suitable awk program
+#CAT="/bin/cat"				# pathname of suitable cat program
+#CHGRP="/etc/chgrp"			# pathname of suitable chgrp program
+#CHMOD="/etc/chmod"			# pathname of suitable chmod program
+#CHOWN="/etc/chown"			# pathname of suitable chown program
+#CMP="/bin/cmp"				# pathname of suitable cmp program
+#COL="/bin/col"				# pathname of suitable col program
+#CP="/bin/cp"				# pathname of suitable cp program
+#ECHO="/bin/echo"			# pathname of suitable echo program
+#GREP="/bin/grep"			# pathname of suitable grep program
+#LN="/bin/ln"				# pathname of suitable ln program
+#LN_S="-s"				# option to ${LN} to create symlink
+#MAN="/usr/bin/man"			# pathname of suitable man program
+#MKDIR="/bin/mkdir"			# pathname of suitable mkdir program
+#MKFIFO="/bin/mkfifo"			# pathname of suitable mkfifo program
+#MV="/bin/mv"				# pathname of suitable mv program
+#MV_F="-f"				# option to ${MV} to force operation
+#RMCMD="/bin/rm"			# pathname of suitable rm program
+#SED="/bin/sed"				# pathname of suitable sed program
+#SCRIPT_SH="/bin/sh"			# pathname of suitable shell
+#SORT="/bin/sort"			# pathname of suitable sort program

Deleted: csw/mgar/pkg/hylafax/trunk/files/config.site.CSW
===================================================================
--- csw/mgar/pkg/hylafax/trunk/files/config.site.CSW	2013-01-31 16:57:36 UTC (rev 20247)
+++ csw/mgar/pkg/hylafax/trunk/files/config.site.CSW	2013-01-31 17:29:13 UTC (rev 20248)
@@ -1,276 +0,0 @@
-# $Id: config.site,v 1.12 2003/04/13 23:01:08 tim Exp $
-#
-# HylaFAX Facsimile Software
-#
-# Copyright (c) 1990-1996 Sam Leffler
-# Copyright (c) 1991-1996 Silicon Graphics, Inc.
-# HylaFAX is a trademark of Silicon Graphics, Inc.
-# 
-# Permission to use, copy, modify, distribute, and sell this software and 
-# its documentation for any purpose is hereby granted without fee, provided
-# that (i) the above copyright notices and this permission notice appear in
-# all copies of the software and related documentation, and (ii) the names of
-# Sam Leffler and Silicon Graphics may not be used in any advertising or
-# publicity relating to the software without the specific, prior written
-# permission of Sam Leffler and Silicon Graphics.
-# 
-# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
-# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
-# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
-# 
-# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
-# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
-# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
-# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
-# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
-# OF THIS SOFTWARE.
-#
-
-#
-# This file holds site-specific configuration parameters.
-#
-# Nothing is defined in here by default, the definitions
-# commented out below serve as documentation for what you
-# can set in this file or a config.local file.
-#
-# Note that you do not need to set anything here unless you
-# want to override the auto-configuration behaviour and/or
-# interactive prompting done by the configure script.
-#
-
-#
-# Package controls.
-#
-#DSO="auto"			# configure DSO support (auto|IRIX|no)
-#GETTY="auto"			# type of getty support (auto|BSD|SysV)
-HTML="yes"			# install HTML documentation (yes|no)
-#PS="auto"			# PostScript support to use (auto|gs|dps|imp)
-#SGI2FAX="auto"			# configure SGI image support (auto|yes|no)
-#DPS="no"			# install SGI DPS-based RIP (yes|no)
-#GS="no"			# install Ghostscript RIP (yes|no)
-#IMP="no"			# install SGI Impressario 2.1 support (yes|no)
-#REGEX="yes"			# use distributed regular expression package
-#UTMP="utmpx"			# type of utmp+wtmp handling (auto|utmp|utmpx)
-#DBLIB="no"			# use distributed libdb distribution
-
-#
-# Directory parameters.
-#
-DIR_BASE=/opt/csw
-DIR_BIN=$DIR_BASE/bin		# directory for client apps
-DIR_SBIN=$DIR_BASE/sbin		# directory for system apps
-DIR_LIB=$DIR_BASE/lib		# directory for libraries
-DIR_LIBDATA=$DIR_LIB/hylafax	# directory for client data
-DIR_LIBEXEC=$DIR_SBIN		# directory for libraries&hidden apps
-DIR_MAN=$DIR_BASE/share/man	# directory for manual pages
-DIR_SPOOL=$DIR_BASE/var/spool/hylafax		# directory for spooling area
-#DIR_LOCKS="/usr/spool/locks"		# directory for UUCP lock files
-#FONTMAP="/usr/share/ghostscript/3.33"	# directorys containing Fontmap files
-#PATH_AFM="/usr/lib/DPS/AFM"		# directorys for AFM files
-
-#
-# HTML-specific parameters; only used when the
-# HTML package is configured for installation.
-#
-# Note that ``PATH''s are the virtual pathnames used
-# in forming URLs; they are not directory pathnames
-# in the filesystem.
-#
-# We don't want to require apache so this does here
-#
-DIR_HTML=$DIR_BASE/share/hylafax/htdocs	# directory for HTML documentation
-DIR_CGI=$DIR_BASE/share/hylafax/cgi-bin		# directory for CGI scripts
-HTMLPATH="/hylafax"			# virtual path to HTML materials
-CGIPATH="/cgi-bin"			# virtual path to CGI scripts
-
-#
-# Miscellaneous parameters.
-#
-#DEFVRES="196"				# default vertical res for outbound fax
-#FILLORDER="MS2LSB"			# bit order of cpu (MSB2LSB/LSB2MSB)
-#FAXGID="uucp"				# group ID for fax user
-#FAXUID="uucp"				# user ID for fax user
-#PAGESIZE="North American Letter"	# default page size
-SYSGID="bin"				# group ID for system installs
-SYSUID="root"				# user ID for system installs
-#LOCKS="ascii"				# default UUCP lockfile scheme
-#
-#PATH_GETTY="/etc/getty"		# pathname of suitable getty program
-#PATH_VGETTY="/bin/vgetty"		# pathname of voice getty program
-#PATH_EGETTY="/bin/egetty"		# pathname of external getty program
-#PATH_SENDMAIL="/usr/lib/sendmail"	# pathname of suitable sendmail program
-PATH_GSRIP="/opt/csw/bin/gs"		# pathname of Ghostscript-based RIP
-#PATH_DPSRIP="/var/spool/hylafax/bin/ps2fax.exe" # pathname of DPS-based RIP
-#PATH_IMPRIP="/usr/lib/print/psrip"	# pathname of Impressario 2.1 RIP
-#MANSCHEME="sysv-source-cat-strip"	# manual page installation scheme
-#SYSVINIT="auto"		# install SysV-style init support (auto|yes|no)
-#DIR_SYSVINIT="/etc/init.d"	# location of SysV-style init script
-#DIR_SYSVINITSTART="../rc2.d"	# location of SysV-style start script
-#DIR_SYSVINITSTOP="../rc0.d"	# location of SysV-style stop script
-#NAME_SYSVINITSTART="S80fax"	# name of SysV-style start script
-#NAME_SYSVINITSTOP="K80fax"	# name of SysV-style stop script
-#FAXQ_SERVER=yes		# init script starts faxq
-#HFAXD_SERVER=yes		# init script starts hfaxd
-#HFAXD_OLD_PROTOCOL=no		# don't start old protocol
-#HFAXD_SNPP_SERVER=no		# don't start paging protocol
-
-# SVR4 packaging stuff
-#PKG_ARCH=				# ARCH variable in pkginfo file
-#PKG_EMAIL=someone at somehost.somedomain	# EMAIL variable in pkginfo file
-#PKG_VENDOR="Your Name Here"		# VENDOR variable in pkginfo file
-#
-
-#
-# Parameters used when building the software.
-#
-# Note that configure has several ENVOPTS built into it that are
-# set according to the target.  This is done to help naive folks.
-#
-# Beware of changing the INSTALL definition; you *must* have an
-# install script that emulates the Silicon Graphics install program!
-#
-#AR="/bin/ar"				# pathname of suitable ar program
-#AROPTS="rc"				# options to ar for creating archive
-#CC="gcc"				# name/pathname of C compiler
-#CXX="gcc"				# name/pathname of C++ compiler
-#CXXFILE="-x c++"			# options for proper C++ processing
-#ENVOPTS="-Aa"				# options for getting ANSI C
-#GCOPTS="-g"				# options to pass C compiler
-#GCXXOPTS="-g"				# options to pass C++ compiler
-#GENDIST="/sbin/gendist"		# pathname of SGI inst generator program
-#INSTALL='${SHELL} ${PORT}/install.sh'	# SGI install program/emulator
-#LIBMALLOC="auto"			# yes|no|auto configure -lmalloc use
-#LIBPORT='${PORT}/libport.a'		# library with emulation code
-#LIBSUN="auto"				# yes|no|auto configure -lsun use
-#LLDOPTS=""				# extra link line options
-#MACHDEPLIBS=""				# extra libraries for linking
-#OPTIMIZER="-O"				# optimizer flags
-#PORTFUNCS=""				# non-standard functions to emulate
-#PROTOTYPES="-prototypes"		# C compiler options for checking function prototypes
-#RANLIB=":"				# pathname of suitable ranlib program
-#SHDLIBC="-lc_s"			# shared C library, if not standard
-#SIGHANDLERTYPES='(void(*)(int,...))'	# types to check for signal handler
-#STRIP="/bin/strip"			# strip program used by install.sh
-
-#
-# The source for the TIFF library is not required
-# to build this software, but the library is required
-# to link against.  If libtiff is installed in a
-# non-standard location then setup LIBTIFF accordingly.
-#
-LIBTIFF="-L/opt/csw/lib -ltiff"		# linkage convention for libtiff
-TIFFINC="-I/opt/csw/include"		# place to find tiffio.h
-TIFFBIN="/opt/csw/bin"			# where TIFF tools live
-
-#
-# The source for the ZLIB library is not required
-# to build this software, but the library is required
-# to link against.  If ZLIB is installed in a 
-# non-standard location then setup LIBZ accordingly.
-#
-LIBZ="-L/opt/csw/lib -lz"		# linkage convention for libz
-ZLIBINC="-I/opt/csw/include"		# place to find zlib.h
-
-#
-# The source for the POSIX regular expression package
-# is not required to build this software, but the package
-# is required to link against.  If the copy of the software
-# that is included in this distribution is not to be used
-# then set REGEX=no and supply the following definitions.
-#
-#LIBREGEX=" "				# linkage convention for regex package
-#REGEXINC="/usr/include"		# place to find regex.h
-
-#
-# The LIBDB hashed database package is (currently) used
-# only by the MLA tools that are not publicly available
-# but which are built from within this source tree.  In
-# the future the fax software may use the libdb software
-# for the remote client capabilities database (so these
-# hooks are included now).
-#
-# The source for the LIBDB hashed database package
-# is not required to build this software, but the package
-# is required to link against.  If the copy of the software
-# that is included in this distribution is not to be used
-# then set DBLIB=no and supply the following definitions.
-#
-#LIBDB=" "				# linkage convention for libdb package
-#DBLIBINC="/usr/include"		# place to find db.h
-
-#
-# Parameters to control various workarounds for system bugs.
-#
-# These parameters are normally set in configure based on
-# the target system.  If they are set here, then they will
-# override anything done by configure.
-#
-#CONFIG_OPENFIFO="O_RDONLY"		# mode to open FIFOs in server proc's
-#CONFIG_FIFOBUG="yes"			# enable workaround for FIFO select bug
-#CONFIG_TIOCMBISBYREF="yes"		# pass arg by reference to ioctl
-#CONFIG_WINSZHACK="no"			# include extra files for TIOCWINSZ use
-#CONFIG_ABORTBUG="no"			# enable workaround for abort problems
-#CONFIG_NOREOPEN="yes"			# reopen tty device after toggling DTR
-#CONFIG_NOSTDINDUP="yes"		# do not redirect stdout to stdin in ondelay
-#CONFIG_BADEXECVPROTO="no"		# system has incorrect execv func decl
-#CONFIG_BADEXECVEPROTO="no"		# system has incorrect execve func decl
-#CONFIG_BADGETOPTPROTO="no"		# system has incorrect getopt func decl
-#CONFIG_SOCKARGLENTYPE="unsigned long"	# call-by-ref arg type for socket funcs
-#CONFIG_BADSELECTPROTO="no"		# system has way old select func decl
-#CONFIG_MAXGID="5999"			# maximum permissable GID
-#CONFIG_OSFCNH="auto"			# control inclusion of <osfcn.h>
-
-#
-# Dynamic Shared Object (DSO) support.
-#
-# Beware that adding new support for DSOs may require some
-# modifications to the */Makefile.dso files.
-#
-#DSOSUF="so"				# DSO filename suffix
-#DSODELAY="-delay_load"			# DSO option for delayed loading
-#DSOOPTS="-shared -rdata_shared"	# options for building DSOs
-
-#
-# Makefile construction parameters.
-#
-# These should not normally be set; configure will
-# deduce the appropriate syntax to use for includes.
-#
-#MAKECXXOVERRIDE="=.C"			# make override stuff for SunPRO C++
-#MAKEDEPINCLUDE="include"		# make include for dependency files
-#MAKEDSOINCLUDE="#"			# make include for DSO support
-#MAKEINCLUDE=".include"			# make include syntax
-#MAKELQUOTE="<"				# make include syntax
-#MAKERQUOTE=">"				# make include syntax
-#SETMAKE='MAKE	= ${MAKE}'		# define if make does not setup $MAKE
-#MKDEPCOPTS=""				# C compiler opts to supply w/ -M
-#MKDEPCXXOPTS=""			# C++ compiler opts to supply w/ -M
-
-#
-# General system stuff used by the distribution.
-#
-# Beware of setting these as configure selects several programs
-# based on whether or not they are capable of processing scripts
-# included in the distribution (e.g AWK and SCRIPT_SH, SED).
-#
-#AWK="/bin/awk"				# pathname of suitable awk program
-#CAT="/bin/cat"				# pathname of suitable cat program
-#CHGRP="/etc/chgrp"			# pathname of suitable chgrp program
-#CHMOD="/etc/chmod"			# pathname of suitable chmod program
-#CHOWN="/etc/chown"			# pathname of suitable chown program
-#CMP="/bin/cmp"				# pathname of suitable cmp program
-#COL="/bin/col"				# pathname of suitable col program
-#CP="/bin/cp"				# pathname of suitable cp program
-#ECHO="/bin/echo"			# pathname of suitable echo program
-#GREP="/bin/grep"			# pathname of suitable grep program
-#LN="/bin/ln"				# pathname of suitable ln program
-#LN_S="-s"				# option to ${LN} to create symlink
-#MAN="/usr/bin/man"			# pathname of suitable man program
-#MKDIR="/bin/mkdir"			# pathname of suitable mkdir program
-#MKFIFO="/bin/mkfifo"			# pathname of suitable mkfifo program
-#MV="/bin/mv"				# pathname of suitable mv program
-#MV_F="-f"				# option to ${MV} to force operation
-#RMCMD="/bin/rm"			# pathname of suitable rm program
-#SED="/bin/sed"				# pathname of suitable sed program
-#SCRIPT_SH="/bin/sh"			# pathname of suitable shell
-#SORT="/bin/sort"			# pathname of suitable sort program

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the devel mailing list