1 # $NetBSD: Packages.txt,v 1.92 2000/06/30 11:09:53 wiz Exp $
2 ###########################################################################
4 ==========================
7 ==========================
9 Hubert Feyrer, Alistair Crooks
15 grep -B1 '^.====' Packages.txt | egrep -v '^.[-=]'
21 There is a lot of software freely available for Unix based systems, which
22 usually runs on NetBSD, too, sometimes with some modifications. The NetBSD
23 packages collection incorporates any such changes necessary to make that
24 software run on NetBSD, and makes the installation (and reinstallation) of
25 the software package easy by means of a single command.
27 The NetBSD package system is used to enable such freely available
28 third-party software to be built easily on NetBSD hosts. Once the software
29 has been built, it is manipulated with the pkg_* tools so that installation
30 and de-installation, printing of an inventory of all installed packages and
31 retrieval of one-line comments or more verbose descriptions are all simple.
33 Both the NetBSD packages collection and the NetBSD package system are
40 This document is divided into two parts. The first, "User's Guide",
41 describes how one can use one of the packages in the Package
42 Collection, either by installing a precompiled binary package, or by
43 building your own copy using the NetBSD package system. The second
44 part, "Package Constructor's Guide", explains how to prepare a package so
45 it can be easily built by other NetBSD users without knowing about the
46 package's building details.
52 There has been a lot of talk about "ports", "packages", etc. so far. Here
53 is a description of all the terminology used within this document:
56 A set of files and building instructions that describe what's necessary
57 to build a certain piece of software using the NetBSD package
58 system. Packages are traditionally stored under /usr/pkgsrc.
60 * The NetBSD package system:
61 This is the part of the NetBSD operating system handling building
62 (compiling), installing, and removing of packages.
65 This term describes the file or files that are provided by the author
66 of the piece of freely available software to distribute his work. All
67 the changes necessary to build on NetBSD are reflected in the
68 corresponding package. Usually the distfile is in the form of a
69 compressed tar-archive, but other types are possible, too. Distfiles
70 are stored below /usr/pkgsrc/distfiles.
73 This is the term used by FreeBSD people for what we call a package.
74 In NetBSD terminology, "port" refers to a different architecture.
76 * Precompiled (binary) package:
77 A set of binaries built by the NetBSD package system from a distfile
78 using the NetBSD package system and stuffed together in a single .tgz
79 file so it can be installed on machines of the same machine architecture
80 without the need to recompile. Packages are generated in
81 /usr/pkgsrc/packages by the NetBSD package system; there is also an
82 archive on ftp.netbsd.org.
84 Sometimes, this is referred to by the term "package" too,
85 especially in the context of precompiled packages.
88 The piece of software to be installed which will be constructed from
89 all the files in the Distfile by the actions defined in the
90 corresponding package.
93 Some files in a package contain RCS IDs to reflect which version of
94 that file this is (inserted automatically by cvs). These IDs are used
95 in several examples within this document, but as this document itself
96 is managed by CVS, it can't list the RCS IDs in plaintext. Instead, the
97 $s are written as <$>, resulting in <$>NetBSD<$> and <$>Id<$>.
104 1 Installing a precompiled binary package
105 =========================================
107 This section describes how to find, retrieve and install a precompiled
108 binary package that someone else already prepared for your type of machine.
114 Precompiled packages are stored on ftp.netbsd.org and its mirrors in the
115 directory /pub/NetBSD/packages for anon FTP access. Please pick the right
116 subdirectory there as indicated by "sysctl hw.machine_arch". In that
117 directory, there is a subdirectory for each category plus a subdirectory
118 "All" which includes the actual binaries in .tgz-files. The category
119 subdirectories use symbolic links to those files. (This is the same
120 directory layout as in /usr/pkgsrc/packages).
122 This same directory layout applies for CDROM distributions, only that the
123 directory may be rooted somewhere else, probably somewhere below /cdrom.
124 Please consult your CDROM's documentation for the exact location!
130 If you have the files on a CDROM or downloaded them to your hard disk, you
131 can install them with the following command (be sure to su to root first):
133 pkg_add /path/to/package.tgz
135 If you have FTP access and you don't want to download the packages via FTP
136 prior to installation, you can do this automatically by giving pkg_add an
139 pkg_add ftp://ftp.netbsd.org/pub/NetBSD/packages/<OS Ver>/<arch>/All/package.tgz
141 If there is any doubt, the sysctl utility can be used to determine the
142 <OS Ver>, and <arch> by running "sysctl kern.osrelease hw.machine_arch".
144 Also note that any prerequisite packages needed to run the package in
145 question will be installed, too, assuming they are present where you install
148 After you've installed packages, be sure to have /usr/pkg in your $PATH so
149 you can actually start the just installed program.
152 1.3 A word of warning
153 =====================
155 Please pay very careful attention to the warnings expressed in that manual
156 page about the inherent dangers of installing binary packages which you did
157 not create yourself, and the security holes that can be introduced onto
158 your system by indiscriminate adding of such files.
161 2 Installing by Building
162 ========================
164 This assumes that the package is already part of the NetBSD package system.
165 If it is not, then you are advised to read part II of this document,
166 "Package Constructor's Guide".
169 2.1 Where to get pkgsrc
170 =======================
172 To get the package source going, you need to get the pkgsrc.tar.gz file
173 from ftp://ftp.netbsd.org/pub/NetBSD-current/tar_files/pkgsrc.tar.gz and
174 unpack it into /usr/pkgsrc.
176 As an alternative, you can get pkgsrc via the Software Update Protocol,
177 SUP. To do so, make sure your supfile has a line saying "release=pkgsrc" in
178 it, see the examples in /usr/share/examples/supfiles, and that the
179 directory /usr/pkgsrc does exist. Then, simply start "sup -v
180 /path/to/your/supfile".
183 2.2 Fetching distfiles
184 ======================
186 There is one gotcha: The distribution file (i.e. the unmodified source)
187 must exist on your system for the packages system to be able to build it.
188 If it does not, then ftp(1) is used to fetch the distribution files
191 You can overwrite some of the major distribution sites to fit to sites
192 that are close to your own. Have a look at /usr/pkgsrc/mk/mk.conf.example
193 to find some examples. This may save some of your bandwidth and time.
195 When you have selected your settings, install your configuration into
198 If you don't have a permanent Internet connection and you want to know
199 which files to download, "make fetch-list" will tell you what you'll need.
200 Put these distfiles into /usr/pkgsrc/distfiles.
203 2.3 How to build and install
204 ============================
206 Assuming that has been done, become root and change into the relevant
207 directory. Then you can type
211 at the shell prompt to build the various components of the package, and
215 at the shell prompt to install the various components into the correct
216 places on your system.
218 Taking the top system utility as an example, we can install it on our
219 system by building as shown in appendix A.1.
221 The program is installed under the default root of the packages tree -
222 /usr/pkg. Should this not conform to your tastes, simply set the LOCALBASE
223 variable in your environment, and it will use that value as the root of
224 your packages tree. So, to use /usr/local, set
228 in your environment. There is, of course, one exception to this - X11
229 packages are traditionally installed in the X11 tree. The definition
230 used to identify the root of the X11 tree is the X11BASE definition.
232 It is possible to install X11 packages in the LOCALBASE tree, for
233 which you must install the xpkgwedge package
234 (pkgsrc/pkgtools/xpkgwedge) - see section 7.1 for further details.
236 Some packages look in /etc/mk.conf to alter some configuration options
237 at build time. Have a look at /usr/pkgsrc/mk/mk.conf.example to get
238 an overview of what you can set there. Environment variables such as
239 LOCALBASE, and X11BASE can also be set in /etc/mk.conf to save having
240 to remember to set them each time you want to use pkgsrc.
243 3 Making a precompiled package
244 ==============================
246 Once you have built and installed the package as mentioned above, you can
247 build it into a "binary package" - you might want to do this so that you
248 can use the binaries you have just built on another NetBSD system, or to
249 provide a simple means for others to use your binary package instead of
250 wasting CPU time - this is done by changing to the appropriate directory in
251 the pkgsrc tree, and typing the command
255 at the shell prompt. This will build and install your package (if not
256 already done), and then construct a binary package out of the results so
257 that you can use the pkg_* tools to manipulate this. The binary package is
258 stored under /usr/pkgsrc/packages, it's in the form of a gzipped file at
259 the present time. See appendix A.2 for a continuation of the above top
262 Please see the "submitting" section later in this document on how to submit
263 such a binary package.
266 ====================================
267 Part II: Package Constructor's Guide
268 ====================================
270 4 Package components - files, directories and contents
271 ======================================================
273 Whenever you're preparing a package from the FreeBSD ports collection or
274 doing it from scratch, there are a number of files involved which are
275 described in the following sections. Special directions are given for what
276 differs from FreeBSD ports for each file.
282 Building, installation and creation of a binary package are all controlled
283 by the package's Makefile.
285 There is a Makefile for each package. This file includes the standard
286 bsd.pkg.mk file (referenced as "../../mk/bsd.pkg.mk"), which sets all the
287 definitions and actions necessary for the package to compile and install
288 itself. The mandatory fields are the DISTNAME which specifies the base name
289 of the distribution file to be downloaded from the site on the Internet,
290 MASTER_SITES which specifies that site, CATEGORIES which denotes the
291 categories into which the package falls, PKGNAME which is the name of the
292 package and the MAINTAINER name. This is so that anyone who quibbles with
293 the (always completely correct) decisions taken by the guy who maintains
294 the port can complain vigorously.
296 The MASTER_SITES may be set to one of the predefined sites:
298 ${MASTER_SITE_XCONTRIB}
300 ${MASTER_SITE_PERL_CPAN}
301 ${MASTER_SITE_TEX_CTAN}
302 ${MASTER_SITE_SUNSITE}
304 If one of these predefined sites is chosen, you may require the ability to
305 specify a subdirectory of that site. Since these macros may expand to
306 more than one actual site, you MUST use the following construct to specify
309 ${MASTER_SITE_GNU:=subdirectory/name/}
311 (Note the trailing slash after the subdirectory name.) Use of the deprecated
312 MASTER_SITE_SUBDIR will not work.
314 Currently the following values are available for CATEGORIES. If more than
315 one is used, they need to be separated by spaces:
317 archivers databases ham net security
318 audio devel japanese news shells
319 benchmarks distfiles lang packages sysutils
320 biology editors mail parallel templates
321 cad emulators math pkglocate textproc
322 comms fonts mbone pkgtools www
323 converters games meta-pkgs plan9 x11
324 cross graphics misc print
326 See the NetBSD packages(7) manual page for a description of all available
327 options and variables.
329 Please pay attention to the following gotchas, especially when preparing a
330 package from the FreeBSD ports collection:
332 - Remove all MANx and CATx definitions from the package Makefile -
333 NetBSD has implemented automatic manual page handling, and these
334 definitions are now obsolete.
335 - Add MANCOMPRESSED (if not already there) if manpages are installed in
336 compressed form by the package; see comment in bsd.pkg.mk
337 - Replace /usr/local by ${PREFIX} in all files (see patches below)
338 - Delete any ldconfig commands - this will be done automatically for you
339 if the NetBSD platform supports ldconfig, and other measures will be
340 taken on platforms which do not support ldconfig (e.g. NetBSD/Alpha)
341 - If modifying a package from the FreeBSD ports collection, preserve
342 their RCS ID: remove the '$'s around the FreeBSD RCS Id, and insert the
343 word FreeBSD, then add a <$>NetBSD<$> (Without the <>s, please remember
344 the Terminology section), i.e.:
347 # <$>Id: Makefile,v 1.17 1997/06/16 06:39:51 max Exp <$>
351 # FreeBSD Id: Makefile,v 1.17 1997/06/16 06:39:51 max Exp
352 - If the package installs any info files, the main info directory file
353 needs to be updated to reflect this fact. NetBSD now has an INFO_FILES
354 definition, which is used to do this. For example, to install the
355 indent.info entry into the info directory file, simply use the
357 INFO_FILES= indent.info
359 definition in the package Makefile. If the package does this insertion
360 for you, you should specify USE_GTEXINFO in the package Makefile, to
361 ensure that the pre-requisite GNU texinfo package is installed on your
363 - Adjust MAINTAINER to be either yourself, if you plan to maintain the
364 package for future updates, or set it to the default MAINTAINER
365 packages@netbsd.org, as it is unlikely that the FreeBSD people will
366 care about NetBSD packages.
367 - If there exists a home page for the software in question, please
368 add the variable HOMEPAGE right after MAINTAINER. The value of this
369 variable should be the URL for the home page.
375 Most important, the mandatory md5 checksum of all the distfiles needed for
376 the package to compile, confirming they match the original file any patches
377 were generated against. This ensures that the distfile retrieved from the
378 Internet has not been corrupted during transfer or altered by a malign force
379 to introduce a security hole. It can be generated by hand using the md5(1)
380 command or by invoking "make makesum".
383 The checksum file for all the official patches for the package, found in the
384 patches/ directory (see section 4.3). This checksum file includes an MD5
385 checksum of all lines in the patch file except the NetBSD RCS Id. This file
386 is generated by invoking "make makepatchsum".
388 Besides that, if you have any files that you wish to be placed in the
389 package prior to configuration or building, you could place these files
390 here and use a ${CP} command in the pre-configure target to achieve this.
391 Alternatively, you could simply diff the file against /dev/null and use the
392 patch mechanism to manage the creation of this file.
398 This directory contains files that are used by the patch(1) command to
399 modify the sources as distributed in the distribution file into a form that
400 will compile and run perfectly on NetBSD. The files are applied
401 successively in alphabetic order (as returned by a shell "patches/patch-*"
402 glob expansion), so patch-aa is applied before patch-ab etc.
404 The patch-?? files should be in diff -bu format, and apply without a fuzz
405 to avoid problems. Furthermore, do not put changes for more than one file
406 into a single patch-file, as this will make future modifications more
409 One important thing to mention is to pay attention that no RCS IDs get
410 stored in the patch files, as these will cause problems when later checked
411 into the NetBSD CVS tree. To avoid this, use the "-U 2" or -U 1" option to
414 If you don't want to worry about the problems in the last two paragraphs
415 yourself, use pkgdiff from the pkgtools/pkgdiff package, which takes care
416 of any RCS Ids by itself.
418 For even more automation, we recommend using mkpatches from the same
419 package to make a whole set of patches. You just have to backup files
420 before you edit them to "filename.orig", e.g. with "cp -p filename
421 filename.orig". If you upgrade a package this way, you can easily compare
422 the new set of patches with the previously existing one with patchdiff.
424 When preparing a FreeBSD port for the NetBSD packages system, it's likely
425 that the FreeBSD port will work on NetBSD. However, check that the person
426 who ported the software to FreeBSD has not played fast and loose with the
427 __FreeBSD__ cpp definition without good cause - a simple way to do this is
430 grep -i freebsd patches/patch-??
432 in the package directory.
434 Besides taking care of any FreeBSDisms, be sure to provide patches to
435 replace any occurrence of /usr/local in any "Makefile"s in the original
436 package with ${PREFIX}.
438 When you have finished a package, remember to generate the checksums
439 for the patch files by using the "make makepatchsum" command, see
446 This directory contains several files used to manage the creation of binary
447 packages. Files from this directory are used in the binary package itself,
448 and will thus be installed on other machines, so you should be aware that
449 there is a wider audience than you might think for your comments and
452 4.4.1 Mandatory files
453 =====================
456 A one-line description of the piece of software. There is no need to
457 mention the package's name - this will automatically be added by the
458 pkg_* tools when they are invoked.
461 A multi-line description of the piece of software. This should include
462 any credits where they are due. Please bear in mind that others do not
463 share your sense of humour (or spelling idiosyncrasies), and that others
464 will read everything that you write here.
467 This file governs the files that are installed on your system: all the
468 binaries, manual pages, etc. There are other directives which may be
469 entered in this file, to control the creation and deletion of
470 directories, and the location of inserted files.
472 If you're updating a FreeBSD package to work for NetBSD, please pay special
473 attention to the following things in pkg/PLIST:
475 - If there are any "@exec ldconfig ..." statements, or any "@unexec
476 ldconfig ...", delete them. NetBSD works out automatically whether to
477 call ldconfig, since some NetBSD architectures do not have ldconfig.
478 - Add any missing @dirrm statements
479 - Remove any MANx= definitions in the package Makefile
481 You could also investigate the port2pkg package (pkgsrc/pkgtools/port2pkg),
482 which does a lot of the donkey work for you.
489 Shell script invoked twice during pkg_add. First time after package
490 extraction and before files are moved in place, the second time after
491 the files to install are moved in place. This can be used to do any
492 custom procedures not possible with @exec commands in PLIST. See
493 pkg_add(1) and pkg_create(1) for more information.
496 This script is executed before and after any files are removed. It is
497 this script's responsibility to clean up any additional messy details
498 around the package's installation, since all pkg_delete knows is how to
499 delete the files created in the original distribution. See pkg_delete(1)
500 and pkg_create(1) for more information.
503 Require-script that is invoked before installation and de-installation
504 to ensure things like certain accounts being available, user/sysadmin
505 agreeing with usage policy, etc.
508 Display this file after installation of the package.
509 Useful for things like legal notices on almost-free software,
516 This directory contains any files that are necessary for configuration of
517 your software, etc. If a script with any of the following names is present,
518 it will be executed at the appropriate time during the build process:
521 pre-extract post-extract
523 pre-configure post-configure configure
525 pre-install post-install
526 pre-package post-package
528 Note that you should NOT define a pre-* or post-* target in the Makefile
529 which executes the matching scripts/[pre|post]-* script. bsd.pkg.mk runs
530 any existing Makefile target first, then searches for scripts/* and runs
531 it using sh(1). Running the script from the Makefile would cause it to
534 See section 7 for a description of the build process.
540 When you type "make" the distribution files are unpacked into this
541 directory. It can be removed by typing
545 at the shell prompt. Also, this directory is used to keep various
549 4.7 importing the package into CVS
550 ==================================
552 Newly created packages should be imported with a vendor tag of "TNF" and
553 a release tag of "pkgsrc-base", e.g::
555 cvs import pkgsrc/<category>/frobnitz TNF pkgsrc-base
557 Packages derived from a FreeBSD port should be imported with a vendor tag
558 of "FREEBSD" and a release tag of "FreeBSD-current-YYYY-MM-DD" (YYYY-MM-DD
559 being the date when the snapshot of the port were taken form the FreeBSD
560 tree), and then doing the necessary modifications by normal CVS operations.
563 cvs import pkgsrc/<category>/mumbler FREEBSD FreeBSD-current-1998-04-01
564 cvs rm patches/patch-a
565 cvs add patches/patch-aa
568 Please note all package updates/additions in doc/pkg-CHANGES! It's very
569 important to keep this file up to date and conforming to the existing
570 format, because it will be used by scripts to automatically update pages on
577 This section addresses some special issues that one needs to pay attention
578 to when dealing with the PLIST file (or files, see below!).
585 Be sure to add a RCS ID line as the first thing in any PLIST file you
588 @comment <$>NetBSD<$>
591 Don't put any ranlib commands into your PLIST files, as they will cause
592 troubles when the package is removed. Just make sure the build-process
593 does run ranlib - it usually does - and you can leave this out. This is
594 usually only a problem when using ports from FreeBSD.
597 Don't put any ldconfig commands into your PLIST files, as they will
598 cause problems. All shared object caching is done automatically in
599 NetBSD (this takes place when you see the "Automatic shared object
600 handling" message), and so you can leave this out. If any shared
601 objects are found in the package, they will be dealt with
602 automatically, running ldconfig on platforms which need it, and not
603 otherwise. This is usually only a problem when using ports from
606 * ${MACHINE_ARCH}, ${MACHINE_GNU_ARCH}:
607 Some packages like emacs and perl embed information about which
608 architecture they were built on into the pathnames where they install
609 their file. To handle this case, PLIST will be preprocessed before
610 actually used, and the symbol "${MACHINE_ARCH}" will be replaced by
611 what "sysctl -n hw.machine_arch" gives. The same is done if the string
612 ${MACHINE_GNU_ARCH} is embedded in PLIST somewhere - use this on
613 packages that use GNU autoconfigure.
615 Legacy note: There used to be a symbol "<$ARCH>" that was replaced by
616 the output of "uname -m", but that's no longer supported and has been
619 * ${OPSYS}, ${OS_VERSION}:
620 Some packages want to embed the OS name and version into some paths.
621 to do this, use these two variables in PLIST. ${OPSYS} will be replaced
622 by output from "uname -s", ${OS_VERSION} will be set to what "uname -r"
625 * Manpage-compression:
626 Manpages should be installed in compressed form if MANZ is set (in
627 bsd.own.mk), and uncompressed otherwise. To handle this in the PLIST
628 file, the suffix ".gz" is appended/removed automatically for manpages
629 according to MANZ and MANCOMPRESSED being set or not, see above for
630 details. This modification of the PLIST file is done on a copy of it,
631 not pkg/PLIST itself.
633 * Semi-automatic PLIST generation:
634 You can use the "make print-PLIST" command to output a PLIST that matches
635 any new files since the package was extracted. If the package installs
636 files via tar(1) or other methods that don't update file access times, be
637 sure to add these files manually to your pkg/PLIST!
640 5.2 MD/MI vs. general PLIST
641 ===========================
643 Sometimes the packaging list in pkg/PLIST differs between platforms, e.g.
644 if one of them supports shared libs and the other does not. To address
645 this, a hook has been introduced into the NetBSD packages system to provide
646 a PLIST file defined on conditions set freely in the package's Makefile.
652 To use one or more files as source for the PLIST used in generating the
653 binary package, set the variable PLIST_SRC to the names of that file(s).
654 The files are later concatenated using cat(1), and order of things is an
655 important issue, see below.
658 5.2.2 PLIST-mi, PLIST-md.shared, PLIST-md.static
659 ================================================
661 If PLIST_SRC is not set (the usual case), and if there is no pkg/PLIST, the
662 packages system looks for pkg/PLIST-mi, and pkg/PLIST-md.shared or
663 pkg/PLIST-md.static to handle differences due to the platform being able to
664 handle shared libs or not. PLIST-mi contains machine independent files,
665 PLIST-md.* contain machine dependent files, which may differ between
666 architectures that don't support dynamic libs/shared loading. Currently,
667 this is only used in the perl-packages, and as perl5 on alpha doesn't
668 support dynamic loading of extensions like perl/Tk yet, PLIST.mi-static is
669 also used on the alpha (besides pmax and powerpc). Alpha will hopefully be
670 removed soon when perl's fixed for dynamic loading.
672 (This handling of MI/MD PLIST files is implemented by setting PLIST_SRC to
673 either "PLIST-mi PLIST-md.static" or "PLIST-mi PLIST-md.shared", see
674 /usr/pkgsrc/mk/bsd.pkg.mk).
677 5.2.3 Order in the PLIST* file(s)
678 =================================
680 There is one gotcha regarding the ordering of @dirrm statements: any MI
681 @dirrm directives that follow any MD @dirrm's *must* go into the PLIST.md-*
682 files, as the files PLIST-mi and PLIST.md-{shared/static} are concatenated
683 in exactly this order. If the MI directory would be listed in PLIST-mi, it
684 would be removed before the MD directory, which wouldn't work.
686 E.g. if you have the following dirs:
690 then PLIST-mi contains:
693 and PLIST-md.* contain:
697 This will lead to some @dirrm statements being duplicated, but it's the
698 only way to ensure everything is properly removed. The same care must be
699 taken when PLIST_SRC is set to some package-specific settings.
702 6 Notes on fixes for packages
703 =============================
708 To port an application to NetBSD, it's usually necessary for the compiler
709 to be able to judge the system on which it's compiling, and we use
710 definitions so that the C pre-processor can do this.
712 The really impatient should just note that a number of the FreeBSD ports
713 (which are called packages in the NetBSD world) rely on the CPP definition
714 __FreeBSD__. This should be used sparingly, for FreeBSD-specific features,
715 but unfortunately this is not always the case. A number also rely on the
716 fact that the CPU type is an Intel-based little-endian CPU.
718 To test whether you are working on a 4.4 BSD-derived system, you should use
719 the BSD definition, which is defined in <sys/param.h> on said systems.
721 #include <sys/param.h>
723 and then you can surround the BSD-specific parts of your port using the
726 #if (defined(BSD) && BSD >= 199306)
730 Please use the __NetBSD__ definition sparingly - it should only apply to
731 features of NetBSD that are not present in other 4.4-lite derived BSDs.
733 You should also avoid defining __FreeBSD__=1 and then simply using the
734 FreeBSD port, if only from an aesthetic viewpoint.
737 6.2 Shared libraries - libtool
738 ==============================
740 NetBSD supports many different machines, with different object formats
741 like a.out and ELF, and varying abilities to do shared library and
742 dynamic loading at all. To accompany this, varying commands and options
743 have to be passed to the compiler, linker etc. to get the Right Thing,
744 which can be pretty annoying especially if you don't have all the
745 machines at your hand to test things. The "libtool" pkg can help
746 here, as it just "knows" how to build both static and dynamic
747 libraries from a set our source files, thus being platform
750 Here's how to use libtool in a pkg in six simple steps:
752 1. Add USE_LIBTOOL= yes to the package Makefile.
754 2. For library objects, use "${LIBTOOL} --mode=compile ${CC}" in place of
755 ${CC}. You could even add it to the definition of CC, if only
756 libraries are being built in a given Makefile. This one command will
757 build both PIC and non-PIC library objects, so you need not have
758 separate shared and non-shared library rules.
760 3. For the linking of the library, remove any "ar", "ranlib", and "ld
761 -Bshareable" commands, and use instead:
763 ${LIBTOOL} --mode=link cc -o ${.TARGET:.a=.la} ${OBJS:.o=.lo} -rpath ${PREFIX}/lib -version-info major:minor
765 Note that the library is changed to have a .la extension, and the
766 objects are changed to have a .lo extension. Change OBJS as necessary.
767 This automatically creates all of the .a, .so.major.minor, and ELF
768 symlinks (if necessary) in the build directory.
770 4. When linking programs that depend on these libraries _before_ they are
771 installed, preface the cc or ld line with "${LIBTOOL} --mode=link", and
772 it will find the correct libraries (static or shared), but please be
773 aware that libtool will not allow you to specify a relative path in -L
774 (such as -L../somelib), because it is trying to force you to change
775 that argument to be the .la file. For example:
777 ${LIBTOOL} --mode=link ${CC} -o someprog -L../somelib -lsomelib
779 won't work; it needs to be changed to:
781 ${LIBTOOL} --mode=link ${CC} -o someprog ../somelib/somelib.la
783 and it will DTRT with the libraries. If you *must* use a relative path
784 with -L, and you are not going to run this program before installing
785 it, you can omit the use of libtool during link and install of this
786 program if you add the subdirectory ".libs" in your -L command:
788 ${CC} -o someprog -L../somelib/.libs -lsomelib
790 5. When installing libraries, preface the install or cp command with
791 "${LIBTOOL} --mode=install", and change the library name to .la. For
794 ${LIBTOOL} --mode=install ${BSD_INSTALL_DATA} ${SOMELIB:.a=.la} ${PREFIX}/lib
796 This will install the static .a, shared library, any needed symlinks,
799 6. In your PLIST, include the .a, .la, and .so.major.minor files. Don't
800 include the ELF symlink files; those are automatic.
802 Do not use pkglibtool! Previously, the package system used its
803 own version of libtool from pkgtools. However, over time, this
804 version became outdated and is now deprecated. You may see some
805 definitions of USE_PKGLIBTOOL in existing packages that still use
806 this outdated version of libtool. Please do not use this definition
809 6.3 Using libtool on GNU packages that already support libtool
810 ==============================================================
812 Add USE_LIBTOOL=yes and LTCONFIG_OVERRIDE=${WRKSRC}/ltconfig to the
813 package Makefile as the quick way to bypass the pkg's own libtool.
814 The pkg's own libtool is made by ltconfig script at do-configure target.
815 If USE_LIBTOOL and LTCONFIG_OVERRIDE are defined, the specified ltconfig is
816 overridden, using the devel/libtool instead of the pkg's own libtool.
817 If the pkg already has an original "libtool" which we can replace with
818 devel/libtool you may have to specify LIBTOOL_OVERRIDE to the package
821 6.4 Gotchas of FreeBSD ports
822 ============================
824 See section 4.1 for Makefile issues (MANx, CATx, MANCOMPRESSED, ldconfig,
825 RCS IDs) and section 4.3 for gotchas on using patches from FreeBSD ports.
827 One of the biggest problems with FreeBSD ports is that too many of
828 them assume they will install into /usr/local, instead of honouring
829 any ${PREFIX} setting properly. To change this, add something like the
830 following into your package Makefile:
833 for f in `find ${WRKDIR} -type f -print|xargs grep -l '/usr/local'`; do
835 ${SED} -e 's:/usr/local:'${PREFIX}':g' < $$f > $$f.pdone && ${MV} $
839 This is taken from the sysutils/rtty package; be sure this works for your
840 package - it may actually make sense to look for some things in /usr/local,
841 for example. So don't blindly replace all occurrences of /usr/local!
843 FreeBSD has decided to list manual pages in the package Makefile, with
844 no corresponding entry in the PLIST. You will thus need to add any
845 MAN[1-8ln] files to the PLIST, before deleting the MAN[1-8ln]
846 definition. Similarly with MLINKS and CAT[1-8ln] entries.
848 Side note on manpages in PLIST: we don't take any notice of any .gz
849 suffix there, as many FreeBSD ports seem to have .gz pages in PLIST
850 even when they install manpages without compressing them; rather, we
851 add our own .gz suffix there according to MANZ. In short, it does not
852 matter whether the manual page name in the PLIST has a .gz suffix or
853 not - if it needs one which is not already there, it will be appended
854 automatically, and if there is a .gz suffix which is not needed, it
855 will be deleted automatically.
857 Some packages use bsd-style .mk files when building, and so any manual
858 pages that are installed will be gzip-compressed, if MANZ is set, or
859 not if MANZ is not set. If the package uses bsd-style .mk files, the
860 variable MANCOMPRESSED_IF_MANZ should be set to a value of "yes" in
861 the package Makefile.
864 6.5 Feedback to the author
865 ==========================
867 If you have found any bugs in the package you make available, if you had to
868 do special steps to make it run under NetBSD or if you enhanced the software
869 in various other ways, be sure to report these changes back to the original
870 author of the program! With that kind of support, the next release of the
871 program can incorporate these fixes, and people not using the NetBSD packages
872 system can win from your efforts.
874 Support the idea of free software!
880 The basic steps for building a program are always the same. First the
881 program's source (distfile) must be brought to the local system and
882 then extracted. After any patches to compile properly on NetBSD are
883 applied, the software can be configured, then built (usually by
884 compiling), and finally the generated binaries etc. can be put into
885 place on the system. These are exactly the steps performed by the
886 NetBSD package system, which is implemented as a series of targets in
887 a central Makefile, /usr/pkgsrc/mk/bsd.pkg.mk.
893 Before outlining the process performed by the NetBSD package system in the
894 next section, here's a brief discussion on where programs are installed,
895 and which variables influence this.
897 The automatic variable PREFIX indicates where all files of the final
898 program shall be installed. It is usually set to $LOCALBASE (/usr/pkg),
899 or $CROSSBASE for pkgs in the "cross" category, though its value becomes
900 that of $X11BASE if USE_IMAKE, USE_MOTIF, or USE_X11BASE is set. The value
901 ${PREFIX} needs to be put into the various places in the program's source
902 where paths to these files are encoded; see sections 4.3 and 6.2 for
905 When choosing which of these variables to use, follow the following rules:
907 * ${PREFIX} always points to the location where the current pkg will be
908 installed. When referring to a pkg's own installation path, use ${PREFIX}.
910 * ${LOCALBASE} is where all non-X11 pkgs are installed. If you need to
911 construct a -I or -L argument to the compiler to find includes and
912 libraries installed by another non-X11 pkg, use ${LOCALBASE}.
914 * ${X11BASE} is where the actual X11 distribution is installed. When looking
915 for _standard_ X11 includes (not those installed by a pkg), use ${X11BASE}.
917 * X11 based pkgs are special in that they may be installed in either
918 X11BASE or LOCALBASE. To install X11 packages in LOCALBASE, simply
919 install the xpkgwedge package (pkgsrc/pkgtools/xpkgwedge).
920 If you need to find includes or libraries installed by a pkg that has
921 USE_IMAKE, USE_MOTIF, or USE_X11BASE in its pkg Makefile, you need to use
922 _both_ ${X11BASE} and ${LOCALBASE}.
924 * ${X11BASE} points to the root of the installed X11 tree. To refer to the
925 installed location of an X11 package, use the ${X11PREFIX} definition (this
926 will be ${X11BASE} if xpkgwedge is not installed, and ${LOCALBASE} if
927 xpkgwedge is installed).
933 The main targets used during the build process defined in bsd.pkg.mk are:
936 This will check if the file(s) given in the variables DISTFILES and
937 PATCHFILES (as defined in the package's Makefile) are present on the
938 local system in /usr/pkgsrc/distfiles. If they are not present, they
939 will be fetched using ftp(1) from the site(s) given in the variable
940 PATCH_SITES. The location(s) in PATCH_SITES are in the form of URLs
941 and can be ftp://- and http://-URLs, as ftp(1) understands both of
945 After the distfile(s) are fetched, their MD5 checksum is generated and
946 compared with the checksums stored in the files/md5 file. If the
947 checksums don't match, the build is aborted. This is to ensure the same
948 distfile is used for building, and that the distfile wasn't changed,
949 e.g. by some malign force, deliberately changed distfiles on the master
950 distribution site or network lossage.
953 When the distfiles are present on the local system, they need to be
954 extracted, as they are usually in the form of some compressed archive
955 format, most commonly .tar.gz. If only some of the distfiles need to be
956 uncompressed, the files to be uncompressed should be put into
957 EXTRACT_ONLY. If the distfiles are not in .tar.gz format, they can be
958 extracted by setting EXTRACT_CMD, EXTRACT_BEFORE_ARGS and/or
962 After extraction, all the patches named by the PATCHFILES and those
963 present in the patches subdirectory of the package are applied.
964 Patchfiles ending in .Z or .gz are uncompressed before they are
965 applied, files ending in .orig or .rej are ignored. Any special
966 options to patch(1) can be handed in PATCH_DIST_ARGS. See section
967 4.3 for more details.
970 Most pieces of software need information on the header files,
971 system calls, and library routines which are available in NetBSD.
972 This is the process known as configuration, and is usually
973 automated. In most cases, a script is supplied with the source,
974 and its invocation results in generation of header files,
977 If the program doesn't come with its own configure script, one can be
978 placed in the package's scripts directory, called "configure". If so, it
979 is executed using sh(1).
981 If the program's distfile contains its own configure script, this can
982 be invoked by setting HAS_CONFIGURE. If the configure script is a GNU
983 autoconf script, GNU_CONFIGURE should be specified instead. In either
984 case, any arguments to the configure script can be specified in the
985 CONFIGURE_ARGS variable, and the configure script's name can be set in
986 CONFIGURE_SCRIPT if it differs from the default "configure".
988 If the program uses an Imakefile for configuration, the appropriate
989 steps can be invoked by setting USE_IMAKE to YES. (If you only want the
990 package installed in $X11PREFIX but xmkmf not being run, set USE_X11BASE
994 Once configuration has taken place, the software can be built on
995 NetBSD by invoking $MAKE_PROGRAM on $MAKEFILE with $ALL_TARGET as
996 the target to build. The default MAKE_PROGRAM is "gmake" if
997 USE_GMAKE is set, "make" otherwise. MAKEFILE is set to "Makefile"
998 by default, and ALL_TARGET defaults to "all". Any of these
999 variables can be set to change the default build process.
1002 Once the build stage has completed, the final step is to install
1003 the software in public directories, for users. As in the
1004 build-target, $MAKE_PROGRAM is invoked on $MAKEFILE here, but with
1005 the $INSTALL_TARGET instead, the latter defaulting to "install"
1006 (plus "install.man", if USE_IMAKE is set).
1008 If no target is specified, the default is "build". If a subsequent stage
1009 is requested, all prior stages are made: e.g. "make build" will also
1010 perform the equivalent of:
1020 7.3 Other helpful targets
1021 =========================
1024 For any of the main targets described in the previous section, two
1025 auxiliary targets exist with "pre-" and "post-" used as a prefix
1026 for the main target's name. These targets are invoked before and
1027 after the main target is called, allowing extra configuration or
1028 installation steps, for example, which program's configure script
1029 or install target omitted. For any of these auxiliary targets,
1030 scripts of the same name can be placed in the package's
1031 scripts-subdirectory that will be executed at the given time, see
1035 Should one of the main targets do the wrong thing, and should there
1036 be no variable to fix this, you can redefine it with the do-*
1037 target. (Note that redefining the target itself instead of the
1038 do-* target is a bad idea, as the pre-* and post-* targets won't be
1039 called anymore, etc.) You will not usually need to do this.
1042 If you did a "make install" and you noticed some file was not installed
1043 properly, you can repeat the installation with this target, which will
1044 ignore the "already installed" flag.
1047 This target does a pkg_delete(1) in the current directory,
1048 effectively de-installing the package. The following variables can
1049 be used either on the command line or in /etc/mk.conf to tune the
1053 Add a "-v" to the pkg_delete(1) command.
1056 Remove all packages that require (depend on) the given package.
1057 This can be used to remove any packages that may have been pulled in
1058 by a given package, e.g. if "make deinstall DEINSTALLDEPENDS=1" is
1059 done in x11/kde, this is likely to remove whole KDE. Works by adding
1060 a "-R" to the pkg_delete command line.
1063 This target causes the current package to be updated to the latest
1064 version. The package and all depending packages first get deinstalled,
1065 then current versions of the corresponding packages get compiled and
1066 installed. This is similar to manually noting which packages are
1067 currently installed, then performing a series of "make deinstall" and
1068 and "make install" (or whatever DEPENDS_TARGET is set to) for these
1071 You can use the "update" target to resume package updating in case a
1072 previous "make update" was interrupted for some reason. However, in
1073 this case, make sure you don't call "make clean" or otherwise remove
1074 the list of dependent packages in ${WRKDIR}. Otherwise you lose the
1075 ability to automatically update the current package along with the
1076 dependent packages you have installed.
1078 Resuming an interrupted 'make update' will only work as long as the
1079 package tree remains unchanged. If the source code for one of the
1080 packages to be updated has been changed, resuming 'make update' will
1081 most certainly fail!
1083 The following variables can be used either on the command line or in
1084 /etc/mk.conf to alter the behaviour of "make update":
1087 Install target to use for the updated package and the
1088 dependent packages. Defaults to "install". E.g.
1089 "make update DEPENDS_TARGET=package"
1092 Don't clean up after updating. Useful if you want to leave the
1093 work sources of the updated packages around for inspection or
1094 other purposes. Be sure you eventually clean up the source
1095 tree (see the "clean-update" target below) or you may run into
1096 troubles with old source code still lying around on your next
1097 "make" or "make update".
1100 Use "reinstall" instead of ${DEPENDS_TARGET} for every package
1101 that gets updated. Be sure you know the implications of using
1102 the "reinstall" target when using this variable.
1105 Clean the source tree for all packages that would get updated if
1106 "make update" was called from the current directory. This target
1107 should not be used if the current package (or any of its depending
1108 packages) have already been deinstalled (e.g., after calling "make
1109 update") or you may lose some packages you intended to update.
1110 As a rule of thumb: only use this target _before_ the first time
1111 you call "make update" and only if you have a dirty package tree
1112 (e.g., if you used NOCLEAN). The following variables can be used
1113 either on the command line or in /etc/mk.conf to alter the behaviour
1114 of "make clean-update":
1117 After "make clean", do not reconstruct the list of directories to
1118 update for this package. Only use this if "make update" successfully
1119 installed all packages you wanted to update. Normally, this is done
1120 automatically on "make update", but may have been suppressed by the
1121 NOCLEAN variable (see above).
1124 This target generates a README.html file, which can be viewed using a
1125 browser such as netscape (pkgsrc/www/mozilla) or lynx (pkgsrc/www/lynx).
1126 The generated files contain references to any packages which are in the
1127 ${PACKAGES} directory on the local host. The generated files can
1128 be made to refer to URLs based on FTP_PKG_URL_HOST and
1129 FTP_PKG_URL_DIR. (For example, if I wanted to generate README.html
1130 files which pointed to binary packages on the local machine, in the
1131 directory /usr/packages, set FTP_PKG_URL_HOST=file://localhost and
1132 FTP_PKG_URL_DIR=/usr/packages. The ${PACKAGES} directory and its
1133 subdirectories will be searched for all the binary packages.)
1136 Use this target to create a file README-all.html which contains a
1137 list of all packages currently available in the NetBSD Packages
1138 Collection, together with the category they belong to and a short
1139 description. This file is compiled from the pkgsrc/*/README.html
1140 files, so be sure to run this _after_ a "make readme".
1143 This is very much the same as the readme: target (see above), but is
1144 to be used when generating a pkgsrc tree to be written to a CD-ROM.
1145 This target also produces README.html files, and can be made to refer
1146 to URLs based on CDROM_PKG_URL_HOST and CDROM_PKG_URL_DIR.
1149 This target shows which distfiles and patchfiles are needed to build
1150 the package. (DISTFILES and PATCHFILES, but not patches/*)
1153 This target shows nothing if the package is not installed. If a version
1154 of this package is installed, but is not the version provided in this
1155 version of pkgsrc, then a warning message is displayed. This target can
1156 be used to show which of your installed packages are downlevel, and so
1157 the old versions can be deleted, and the current ones added.
1160 This target shows the directory in the pkgsrc hierarchy from which the
1161 package can be built and installed. This may not be the same directory
1162 as the one from which the package was installed. This target is intended
1163 to be used by people who may wish to upgrade many packages on a single
1164 host, and can be invoked from the top-level pkgsrc Makefile by using the
1165 target "show-host-specific-pkgs"
1171 To check out all the gotchas when building a package (wither from
1172 a FreeBSD port, or from scratch), here are the steps that I do in
1173 order to get a package working. Please note this is basically the
1174 same as what was explained in the previous sections, only with some
1177 - Retrieve port from FreeBSD collection
1178 - Fix RCS-ID in the package's Makefile, see section 4.1.
1179 - Import unchanged FreeBSD source (ONLY if you have cvs access, not needed
1181 (cd .../pkgsrc/category/pkgname ; cvs import pkgsrc/category/pkgname \
1182 FREEBSD FreeBSD-current-yyyy-mm-dd)
1183 - If you did a CVS import, check it out to apply the following fixes
1184 (not needed if you don't have CVS access!)
1185 - Look at Makefile, fix if necessary; see section 4.1.
1186 - Look at patches, remember if not appropriate
1187 - Have a look at pkg/PLIST, add a "@comment <$>NetBSD<$>" line at the
1188 beginning of any PLIST file (see section 5).
1190 - If something is not ok, fix; for patches: fix the file, then re-generate
1191 the diff: 'diff -bu foo.orig foo >../../patches/patch-xx' (mv patch-xx
1192 patch-xx.orig before); If there's no foo.orig from a previous patch, be
1193 sure to have an old version of the file somewhere; re-iterate :)
1194 - If all builds OK: touch /tmp/bla
1196 - find /usr/pkg/ /usr/X11R6/ -newer /tmp/bla >/tmp/x
1197 (or whatever you set LOCALBASE and X11BASE to)
1199 - find /usr/pkg/ /usr/X11R6/ -newer /tmp/bla (or diff against output of
1200 'make print-PLIST'): if this brings up any files, that are missing in
1201 pkg/PLIST*; add them.
1202 - Compare pkg/PLIST* against /tmp/x, fix the former one
1203 ( sort /tmp/x >/tmp/x2 ; sort pkg/PLIST >/tmp/P ; sdiff /tmp/x2 /tmp/P )
1204 - make reinstall && make package
1206 - "find /usr/pkg/ /usr/X11R6/ -type f -newer /tmp/bla" shouldn't find anything
1208 - pkg_add .../blub.tgz
1210 - pkg_delete - still no file should be left (re-run above find)
1211 - make clean && touch /tmp/bla && make install && make clean && make deinstall
1212 then run the find again. Yes, some software authors write Makefiles that
1213 install files during the build target. Sigh. Re-run the find, and fix the
1214 PLIST. Repeat until certain the software does not install any files that
1216 - submit (or commit, if you have cvs access); see section 10.
1219 9 FAQs & features of the package system
1220 =======================================
1222 9.1 Packages using GNU autoconfig
1223 9.2 Other distrib methods than .tar.gz
1224 9.3 Packages not creating their own subdirectory
1225 9.4 Custom configuration process
1226 9.5 Packages not building in their DISTNAME directory
1227 9.6 How to fetch all distfiles at once
1228 9.7 How to fetch files from behind a firewall
1229 9.8 If your patch contains an RCS ID
1230 9.9 How to pull in variables from /etc/mk.conf
1231 9.10 Is there a mailing list for pkg-related discussion?
1232 9.11 How do i tell "make fetch" to do passive FTP?
1233 9.12 Dependencies on other packages
1234 9.13 Conflicts with other packages
1235 9.14 Software which has a WWW Home Page
1236 9.15 How to handle modified distfiles with the 'old' name
1239 9.1 Packages using GNU autoconfig
1240 =================================
1242 If your package uses GNU autoconf, add the following to your package's
1245 > GNU_CONFIGURE= yes
1247 Note that this appends --prefix=${PREFIX} to CONFIGURE_ARGS, so you don't
1248 have to do that yourself, and this may not be what you want.
1251 9.2 Other distrib methods than .tar.gz
1252 ======================================
1254 If your package uses a different distribution method from .tar.gz, take a
1255 look at the package for plan9/sam, which uses a gzipped shell archive
1256 (shar), but the quick solution is to set EXTRACT_SUFX to the name after the
1257 DISTNAME field, and add the following to your package's Makefile:
1259 > EXTRACT_SUFX= .msg.gz
1261 > EXTRACT_BEFORE_ARGS=
1262 > EXTRACT_AFTER_ARGS= |sh
1265 9.3 Packages not creating their own subdirectory
1266 ================================================
1268 Your package doesn't create a subdirectory for itself (like GNU software
1269 does, for instance), but extracts itself in the current directory: see
1270 plan9/sam again, but the quick answer is:
1275 9.4 Custom configuration process
1276 ================================
1278 Your package uses a weird Configure script: See the top package, but the
1281 > HAS_CONFIGURE= yes
1282 > CONFIGURE_SCRIPT= Configure
1283 > CONFIGURE_ARGS+= netbsd13
1286 9.5 Packages not building in their DISTNAME directory
1287 ======================================================
1289 Your package builds in a different directory from its base DISTNAME - see
1290 tcl and tk packages:
1292 > WRKSRC= ${WRKDIR}/${DISTNAME}/unix
1295 9.6 How to fetch all distfiles at once
1296 ======================================
1298 You would like to download all the distfiles in a single batch from work or
1299 university, where you can't run a "make fetch". But there's no archive of
1300 the distfiles on ftp.netbsd.org and the one on ftp.freebsd.org contains
1301 many distfiles for which there are no ports (yet).
1303 The answer here is to do a "make fetch-list" in /usr/pkgsrc and use the
1307 9.7 How to fetch files from behind a firewall
1308 =============================================
1310 If you are sitting behind a firewall which does not allow direct connections
1311 to Internet hosts (i.e. non-NAT), you may specify the relevant proxy hosts.
1312 This is done using an environment variable in the form of a URL
1313 e.g. in Amdahl, the machine orpheus.amdahl.com is one of the firewalls, and
1314 it uses port 80 as the proxy port number. So the proxy environment
1315 variables look like:
1317 ftp_proxy=ftp://orpheus.amdahl.com:80/
1318 http_proxy=http://orpheus.amdahl.com:80/
1321 9.8 If your patch contains an RCS ID
1322 ====================================
1324 See section 4.3 on how to remove RCS IDs from patch files.
1327 9.9 How to pull in variables from /etc/mk.conf
1328 ==============================================
1330 The problem with package-defined variables that can be overridden via
1331 MAKECONF or /etc/mk.conf is that make(1) expands a variable as it is
1332 used, but evaluates preprocessor like statements (.if, .ifdef and
1333 .ifndef) as they are read. So, to use any variable (which may be set
1334 in /etc/mk.conf) in one of the .if* statements, the file /etc/mk.conf
1335 must be included before that .if* statement.
1337 Rather than have a number of ad-hoc ways of including /etc/mk.conf,
1338 should it exist, or MAKECONF, should it exist, include the
1339 pkgsrc/mk/bsd.prefs.mk file in the package Makefile before any
1340 preprocessor-like .if, .ifdef, or .ifndef statements:
1342 .include "../../mk/bsd.prefs.mk"
1344 .if defined(USE_MENUS)
1349 9.10 Is there a mailing list for pkg-related discussion?
1350 ========================================================
1352 Yes. We are using tech-pkg@netbsd.org for discussing package related
1353 issues. To subscribe do:
1355 echo subscribe tech-pkg | mail majordomo@netbsd.org
1358 9.11 How do i tell "make fetch" to do passive FTP?
1359 ==================================================
1361 This depends on which utility is used to retrieve distfiles. From
1362 bsd.pkg.mk, FETCH_CMD is assigned the first available command from the
1366 ${LOCALBASE}/bsd/bin/ftp
1369 On a default NetBSD install, this will be /usr/bin/ftp, which automatically
1370 tries passive connections first, and falls back to active connections if the
1371 server refuses to do passive. For the other tools, add the following to your
1372 /etc/mk.conf file: PASSIVE_FETCH=1
1374 Having that option present will prevent /usr/bin/ftp from falling back to
1378 9.12 Dependencies on other packages
1379 ===================================
1381 Your package may depend on some other package being present - and there are
1382 various ways of expressing this dependency. NetBSD supports the
1383 BUILD_DEPENDS and DEPENDS definitions (beware: the DEPENDS definition is
1384 not the same as FreeBSD's deprecated one, and NetBSD does not use the
1385 FreeBSD LIB_DEPENDS definition any more - it proved problematic on ELF
1388 [In the following examples, the BUILD_DEPENDS dependencies have the format:
1389 <file>:<directory containing package to build>[:<stage>] If the <stage>
1390 isn't specified, it defaults to ``install''. If the file contains a '/', it
1391 is interpreted as a regular file - otherwise, the name is taken to be an
1392 executable file, and the PATH is searched for <file>. If the regular file
1393 is not found, or the executable file is not in the path, then the
1394 pre-requisite package will be built from the sources in <directory
1395 containing the package to build>. The DEPENDS definition specifies a
1396 package name (which contains its version number), and the directory
1397 containing the package to build if this version of the package is not
1400 (a) If your package needs files from another package to build, see the
1401 print/ghostscript5 package (it relies on the jpeg sources being
1402 present in source form during the build):
1404 BUILD_DEPENDS+= ../../graphics/jpeg/${WRKDIR:T}/jpeg-6a:../../graphics/jpeg:extract
1406 (b) If your package needs to use another package to build itself, this
1407 is specified using the BUILD_DEPENDS definition, but without
1408 specifying the stage ``:extract'' in (a) above. An example is the
1409 print/lyx package, which uses the latex binary during its build
1412 BUILD_DEPENDS+= latex:../../print/teTeX
1414 (c) If your package needs a library with which to link, this is
1415 specified using the DEPENDS definition. An example of this is the
1416 print/lyx package, which uses the xpm library, version 3.4j to build.
1418 DEPENDS+= xpm-3.4j:../../graphics/xpm
1420 You can also use wildcards in package dependences:
1422 DEPENDS+= xpm-*:../../graphics/xpm
1424 Note that such wildcard dependencies are retained when creating
1425 binary package. The dependency is checked when installing the binary
1426 package and any package which matches the pattern would be used.
1427 Beware that wildard dependencies should be used with a bit of care.
1428 Simple example for package which needs some version of Tk installed,
1429 but doesn't care which exactly - dependency
1431 DEPENDS+= tk-*:../../x11/tk80
1433 would also match e.g. tk-postgresql-6.5.3, which is not what was
1434 needed. ALWAYS ensure that the wildcard doesn't match more than it should.
1436 (d) If your package needs some executable to be able to run correctly, this
1437 is specified using the DEPENDS definition. The print/lyx package needs to
1438 be able to execute the latex binary from the teTex package when it runs,
1439 and that is specified:
1441 DEPENDS+= teTex-*:../../print/teTeX
1443 The comment about wildcard dependencies from previous paragraph
1447 9.13 Conflicts with other packages
1448 ==================================
1450 Your package may conflict with other packages a user might already have
1451 installed on his system, e.g. if your package installs the same set of
1452 files like another package in our pkgsrc tree.
1454 In this case you can set CONFLICTS to a space separated list of packages
1455 (including version string) your package conflicts with.
1457 For example pkgsrc/x11/Xaw3d and pkgsrc/x11/Xaw-Xpm install provide the
1458 same shared library, thus you set in pkgsrc/x11/Xaw3d/Makefile:
1460 CONFLICTS= Xaw-Xpm-*
1462 and in pkgsrc/x11/Xaw-Xpm/Makefile:
1466 Packages will automatically conflict with other packages with the name prefix
1467 and a different version string. "Xaw3d-1.5" e.g. will automatically conflict
1468 with the older version "Xaw3d-1.3".
1470 9.14 Software which has a WWW Home Page
1471 =======================================
1473 The NetBSD packages system now supports a variable called HOMEPAGE.
1474 If the software being packaged has a home page, the Makefile should
1475 include the URL for that page in the HOMEPAGE variable. The definition
1476 of the variable should be placed immediately after the MAINTAINER
1479 9.15 How to handle modified distfiles with the 'old' name
1480 =========================================================
1482 Sometimes authors of a software package make some modifications after the
1483 software was released, and they put up a new distfile without changing the
1484 package's version number. If a package is already in pkgsrc at that time,
1485 the md5 checksum will no longer match. The correct way to work around this
1486 is to update the package's md5 checksum to match the package on the master
1487 site (beware, any mirrors may not be up to date yet!), and to remove the
1488 old distfile from ftp.netbsd.org's /pub/NetBSD/packages/distfiles directory.
1489 Furthermore, a mail to the package's author seems appropriate making sure
1490 the distfile was really updated on purpose, and that no trojan horse or so
1493 9.16 What does "Don't know how to make /usr/share/tmac/tmac.andoc" mean?
1494 ========================================================================
1496 When compiling the pkgsrc/pkgtools/pkg_install package, you get the error
1497 from make that it doesn't know how to make /usr/share/tmac/tmac.andoc? This
1498 indicates that you don't have installed the "text" set on your machine
1499 (nroff, ...). Please do that.
1501 9.17 How to handle incrementing versions when fixing an existing package
1502 ========================================================================
1504 When making fixes to an existing package it can be useful to change
1505 the version number in PKGNAME. To avoid conflicting with future versions
1506 by the original author, use a 'nb1' suffix (later versions should
1507 increment this to give 'nb2' and so on).
1509 9.18 "Could not find bsd.own.mk" - what's wrong?
1510 ================================================
1512 You didn't install the compiler set, comp.tgz, when you installed your
1513 NetBSD machine. Please get it and install it, by extracting it in /:
1515 tar --unlink -pvxf .../comp.tgz
1517 comp.tgz is part of every NetBSD release, please get the one matching
1518 the release you have installed (determine via "uname -r").
1524 * precompiled binary packages:
1525 Our policy is that we accept binaries from only NetBSD developers to
1526 guarantee that the packages don't contain any trojan horses etc.
1527 This is not to piss anyone off but rather to protect our users!
1528 You're still free to put up your home-made binary packages and tell
1529 the world where to get them.
1532 First, check that your package is complete, compiles and runs well; see
1533 section 8 and the rest of this document. Then, generate a gzipped
1534 tar-file of all the files needed for the package, preferably with all
1535 files in a single directory. Place this tar-file to a place where the
1536 package maintainers can fetch it using FTP or HTTP (WWW). Finally,
1537 send-pr with category "pkg", a synopsis which includes the package name
1538 and version number, a short description of your package
1539 (contents of pkg/COMMENT are OK) and the URL of your tar-file.
1541 You will be notified if your send-pr has been addressed so you can remove
1545 11 A simple example of a package: bison
1546 =======================================
1548 I checked to find a piece of software that isn't in the FreeBSD ports
1549 collection, and picked GNU bison. Quite why someone would want to have
1550 bison when Berkeley yacc is already present in the tree is beyond me, but
1551 it's useful for the purposes of this exercise.
1557 The file contents in this section must be used without the "> " prefix.
1565 > DISTNAME= bison-1.25
1567 > MASTER_SITES= ${MASTER_SITE_GNU}
1569 > MAINTAINER= thorpej@netbsd.org
1570 > HOMEPAGE= http://www.gnu.org/software/bison/bison.html
1572 > GNU_CONFIGURE= yes
1573 > INFO_FILES= bison.info
1575 > .include "../../mk/bsd.pkg.mk"
1587 > GNU version of yacc. Can make re-entrant parsers, and numerous other
1588 > improvements. Why you would want this when Berkeley yacc(1) is part
1589 > of the NetBSD source tree is beyond me.
1595 > @comment <$>NetBSD<$>
1597 > man/man1/bison.1.gz
1598 > @unexec install-info --delete %D/info/bison.info %D/info/dir
1605 > @exec install-info %D/info/bison.info %D/info/dir
1606 > share/bison.simple
1610 11.1.5 Checking a package "pkglint"
1611 ===================================
1613 The NetBSD package system comes with a tool called "pkglint" (located in the
1614 directory "pkgsrc/pkgtools/pkglint") which helps to check the contents of these
1615 files. After installation it is quite easy to use, just change to the
1616 directory of the package you which to examine and execute "pkglint":
1618 > tron@lyssa:/usr/pkgsrc/devel/bison>pkglint
1619 > OK: checking pkg/COMMENT.
1620 > OK: checking pkg/DESCR.
1621 > OK: checking Makefile.
1622 > OK: checking files/md5.
1623 > OK: checking patches/patch-aa.
1626 Depending on the supplied command line arguments (see "man pkglint") more
1627 intensive checks will be performed. Use e.g. "pkglint -a -v" for a very
1628 detailed and verbose check.
1631 11.2 Steps for building, installing, packaging
1632 ==============================================
1634 Create the directory where the package lives, plus any auxiliary directories:
1636 > root@pumpy:/u/pkgsrc/lang(1765)# cd /usr/pkgsrc/lang
1637 > root@pumpy:/u/pkgsrc/lang(1765)# mkdir bison
1638 > root@pumpy:/u/pkgsrc/lang(1766)# cd bison
1639 > root@pumpy:/u/pkgsrc/lang/bison(1768)# mkdir files patches pkg
1641 Create Makefile, pkg/COMMENT, pkg/DESCR and pkg/PLIST as in section 11.1,
1642 then continue with fetching the distfile:
1644 > root@pumpy:/u/pkgsrc/lang/bison(1769)# make fetch
1645 > >> bison-1.25.tar.gz doesn't seem to exist on this system.
1646 > >> Attempting to fetch from ftp://prep.ai.mit.edu/pub/gnu//.
1647 > Requesting ftp://prep.ai.mit.edu/pub/gnu//bison-1.25.tar.gz (via ftp://orpheus.amdahl.com:80/)
1648 > ftp: Error retrieving file: 500 Internal error
1650 > >> Attempting to fetch from ftp://wuarchive.wustl.edu/systems/gnu//.
1651 > Requesting ftp://wuarchive.wustl.edu/systems/gnu//bison-1.25.tar.gz (via ftp://orpheus.amdahl.com:80/)
1652 > ftp: Error retrieving file: 500 Internal error
1654 > >> Attempting to fetch from ftp://ftp.freebsd.org/pub/FreeBSD/distfiles//.
1655 > Requesting ftp://ftp.freebsd.org/pub/FreeBSD/distfiles//bison-1.25.tar.gz (via ftp://orpheus.amdahl.com:80/)
1656 > Successfully retrieved file.
1658 Generate the checksum of the distfile into files/md5:
1660 > root@pumpy:/u/pkgsrc/lang/bison(1770)# make makesum
1664 > root@pumpy:/u/pkgsrc/lang/bison(1777)# make
1665 > >> Checksum OK for bison-1.25.tar.gz.
1666 > ===> Extracting for bison-1.25
1667 > ===> Patching for bison-1.25
1668 > ===> Ignoring empty patch directory
1669 > ===> Configuring for bison-1.25
1670 > creating cache ./config.cache
1671 > checking for gcc... cc
1672 > checking whether we are using GNU C... yes
1673 > checking for a BSD compatible install... /usr/bin/install -c -o bin -g bin
1674 > checking how to run the C preprocessor... cc -E
1675 > checking for minix/config.h... no
1676 > checking for POSIXized ISC... no
1677 > checking whether cross-compiling... no
1678 > checking for ANSI C header files... yes
1679 > checking for string.h... yes
1680 > checking for stdlib.h... yes
1681 > checking for memory.h... yes
1682 > checking for working const... yes
1683 > checking for working alloca.h... no
1684 > checking for alloca... yes
1685 > checking for strerror... yes
1686 > updating cache ./config.cache
1687 > creating ./config.status
1689 > ===> Building for bison-1.25
1690 > cc -c -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_ALLOCA=1 -DHAVE_STRERROR=1 -I./../include -g LR0.c
1691 > cc -c -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_ALLOCA=1 -DHAVE_STRERROR=1 -I./../include -g allocate.c
1692 > cc -c -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_ALLOCA=1 -DHAVE_STRERROR=1 -I./../include -g closure.c
1693 > cc -c -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_ALLOCA=1 -DHAVE_STRERROR=1 -I./../include -g conflicts.c
1694 > cc -c -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_ALLOCA=1 -DHAVE_STRERROR=1 -I./../include -g derives.c
1695 > cc -c -DXPFILE=\"/usr/pkg/share/bison.simple\" -DXPFILE1=\"/usr/pkg/share/bison.hairy\" -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_ALLOCA=1 -DHAVE_STRERROR=1 -g ./files.c
1696 > cc -c -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_ALLOCA=1 -DHAVE_STRERROR=1 -I./../include -g getargs.c
1697 > cc -c -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_ALLOCA=1 -DHAVE_STRERROR=1 -I./../include -g gram.c
1698 > cc -c -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_ALLOCA=1 -DHAVE_STRERROR=1 -I./../include -g lalr.c
1699 > cc -c -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_ALLOCA=1 -DHAVE_STRERROR=1 -I./../include -g lex.c
1700 > cc -c -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_ALLOCA=1 -DHAVE_STRERROR=1 -I./../include -g main.c
1701 > cc -c -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_ALLOCA=1 -DHAVE_STRERROR=1 -I./../include -g nullable.c
1702 > cc -c -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_ALLOCA=1 -DHAVE_STRERROR=1 -I./../include -g output.c
1703 > cc -c -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_ALLOCA=1 -DHAVE_STRERROR=1 -I./../include -g print.c
1704 > cc -c -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_ALLOCA=1 -DHAVE_STRERROR=1 -I./../include -g reader.c
1705 > cc -c -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_ALLOCA=1 -DHAVE_STRERROR=1 -I./../include -g reduce.c
1706 > cc -c -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_ALLOCA=1 -DHAVE_STRERROR=1 -I./../include -g symtab.c
1707 > cc -c -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_ALLOCA=1 -DHAVE_STRERROR=1 -I./../include -g warshall.c
1708 > cc -c -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_ALLOCA=1 -DHAVE_STRERROR=1 -I./../include -g version.c
1709 > cc -c -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_ALLOCA=1 -DHAVE_STRERROR=1 -I./../include -g getopt.c
1710 > cc -c -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_ALLOCA=1 -DHAVE_STRERROR=1 -I./../include -g getopt1.c
1711 > cc -g -o bison LR0.o allocate.o closure.o conflicts.o derives.o files.o getargs.o gram.o lalr.o lex.o main.o nullable.o output.o print.o reader.o reduce.o symtab.o warshall.o version.o
1713 > ./files.c:240: warning: mktemp() possibly used unsafely, consider using mkstemp()
1715 > sed -e "/^#line/ s|bison|/usr/pkg/share/bison|" < ./bison.simple > bison.s1
1717 Everything seems OK, so install the files:
1719 > root@pumpy:/u/pkgsrc/lang/bison(1785)# make install
1720 > >> Checksum OK for bison-1.25.tar.gz.
1721 > ===> Installing for bison-1.25
1722 > sh ./mkinstalldirs /usr/pkg/bin /usr/pkg/share /usr/pkg/info /usr/pkg/man/man1
1723 > rm -f /usr/pkg/bin/bison
1724 > cd /usr/pkg/share; rm -f bison.simple bison.hairy
1725 > rm -f /usr/pkg/man/man1/bison.1 /usr/pkg/info/bison.info*
1726 > install -c -o bin -g bin -m 555 bison /usr/pkg/bin/bison
1727 > /usr/bin/install -c -o bin -g bin -m 644 bison.s1 /usr/pkg/share/bison.simple
1728 > /usr/bin/install -c -o bin -g bin -m 644 ./bison.hairy /usr/pkg/share/bison.hairy
1729 > cd .; for f in bison.info*; do /usr/bin/install -c -o bin -g bin -m 644 $f /usr/pkg/info/$f; done
1730 > /usr/bin/install -c -o bin -g bin -m 644 ./bison.1 /usr/pkg/man/man1/bison.1
1731 > ===> Registering installation for bison-1.25
1733 You can now use bison, and also - if you decide so - remove it with
1734 "pkg_delete bison-1.25". Should you decide that you want a binary package,
1737 > root@pumpy:/u/pkgsrc/lang/bison(1786)# make package
1738 > >> Checksum OK for bison-1.25.tar.gz.
1739 > ===> Building package for bison-1.25
1740 > Creating package bison-1.25.tgz
1741 > Registering depends:.
1742 > Creating gzip'd tar ball in '/u/pkgsrc/lang/bison/bison-1.25.tgz'
1744 Now that you don't need the source and object files any more, clean up:
1746 > root@pumpy:/u/pkgsrc/lang/bison(1787)# make clean
1747 > ===> Cleaning for bison-1.25
1750 ======================
1751 Appendix A: build logs
1752 ======================
1757 > Script started on Fri Oct 3 13:22:31 1997
1758 > root@pumpy:/u/pkgsrc/sysutils/top(1342)# make
1759 > >> top-3.5beta5.tar.gz doesn't seem to exist on this system.
1760 > >> Attempting to fetch from ftp://ftp.groupsys.com/pub/top/.
1761 > Requesting ftp://ftp.groupsys.com/pub/top/top-3.5beta5.tar.gz (via ftp://orpheus.amdahl.com:80/)
1762 > Successfully retrieved file.
1763 > >> Checksum OK for top-3.5beta5.tar.gz.
1764 > ===> Extracting for top-3.5beta5
1765 > ===> Patching for top-3.5beta5
1766 > ===> Applying NetBSD patches for top-3.5beta5
1767 > ===> Configuring for top-3.5beta5
1768 > /bin/cp /u/pkgsrc/sysutils/top/files/defaults /u/pkgsrc/sysutils/top/work/top-3.5beta5/.defaults
1769 > chmod a-x /u/pkgsrc/sysutils/top/work/top-3.5beta5/install
1771 > Reading configuration from last time...
1773 > Using these settings:
1774 > Bourne Shell /bin/sh
1776 > Compiler options -DHAVE_GETOPT -O
1778 > Install command /usr/bin/install
1785 > Random passwd access yes
1790 > bin directory $(PREFIX)/bin
1791 > man directory $(PREFIX)/man/man1
1795 > Building Makefile...
1796 > Building top.local.h...
1798 > Doing a "make clean".
1799 > rm -f *.o top core core.* sigdesc.h
1800 > To create the executable, type "make".
1801 > To install the executable, type "make install".
1802 > ===> Building for top-3.5beta5
1803 > cc -DHAVE_GETOPT -DORDER -DHAVE_GETOPT -O -c top.c
1804 > awk -f sigconv.awk /usr/include/sys/signal.h >sigdesc.h
1805 > cc -DHAVE_GETOPT -DORDER -DHAVE_GETOPT -O -c commands.c
1806 > cc -DHAVE_GETOPT -DORDER -DHAVE_GETOPT -O -c display.c
1807 > cc -DHAVE_GETOPT -DORDER -DHAVE_GETOPT -O -c screen.c
1808 > cc -DHAVE_GETOPT -DORDER -DHAVE_GETOPT -O -c username.c
1809 > cc -DHAVE_GETOPT -DORDER -DHAVE_GETOPT -O -c utils.c
1810 > utils.c: In function `errmsg':
1811 > utils.c:348: warning: return discards `const' from pointer target type
1812 > cc -DHAVE_GETOPT -DORDER -DHAVE_GETOPT -O -c version.c
1813 > cc -DHAVE_GETOPT -DORDER -DHAVE_GETOPT -O -c getopt.c
1814 > cc "-DOSREV=12G" -DHAVE_GETOPT -DORDER -DHAVE_GETOPT -O -c machine.c
1816 > cc -o top top.o commands.o display.o screen.o username.o utils.o version.o getopt.o machine.o -ltermcap -lm -lkvm
1817 > root@pumpy:/u/pkgsrc/sysutils/top(1343)# make install
1818 > >> Checksum OK for top-3.5beta5.tar.gz.
1819 > ===> Installing for top-3.5beta5
1820 > /usr/bin/install -o root -m 2755 -g kmem top /usr/pkg/bin
1821 > /usr/bin/install top.1 /usr/pkg/man/man1/top.1
1822 > strip /usr/pkg/bin/top
1823 > ===> Registering installation for top-3.5beta5
1824 > root@pumpy:/u/pkgsrc/sysutils/top(1344)#
1830 > root@pumpy:/u/pkgsrc/sysutils/top(1344)# make package
1831 > >> Checksum OK for top-3.5beta5.tar.gz.
1832 > ===> Building package for top-3.5beta5
1833 > Creating package top-3.5beta5.tgz
1834 > Registering depends:.
1835 > Creating gzip'd tar ball in '/u/pkgsrc/sysutils/top/top-3.5beta5.tgz'
1836 > root@pumpy:/u/pkgsrc/sysutils/top(1345)#
1839 ======================================================
1840 Appendix B: Layout of the FTP server's package archive
1841 ======================================================
1843 Layout for precompiled binary packages on ftp.netbsd.org:
1845 /pub/NetBSD/packages/
1848 pkgsrc -> /pub/NetBSD/NetBSD-current/pkgsrc
1866 - cd /usr/pkgsrc ; make install ; make package
1867 - upload /usr/pkgsrc/packages to
1868 ftp://ftp.netbsd.org/pub/NetBSD/packages/`uname -r`/`sysctl -n hw.machine_arch`
1869 - if necessary ln -s `sysctl -n hw.machine` `sysctl -n hw.machine_arch`
1871 Disk space needed: unknown.
1874 ###########################################################################
1878 # sentence-end-double-space: nil