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
|
# Rules for installation of printbill - Slackware version
# Where everything is to be installed (TOPLEVEL_HOME/{man,bin,sbin})
TOPLEVEL_HOME = /usr/local
# man pages go in $(TOPLEVEL_HOME)/$(MAN)
MAN = man
# Where the database will live
DB_HOME = /var/lib/printbill
# Where your system wants its perl modules to live
PMOD_HOME = /usr/lib/perl5
# Where to find the install program
INSTALL = /usr/bin/install
# Do you want to install the CGI scripts?
DO_CGI = y
# Where your system keeps its CGI scripts
CGI_BIN = /usr/lib/cgi-bin
# Where your init script should go
INITDIR = /etc/init.d
# Either sysv or bsd
INITSTYLE = sysv
# If you use sysv, specify this
SYSVDIR = /etc/rc.d/rc2.d
# Specify owner & group that binaries are installed 'as'
OWNER = root
GROUP = root
############################################################################
# Don't modify anything else here unless you're me.
############################################################################
BUILDSUBDIRS = src
BIN_PROGS = perl/pqcheck perl/printquote perl/printbill_grapher src/percentblack src/percentcolour src/percent_cmy
SBIN_PROGS = perl/pqm perl/printbilld perl/printbill perl/printbill_printer perl/printbill_configure perl/init_from_passwd
PERL_MODS = perl/PTDB_File.pm perl/printbill.pm perl/printbill_pcfg.pm
MAN1_PAGES = man/percentblack.1 man/percentcolour.1 man/percent_cmy.1 man/pqcheck.1 man/printbill_printer.1 man/printquote.1 man/printbill.1 man/printbilld.1
MAN5_PAGES = man/printbillrc.5
MAN8_PAGES = man/init_from_passwd.8 man/pqm.8 man/printbill.8
CGI_SCRIPTS = web/webpqadmin.pl web/webpqcheck.pl
CONFIG_FILES = config/extra_quota_message config/mail_message config/web_footer config/web_header config/web_message_text
INITSCRIPT = rc.printbill
INITSCRIPTDIR = examples/slackware_init
|