Poul-Henning Kamp
d80a026702
Make sure that info files never hit the "bin" dist.
1995-02-11 05:28:31 +00:00
Bruce Evans
cdaec7b1a1
More complete implementation of SUBDIR for programs, libraries and kmods.
...
`depend' wasn't supported. This seems to have only broken `make depend'
in gnu/usr.bin/ld.
bsd.prog.mk:
Build the man pages in ${MANDEPEND} at build time.
1995-02-08 21:35:31 +00:00
Jeffrey Hsu
e687de7a15
Allow arbitrarily named configure script for use w/ HAS_CONFIGURE.
1995-02-06 08:52:19 +00:00
Poul-Henning Kamp
4620f0962b
Use absolute path to md5 program. It lives in /sbin and people are unlikely
...
to have $PATH to it.
1995-02-04 22:56:28 +00:00
Satoshi Asami
94dcffca87
Add long-awaited (:) support for sophisticated dependency checking. We now
...
have three variables:
EXEC_DEPENDS - A list of "prog:dir" pairs of other ports this
package depends on. "prog" is the name of an
executable. make will search your $PATH for it and go
into "dir" to do a "make all install" if it's not found.
LIB_DEPENDS - A list of "lib:dir" pairs of other ports this package
depends on. "lib" is the name of a shared library.
make will use "ldconfig -r" to search for the
library. Note that lib can be any regular expression,
and you need two backslashes in front of dots (.) to
supress its special meaning (e.g., use
"foo\\.2\\.:${PORTSDIR}/utils/foo" to match "libfoo.2.*").
DEPENDS - A list of other ports this package depends on being
made first. Use this for things that don't fall into
the above two categories.
DEPENDS behaves exactly like before, so old Makefiles will still work
the same. The two variables are lists of pairs as described above.
For instance, if your program depends on unzip and libjpeg.5.*, use
the following definitions:
EXEC_DEPENDS= unzip:${PORTSDIR}/archivers/unzip
LIB_DEPENDS= jpeg\\.5\\.:${PORTSDIR}/graphics/jpeg
gmake:${PORTSDIR}/utils/gmake is automatically added to EXEC_DEPENDS
if USE_GMAKE is defined.
If NO_DEPENDS is defined, the list will just be printed out one by one.
1995-02-04 05:49:26 +00:00
Jordan K. Hubbard
5143382afe
Create an obj symlink when necessary.
...
Submitted by: "Remy CARD" <Remy.Card@masi.ibp.fr>
1995-02-02 04:53:30 +00:00
Gary Palmer
cc715f2bca
Start the ball rolling by sticking a
...
MAINTAINER?= line in here.
Idea by: jkh@FreeBSD.ORG
1995-02-01 21:47:57 +00:00
Jordan K. Hubbard
3f4fff96f9
Make fetch a bit more forgiving of subdirs.
1995-01-30 10:06:56 +00:00
Jordan K. Hubbard
6098353123
Add LN_FLAGS to all the places it makes sense.
1995-01-30 07:22:02 +00:00
Jordan K. Hubbard
45f7d107ac
Add new LN_FLAGS variable for making LINKS symbolic and whatnot.
1995-01-30 07:20:01 +00:00
Andrey A. Chernov
316cd0cfdd
LIBFORMS & LIBSCSI added
1995-01-25 20:24:01 +00:00
Jordan K. Hubbard
ad1565eef3
NOOBJS was bogus - use the already extant `NOOBJ'.
1995-01-24 17:50:30 +00:00
Jordan K. Hubbard
62ef745576
Add the ability to say `NOOBJS' to indicate that the target has no object
...
files.
1995-01-24 17:33:22 +00:00
Jordan K. Hubbard
825de56725
Fix bogus tab in makesum target.
1995-01-24 02:41:52 +00:00
Jordan K. Hubbard
8d81c12227
Whomever put the depend rule in screwed it up. Fix it.
1995-01-23 20:53:38 +00:00
Jordan K. Hubbard
1df516f280
Eliminate a bogus stray tab.
1995-01-23 20:50:56 +00:00
Jordan K. Hubbard
7b2bb0fb79
Set PREFIX in the build target. Suggested by John Fieber.
1995-01-23 18:22:36 +00:00
Gary Palmer
74d7962900
Oops. Fix up the checksum routine - my last commit broke it slightly.
1995-01-22 20:40:48 +00:00
Andrey A. Chernov
3ece328451
Put brackets around EXTRACT_CMD, can be several commands here
1995-01-17 23:55:53 +00:00
Andrey A. Chernov
3a99ffc355
Remove -Wall for ascii formatting, we don't need so many
...
warnings while formatting standard BSD docs
1995-01-17 22:04:38 +00:00
Andrey A. Chernov
932c9d1896
Modify prev. change, pass internal args directly to groff,
...
if PRINTER == ascii, because nroff shell script strip off
some groff flags
1995-01-17 21:36:06 +00:00
Andrey A. Chernov
a812882b19
Call nroff, if PRINTER == ascii
1995-01-17 21:27:30 +00:00
Gary Palmer
2db2081438
Correct a small problem in that when there isn't a checksum for that
...
particular file, but there is a files/md5, it reports that it failed
the checksum
1995-01-16 23:33:08 +00:00
Garrett Wollman
e7f8d55240
Slightly more complete implementation of SUBDIR for libraries.
1995-01-14 22:18:15 +00:00
Garrett Wollman
83fc2a702a
Add SUBDIR facility to bsd.lib.mk like in bsd.prog.mk.
1995-01-14 22:14:54 +00:00
Jordan K. Hubbard
314bc6245e
The enclosed patch makes bsd.doc.mk consistent with bsd.prog.mk
...
when creating the obj link. While bsd.prog.mk inconditionnaly creates
a link in /usr/obj, bsd.doc.mk tests if the source tree is contained in
/usr/src. If so, it creates a link to /usr/obj. If the source tree
is contained in another directory, bsd.doc.mk creates an obj subdirectory.
Submitted by: Remy Card <Remy.Card@masi.ibp.fr>
1995-01-14 19:49:54 +00:00
Jordan K. Hubbard
af8dd62b9a
The enclosed patch is a cosmetic change to bsd.prog.mk. When
...
a program directory has subdirectories, make now prints "===> dir/subdir"
instead of "===> subdir". This is modeled after the rules contained in
bsd.subdir.mk.
Submitted by: Remy Card <Remy.Card@masi.ibp.fr>
1995-01-14 19:48:49 +00:00
Jordan K. Hubbard
d9584d768f
Change DISTRIBUTION names. Also make bsd.doc.mk go to doc distribution,
...
not bin. Hmmm.
1995-01-14 07:51:10 +00:00
Jordan K. Hubbard
533c1db8da
Whoops! Correct cut-and-paste gaffe.
1995-01-12 08:21:31 +00:00
Jordan K. Hubbard
161e6a3e83
Add an ID line at the top (this thing still needs some sort of
...
copyright, Andrew).
Add support for the distribute target.
1995-01-12 08:20:25 +00:00
Andrey A. Chernov
41c4bc57c7
Use absolute path for install passed to configure
...
to disallow prepending ../ in second level Makefiles
1995-01-12 02:29:42 +00:00
Garrett Wollman
9e681ba3da
Always delete ${DOC}.ps and ${DOC}.ascii in the clean target, no matter what
...
${PRINTER} is set to.
1995-01-11 19:58:03 +00:00
Satoshi Asami
fb097df2ce
Typo!
1995-01-11 08:53:28 +00:00
Satoshi Asami
1deaf2e347
Add missing ! in front of pipeline for extract commands---otherwise
...
it would exit on *successful* extraction.
1995-01-11 08:50:48 +00:00
Garrett Wollman
be3dff6e36
Add .MAIN: all so that extraneous targets don't confuse `make'.
1995-01-11 02:41:09 +00:00
Garrett Wollman
d448c6a94f
Add standard before/real/afterinstall support like in bsd.prog.mk.
1995-01-11 02:27:01 +00:00
Garrett Wollman
83a924ecc9
Fix last .endif.
1995-01-11 02:06:58 +00:00
Garrett Wollman
25514a1236
Changes to make /usr/share/doc work somewhat right. (SMM commits
...
to follow soon.)
1995-01-11 00:00:11 +00:00
Jordan K. Hubbard
8b9d60735d
Catch case where extraction fails. Thanks!
1995-01-10 12:23:44 +00:00
Andrey A. Chernov
e9474ecf20
Use .MAIN: all
1995-01-07 16:39:38 +00:00
Andrey A. Chernov
10d65ca957
Move pre-extract target inside COOKIE
...
Add checksum check for extract, if checksum file present
1995-01-06 22:14:12 +00:00
Satoshi Asami
d5ca901589
Sort out dependencies. Now they look like:
...
patch: extract
configure: depends patch
build: configure
install: build
Does this look ok?
1995-01-05 08:15:53 +00:00
Jordan K. Hubbard
edf9e79525
Typo fix from Ollivier Robert.
...
Submitted by: ollivier
1995-01-05 02:15:05 +00:00
Jordan K. Hubbard
333881d516
Rename check-md5 target to checksum.
...
Submitted by: gpalmer
1995-01-05 01:46:05 +00:00
Jordan K. Hubbard
e5d85be85c
Gary Palmer's patches for checksumming and description.
...
Submitted by: gpalmer
1995-01-04 23:06:38 +00:00
Andrey A. Chernov
8558dc3f69
Fix BINMODE to override sys.mk defaults
1995-01-04 22:43:52 +00:00
Andrey A. Chernov
b4289364f2
Remove INSTALL, now into sys.mk
1995-01-04 22:32:40 +00:00
Andrey A. Chernov
4b99b57547
Fix building of target with multiply sources
1995-01-04 22:01:58 +00:00
Andrey A. Chernov
69234255f2
Fix error in clean target
1995-01-04 21:34:13 +00:00
Andrey A. Chernov
0133d0c591
Much improved variant
1995-01-04 21:29:32 +00:00