blob: e75a8b69d577cd3a7de3e611317b1952cec337ab (
plain)
1 ###
2 ### /etc/prt-get.conf: prt-get(8) configuration
3 ###
4
5 ## configure directories prt-get will source ports from
6 ## note: the order matters: the package found first is used
7 prtdir /usr/ports/core
8 prtdir /usr/ports/opt
9 prtdir /usr/ports/xorg
10
11 ## the following line enables the multilib compat-32 collection
12 #prtdir /usr/ports/compat-32
13
14 ## the following line enables the user maintained contrib collection
15 #prtdir /usr/ports/contrib
16
17 ## use mypackage from local directory
18 #prtdir /home/packages/build:mypackage
19
20 ## log options
21 ## logfile variables: %p=path to port dir,
22 ## %n=port name, %v=version, %r=release
23 #writelog enabled # (enabled|disabled)
24 #logmode overwrite # (append|overwrite)
25 #rmlog_on_success yes # (no|yes)
26 logfile /var/log/pkgbuild/%n.log
27
28 ## use alternate cache file (default: /var/lib/pkg/prt-get.cache)
29 #cachefile /mnt/nfs/cache
30
31 ## print README information
32 #readme verbose # (verbose|compact|disabled)
33
34 ## prefer higher versions in sysup / diff
35 #preferhigher no # (yes|no)
36
37 ## use regexp search
38 #useregex no # (yes|no)
39
40 ## run pre- and post-installs scripts; yes is equivalent to the
41 ## --install-scripts option
42 runscripts yes # (no|yes)
43
44 ### EXPERT SECTION ###
45
46 ## alternative commands
47 #makecommand pkgmk
48 #addcommand pkgadd
49 #removecommand pkgrm
50 #runscriptcommand sh
51
52 # End of file
|