aboutsummaryrefslogtreecommitdiffstats
path: root/Mk
Commit message (Collapse)AuthorAgeFilesLines
* Add new variable NO_FILTER_SHLIBS -- it will disable ELF <-> a.out shlibasami1998-10-091-1/+3
| | | | | | | | name conversion. Use it for binary ports that come with its own private shlib dirs, ports that install linux compatibility libraries (thus following their naming conventions and not ours), etc. Reviewed by: Martin Cracauer <cracauer@FreeBSD.ORG>
* (1) Add new variable ${PERL} which is equal to ${PERL5} but without theasami1998-10-071-4/+11
| | | | | | | | | | | | | | | | | | version number part (i.e., "<directory>/perl"). Use this to substitute #! lines in your perl5 scripts. Requested and reviewed by: ache (2) Add new variable WRKDIRPREFIX (defaults to ""). The "work" directories are now in ${WRKDIRPREFIX}${.CURDIR}/work by default. You can have a read-only ports tree (modulo any broken ports that write something to places other than ${WRKDIR}) by setting this to a writable location. Ports that set WRKDIR explicitly should append this to front so they will work when the user has WRKDIRPREFIX set. Reviewed by: Toshihiko Kodama <kodama@ayame.mfd.cs.fujitsu.co.jp>
* (1) Add BROKEN_ELF variable, similar to BROKEN. (There is no BROKEN_AOUT,asami1998-09-231-4/+24
| | | | | | | | | | | | | | | | | | | | | | since ports are not supposed to be broken during the process of conversion to ELF -- please proceed with caution.) (2) Support for checking file size before fetching. The essential parts are commented out for now, so I won't lose the submission while we discuss how to do it. Submitted by: se (mostly) (3) Don't run "fetch" twice. It was due to the change in checksum target chaining. It used to be fetch -> checksum -> extract, after 1.285 it was fetch -> checksum and checksum was also explicitly called from extract. Fix it by not calling fetch from checksum when it's invoked by extract. Noticed by: pre-fetch target of lesstif being run twice (4) Don't try to remove non-existent distfiles and patchfiles in distclean. Submitted by: anto@netscape.net PR: 7988
* Yikes, put .endif in wrong place.asami1998-09-171-2/+2
|
* Remove shlib minor if PORTOBJFORMAT=elf.asami1998-09-171-1/+3
|
* (1) Pass PORTOBJFORMAT in SCRIPTS_ENV too.asami1998-09-161-10/+13
| | | | | | | | | | | Submitted by: "Eugene M. Kim" <gene@nttlabs.com> (2) Check for exact version of perl5 in /usr/bin and exit with error message if USE_PERL5 is defined and version does not match ${PERL_VERSION}. (3) Note LIB_DEPENDS should not have any regular expressions. Remove those in USE_XLIB and USE_QT.
* (1) Add MLINKS support.asami1998-09-101-13/+96
| | | | | | | | | | | | | | | | | | | | | | | | | Submitted by: hoek (2) ELF support. 2a. Variable PORTOBJFORMAT specifies the object format of the system. It is passed down to configure/make via CONFIGURE_ENV/MAKE_ENV, and is given to generate-plist via PLIST_SUB. 2b. In PLIST, substitute lines that end with "/libFOO.so.X" with "/libFOO.so.X.0". (This means PLISTs should only list ELF libraries.) Reviewed by: jb, jdp, hoek, jseger, steve (3) Perl5-in-system support. Basically turns USE_PERL5 into a no-op if there exists a "/usr/bin/perl5". Also fix prior breakage by dima (${PREFIX} => ${LOCALBASE} in perl5 path). Reviewed by: markm (sort of) (4) Install requirement file as "+REQUIRE" so it will be executed correctly by pkg_delete. Reported by: Shigeyuki FUKUSHIMA <shige@kuis.kyoto-u.ac.jp> (5) Do not disable checksum and makesum when NO_EXTRACT is set. Pointed out by: hoek and kiri, among other people
* Introduce PERL5 variable.dima1998-08-291-1/+2
| | | | | | It's gonna be used in all p5- ports. Reviewed by: asami
* Hope I haven't missed anything or forgotten to credit anybody. (Byasami1998-08-271-189/+351
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the way, most of the things below are "Reviewed by: hoek" as well.) The changes are (roughly in order of appearance): (1) Revamp comments at beginning of file. Major rewrites. Reorder them into more relevant sections. Make clear which ones are user variables and not to be set in ports' Makefiles. Reviewed by: hoek (well, he's the only one who sent any comments) (2) Include ${.CURDIR}/Makefile.local if it exists. This is a local configuration file (ala rc.conf.local and make.conf.local) so please do not commit a file with this name to the repository. Suggested by: dillon (3) MANCOMPRESSED now takes three possible values: "yes", "no" and "maybe". (It used to be a binary variable -- the old behavior is now accomplished by "MANCOMPRESSED=yes". Ports that defined this variable to other values have been corrected.) "yes" means the manpages are installed compressed, "no" means they are not, and "maybe" means the port already respects the value of NOMANCOMPRESS. The default is "yes" for USE_IMAKE ports without NO_INSTALL_MANPAGES, and "no" otherwise. Add "compress-man" target and move manpage {,de}compression there. Reviewed by: hoek etc. and a full build of the ports tree (4) Add LIBDIR="${LIBDIR}" to MAKE_ENV. Makes easier to "fix" ports for /usr/lib/aout mess. Submitted by: ohashi@mickey.ai.kyutech.ac.jp (Takeshi Ohashi) (5) Change ${TMPPLIST} from ${WRKDIR}/PLIST.mktmp to ${WRKDIR}/.PLIST.mktmp. Suggested by: hoek Strongly seconded by: steve (6) Change a couple more relative pathnames to absolute ones. Submitted by: hoek (7) Move checksum into real-extract. (8) Change way rules are chained. Instead of: build: configure ${BUILD_COOKIE} ${BUILD_COOKIE}: @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} real-build we now have build: ${BUILD_COOKIE} ${BUILD_COOKIE}: @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} configure @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} real-build Other than being more PC (pmake clean), this really speeds up skipping ports already built. For instance, "make package" on a fully packaged games subtree used to take 269 seconds on average, now it's 45 seconds on average. The flip side of this is that it will create more processes when the targets actually chain, but when you're actually compiling things, your make is creating half a bazzilion processes anyway so I don't think it matters. (9) ${TMPPLIST} is now a real dependency. Create "generate-plist" target to generate ${TMPPLIST}. Make sure it's called when needed (usually between do-install and post-install), and that the required files exist. (10) Change some messages so we can tell where "make index" failed. (11) Check if LIB_DEPENDS really generated the required shared lib or not. Seconded by: "Brent J. Nordquist" <bjn@visi.com>
* Add "deinstall" to list of targets. This is only fair since "install" andasami1998-08-271-3/+4
| | | | "reinstall" are already here. :)
* Bump version number for latest perlmarkm1998-08-161-2/+2
|
* Merge 1.227.2.45 (perl version substitution in PLIST).asami1998-08-121-3/+8
|
* Merge 1.227.2.44.asami1998-08-121-28/+55
|
* I presume Satoshi wanted ``uname -r'' for OSREL not ``uname -s''obrien1998-08-101-2/+2
| | | | Found by: gcc28 port
* Update for Perl 5.005_01markm1998-08-061-3/+3
|
* (1) Rename variable "USE_X11" to "USE_X_PREFIX" to make clearer what itasami1998-08-051-30/+25
| | | | | | | | | | | | | | | | | | | | | | | means (change PREFIX to ${X11BASE}) and add a new variable USE_X11 which means "this port requires the X window system (actually the library)". USE_X_PREFIX implies USE_X11. USE_X11 adds a LIB_DEPENDS to libX11 with the x11/XFree86 port. Reviewed by: the ports list, hoek in particular (2) Remove NO_CONFIGURE and NO_PATCH, which never meant anything. Yell if they are defined. Reviewed by: the ports list (3) Add new variable OSREL, which is automatically set to the numeric OS version (e.g., 2.2.1, 3.0). It can be used to refer to files in gcc installations, for instance. (4) Finally remove EXEC_DEPENDS hack after all these years. Submitted by: hoek (5) Put quotes around some echo ${*_DEPENDS} statements so they won't blow up when the variables include regular expressions like "qt\\.1\\.\\\(33\\\|40\\\):${PORTSDIR}/x11/qt140".
* Add var "CD_MOUNTPT" set to /cdrom by default.obrien1998-07-291-4/+5
| | | | Ok'ed by: discussed with Satoshi at USENIX
* Add US Mirror site to MASTER_SITE_KDE.se1998-07-141-1/+2
|
* Complete back-out of the bsd.locale.mk change.jkh1998-05-211-7/+0
| | | | OK'd by: asami
* PR: misc/6031thepish1998-05-191-1/+8
| | | | Patch applied as per PR - enables preferential fetch from local mirrors
* Change a couple 'make' to '${MAKE}'.steve1998-05-041-6/+6
| | | | | PR: 6341 Submitted by: Niall Smart <rotel@indigo.ie>
* Don't delete "Latest" link if NO_LATEST_LINK is set.asami1998-03-241-2/+5
|
* Add ${CXX} to list of variables passed in the environment whenasami1998-03-071-2/+3
| | | | | | invoking configure. Submitted by: obrien
* (1) Don't disable "deinstall" if IGNORE is set.asami1998-02-191-2/+3
| | | | | | | | | I don't know what the hell I was thinking in: rev. 1.268 (2) Create ${PREFIX} before calling mtree if it doesn't exist. This may not be the best solution, but pre-install is called after mtree so there really isn't any way to fix this from the port Makefiles and thus has to be done here.
* (1) Improve the obsolete tcl/tk detection and dignosis.asami1998-02-041-9/+25
| | | | | | | | | | | | | | | Reviewed by: the lists (2) Change MASTER_SITE_CTAN to reflect current reality. Submitted by: fenner (3) Add new port variable NO_LATEST_LINK. When this is set, the "Latest" package symlink is not created. Use this for ports that are betas when there is also a port for an older, more stable, version. (4) Don't be too stupid about "make deinstall". Submitted by: fenner
* Allow package building in current directory again.obrien1998-02-011-2/+6
|
* About one month worth of bsd.port.mk improvements.asami1998-01-021-13/+66
| | | | | | | | | | | | | | | | | | | | | | | (1) Allow multiple checksums of same file. Submitted by: hoek (2) Add "deinstall" target as an alias to "pkg_delete $(make package-name)" (well, something like that, see diff for details). (3) Add new port variable USE_AUTOCONF. It appends BUILD_DEPENDS to devel/autoconf and runs autoconf before configure. Submitted by: ohashi@mickey.ai.kyutech.ac.jp (Takeshi Ohashi) (4) Clarify USE_X11 and USE_IMAKE usage. (5) Add new user-overridable variable MASTER_SITE_KDE. Submitted by: vanilla (6) Add support for "Latest" package links. Idea by: Terry Lambert (7) Try to catch obsolete tcl/tk installations that could cause problems. Annoyed by various bogus commits by: you-know-who
* Define MASTER_SITE_SUBDIR and PATCH_SITE_SUBDIR to default to "." soasami1997-11-201-1/+11
| | | | | | | | | | we won't have double-slashes. Add support for new port variable MANUAL_PACKAGE_BUILD. If this is defined as well as the user variable PACKAGE_BUILDING, the port will be ignored. This is used to mark ports that can be built normally except on a machine that has a lot of conflicting ports (i.e., our package building machine).
* Add new target "checksubdirs". It will warn about any subdirectories thatasami1997-11-201-1/+29
| | | | | are not in the SUBDIR list. It also knows about the "standard" directories that are to be ignored ("CVS", "distfiles", etc.).
* Upgrade perl to perl5.004_04markm1997-11-121-3/+3
|
* target(__target) -> target(${__target})wosch1997-11-101-2/+2
| | | | | PR: bin/4736 Submitted by: Martin Kammerhofer <dada@sbox.tu-graz.ac.at>
* Convert <, > and & into &lt;, &gt; and &amp; in port names, COMMENT andfenner1997-11-061-7/+14
| | | | | | | | DESCR files when building README.html . Don't use control characters in sed statement. Problems reported by "Chris G. Demetriou" <cgd@pa.dec.com> in NetBSD PR pkg/4341.
* Install ${PKGDIR}/MESSAGE as /var/db/pkg/${PKGNAME}/+DISPLAY if it exists.asami1997-10-081-1/+4
| | | | Reviewed by: kiri
* Add "distclean" to list of targets to descend into subdirs for.asami1997-08-221-2/+2
|
* (1) Be nicer about mtree file missing. (Actually, just suggest whereasami1997-08-201-3/+13
| | | | | | | | | | you can get one from.) (2) Use "reinstall" as DEPENDS_TARGET if target is "reinstall". In particular, this will make it possible to do a "make reinstall" on several NFS clients and have them install all dependencies correctly. Tested by: davidn
* Changes for perl-5.004_01markm1997-07-181-3/+3
|
* (1) Add preliminary support for architecture/operating system-dependentasami1997-07-101-6/+55
| | | | | | | | | | patches and files. Note this is just for testing -- I don't expect "patches.OpenBSD" or "Makefile.alpha" start cropping up on our ports tree just yet! Pretty much ignored by: the ports/committers list (2) Add "SH?=/bin/sh" to the list of command-name macros. Use it. Checked by: recompiling all packages
* ``-C ${WRKDIR} -xzf'' are no longer the default args for EXTRACT_BEFORE_ARGSobrien1997-06-291-2/+2
|
* Add new variable USE_PERL5. It is similar to USE_GMAKE, except thatasami1997-06-241-2/+7
| | | | | | | | | | | it also sets RUN_DEPENDS (USE_GMAKE is BUILD_DEPENDS only). The (immediate) purpose of this is to avoid having to change 70 zillion ports when the version of perl changes. Also, when perl5 is pulled into -current, this will become a no-op in -current's bsd.port.mk. Reviewed by: jfitz
* Move the "umask ?= 0022" check (a warning only) from the defaultasami1997-06-181-6/+6
| | | | | | | | "do-install" target to the beginning of the "install" meta-target, so that ports that define their own do-install will also run it without having to duplicate it themselves. Tested by: rebuilding all packages
* (1) Use the new BSD.x11.dist mtree file to create directories underasami1997-06-041-55/+51
| | | | | | | | | | | | | | | | /usr/X11R6 if USE_IMAKE or USE_X11 is set. It is mostly designed after the XFree86 distribution, but also includes some of our own goodies (libexec, share/doc, etc/rc.d). (2) Full support for per-port dependency target. An optional ":<target>" can be added to any of the *_DEPENDS variables. Do not attempt to print out anything about dependencies if NO_DEPENDS is set (there was already too much code duplication, and this extra colon has really pushed it over the limit). Requested by: jfitz (3) Make "reinstal" pmake-safe. Reminded in an e-mail from: jkh
* (1) Change logic for dependency: instead of defining "is_depended"asami1997-04-301-47/+54
| | | | | | | | | | | | | | | | | | | | | | | (default: IS_DEPENDED?=install) target on the depended port, call DEPENDS_TARGET (default: install) from the depending port. Other than being more flexible (some ports don't require the dependency to be fully installed: see ghostscript4), this seems like a more natural thing to do. (I never understood the convoluted logic that was used before.) By building packages with "DEPENDS_TARGET=package", I can avoid file-sharing problems (like gs3 binary going into the gs4 package). (2) Add new variable PATCH_SITE_SUBDIR and separate it from MASTER_SITE_SUBDIR. Fixes linuxls port and is a correct thing to do anyway. Initially suggested and reviewed by: fenner (3) Add new variable MASTER_SITE_LOCAL for local ports. Defaults to LOCAL_PORTS subdir on ftp.freebsd.org's distfiles dir. Submitted by: jkh
* Merge from 2.2.asami1997-04-211-8/+13
|
* (1) Change comment for USE_X11 to be more explicit about what itasami1997-04-151-10/+12
| | | | | | | | | | | | | | | | | means. (2) Change MASTER_SITE_GNU etc. to use += instead of ?=, so users can specify a local mirror in /etc/make.conf and still get the full fallback in case something is missing. Submitted by: Narvi <narvi@haldjas.folklore.ee> (3) Skip port if USE_X11 or USE_IMAKE is defined and /usr/X11R6 doesn't exist. Submitted by: imp (4) Add "-" in front of rmdir of ${DISTDIR}/${DIST_SUBDIR} in distclean target; the directory might not be empty because the subdir is shared with some other ports' distfiles.
* Add comments.wosch1997-03-101-0/+32
|
* Make COMMENT and DESCR variables (just like PLIST). Will be usefulasami1997-03-061-9/+11
| | | | | when you want to share all of PKGDIR except for one file. (See upcoming multilingual nvi ports.)
* (1) Define ${LDCONFIG} and ${MV} to be full pathnames to ldconfig andasami1997-02-231-20/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | mv, respectively. This will make Warner's life easier. (2) Add new variable ${PLIST}, which defaults to ${PKGDIR}/PLIST. If you need to have different PLISTs for different configurations, you can either @ pre-fabricate all of them and switch ${PLIST} to point to the appropriate one, or @ use sed/awk/perl/whatever to create the correct one from pkg/PLIST and set ${PLIST} to it. It is still recommended to have a file called "pkg/PLIST" so people can do "grep badprog /usr/ports/*/*/pkg/PLIST" and such. (3) Move /var/db/pkg/${PKGNAME} clash detection to before the installation (instead of after) and make it fatal, with an error message suggesting a workaround. (4) Don't make distclean fail if DIST_SUBDIR is set and the subdirectory does not exist. (5) Don't put "@pkgdep Error code 2. Stop." kind of garbage into packing list if depended port's directory doesn't exist. Instead, print out a message to stderr.
* Revert $FreeBSD$ to $Id$peter1997-02-221-1/+1
|
* Submitted by: Dave Cornejo <dave@dogwood.com>obrien1997-02-171-3/+2
| | | | | ftp.shsu.edu is no longer maintained - they refer you to the mirror I maintain at ftp.cdrom.com
* Fixed URL for ftp.tex.ac.uk in MASTER_SITE_TEX_CTAN.obrien1997-02-161-2/+4
| | | | Added ftp.shsu.edu and ftp.dante.de used by jmz in the latex port.
* Change $FreeBSD$ back to $Id$. I'm sorry, but it's been too long andasami1997-02-121-1/+1
| | | | it's getting too hard to diagnose people's problems with this.
* (1) Add ${DESTDIR} to ${LOCALBASE} and ${X11BASE}, and remove it fromasami1997-01-251-5/+15
| | | | | | | | | | | | | | ${PORTSDIR}. This undoes the changes done in rev. 1.38 and 1.59 (part of the bsd.port.mk pre-dawn ages I've never understood). Requested by: jkh (2) Add new variable NO_IGNORE that will override any IGNORE causes. This is just a little hack to allow building of REQUIRES_MOTIF ports and its dependencies only etc., so don't document it. (3) Update +REQUIRED_BY files as necessary. Now you should be able to delete ports that have runtime dependencies without pkg_delete complaining about this file missing.
* Move $FreeBSD$ up right next to $NetBSD$ (oh, the solidarity! :).asami1997-01-141-2/+1
|
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-01-142-2/+2
| | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
* Skip non-existent subdirectories. The diff is rather large becauseasami1997-01-131-10/+11
| | | | | | | | the original logic went into a section of code assuming some incarnation is there, but it's basically a "test -d" fix. Closes PR ports/2082. Reviewed by: max ("although I didn't test it, it looks fine")
* Add OpenBSD support. Change some comments to reflect the fact. Also:asami1997-01-121-9/+22
| | | | | | | | | | | | | | | | | | | | | (1) Change commented out MAINTAINER to FreeBSD_MAINTAINER and OpenBSD_MAINTAINER. These are not comments anymore, so we may even use it in the future. (2) Instead of the ".if ${OPSYS} = "NetBSD" hack, use ".if exists()" to find the location of md5 an tar. Play similar trick for fetch (OpenBSD uses /usr/bin/ftp which groks http: addresses). This commit includes most of the changes made in 1.242 (although many of them are done differently after more discussion). One thing that is conspicuously missing is NOMANCOMPRESS, which has been postponed until Warner figures out what exactly the situation is on the OpenBSD ports paradigm. (In a nutshell, we can't just define NOMANCOMPRESS in this file even if uncompressed manpages is the default for OpenBSD, because that will take away the ability of individual users to select manpage compression.) Reviewed by: imp@openbsd.org
* (1) New variable, SCRIPTS_ENV, which is passed to scripts/configureasami1997-01-121-23/+43
| | | | | | | | | | | | | | | | | | | | | | | and scripts/{pre,post}-* as environment vars. Also, if BATCH is set, "BATCH=yes" is automatically added to SCRIPTS_ENV. (Requested by: max) (2) The INSTALL_* macros are added to SCRIPTS_ENV and MAKE_ENV as BSD_INSTALL_*. (Requested by: obrien) (3) New variable MOTIF_ONLY, which will only build ports with REQUIRES_MOTIF defined. This doesn't do dependencies right (what if the depended port doesn't need Motif) yet. (4) Try not to clean the same port twice in clean-depends when (for instance) it's defined in both BUILD_DEPENDS and INSTALL_DEPENDS. Note that it won't check chained dependencies so you may still see the same port cleaned multiple times, but checking that far will surely make this run slower than the un-"optimized" case so I left it as is. (Requested by: jkh) (5) Ignore *.rej files in patches/ directory in addition to *~ and *.orig.
* if !(command) -> if ! (command)wosch1997-01-111-2/+2
| | | | | the ksh and I guess some other shells want a space between '!' and the next command. This problem exist since rev 1.207
* I'm sorry, this kind of commits need to be reviewed by me, espiciallyasami1996-12-261-21/+7
| | | | | | in a time like this (i.e., right before the release). Back out rev 1.242, also add a stronger note above the MAINTAINER.
* Integrate changes from OpenBSD's efforts to use the FreeBSD ports system.imp1996-12-261-4/+21
| | | | | | | | | | Generalize the selection of programs to run based on the existance of files rather than the OS names that we find. Add comments about me being the keeper of the OpenBSD mods of this file. Use ftp on OpenBSD rather than fetch since OpenBSD's FTP supports urls and there is no fetch. Reviewed by: Joerge Wunch, Jordan Hubbard, and others in ports I've forgotten Obtained from: OpenBSD with changes from me.
* Suggested by: msmithasami1996-12-231-9/+11
| | | | | | | | | | Add a little more sophistication to the md5 grep command. Change the md5 checksum logic a bit. Now, the message is printed out for every successfully/unsuccessfully matched checksum, and it aborts at the end if there was a mismatch. Also, make missing checksum and IGNORE file inconsistency fatal, as there is now no reason to have a missing checksum.
* Add missing targets (extract, patch) in the IGNORE (INTERACTIVE &asami1996-12-181-7/+11
| | | | | PATCH, etc.) section. Also sort them in order of execution like other parts of this file.
* Add new variable IGNOREFILES, to be set to list of files that you don'tasami1996-12-171-13/+53
| | | | | want md5 checksum calculated. (It will create an entry in files/md5 with rhs "IGNORE".) Now it's safe to do a "make makesum" on all ports.
* Change delimiter of substitution that uses MANLANG from `.' to `%', soasami1996-12-121-4/+4
| | | | | | things like `ja_JP.EUC' will work. Suggested by: max
* Extend the manpage compression handling a bit.asami1996-12-111-6/+18
| | | | | | | | | | | | | | | | (1) MANLANG is now a list (defaulting to ""), so if you have English and Japanese-EUC versions of the manpages, you can say something like `MANLANG= "" ja_JP.EUC' and manpage compression will DTRT. (2) Add new variables MAN%cPREFIX (where %c=[1-9LN]) which default to MANPREFIX (which defaults to PREFIX), to specify per-section prefixes. In particular, this handles the cases in many perl ports, which install man1pages into man/man1 and man3pages into lib/perl5/man/man3. Note these modifications won't change the behavior of existing variables used in previously-approved ways, so any Makefile that worked before will still continue to work.
* Add support for uncompressing manpages that are already installedasami1996-12-111-4/+16
| | | | | | | | compressed. Requested by: obrien Change name of -D option (to pkg_create) file to MESSAGES. (More friendly to filename completion.)
* Submitted by: fennerasami1996-12-091-10/+14
| | | | | | | | | | | | | (1) Print out reason when port is ignored because of NO_CDROM, RESTRICTED, IS_INTERACTIVE, (not) IS_INTERACTIVE, BROKEN, REQUIRES_MOTIF or NO_PACKAGE. Submitted by: obrien (2) Add new special file in pkg/: DISPLAY. (Cf. man pkg_create) (3) Minor bugfix in clean-depends target, which sometimes executed "make clean" in the current directory. (Which is probably ok, but is wrong nonetheless.)
* Was using new URL (ftp://ftp://) before the RFC has been voted on. :-)obrien1996-12-081-2/+2
| | | | Obtained from: make fetch
* Optimize by changing "sort | uniq" -> "sort -u". "make index" is nowasami1996-12-041-6/+6
| | | | | | 412 secs instead of 498 secs on my machine! Submitted by: fenner
* Merge from RELENG_2_2 (duh). See rev 1.227.2.4 for details.asami1996-11-301-53/+95
|
* Just realized that the spacing after "==>" is not consistent. I'masami1996-11-141-8/+8
| | | | terribly sorry, please merge this into 2.2 as well.
* Oops, forgot to silencethe gzip command to compress manpages.asami1996-11-141-2/+3
| | | | | | It will be nice if this went into 2.2, I guess. Reminded by: max
* (1) There is no default "orphans" for CATEGORIES, it simply fails ifasami1996-11-131-21/+106
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | you have a Makefile without one. (2) Fix case when user had DISTDIR defined elsewhere and DIST_SUBDIR is also defined. (Submitted by: max) (3) Add several popular master sites as variables. For instance, MASTER_SITE_XCONTRIB is defined to be a list of X11R6 contrib sites, which you can set MASTER_SITES to in your Makefile if you just want ftp.x.org or any of the mirror sites. There is also a new variable, MASTER_SITE_SUBDIR, to specify which subdirectory of the master site your tarball is located. One nice thing this enables the user to do is to define the nearest mirror site in /etc/make.conf. This is especially useful for continents without a full FreeBSD master site. Eventually, we will probably split this into a separate file (bsd.port.sites.mk?), and add some more sites from all corners of the world. Right now, XCONTRIB, GNU, PERL_CPAN, TEX_CTAN, and SUNSITE are supported. (4) COMPRESS_MAN command alias is replaced by MAN[1-9LN] variables. You just say "MAN1=foo.1 bar.1" and the make rules will automatically compress it for you if necessary. (Idea by: obrien) (5) New "distclean" target to delete distfile too. (Submitted by: obrien) (6) Chained dependency cleaning, can be turned off by NOCLEANDEPENDS. Reviewed by: the ports list
* Set tabstops to 4 in vi like in emacs.obrien1996-11-031-1/+2
|
* (1) Add NetBSD support. Closes PR bin/1643.asami1996-11-012-36/+76
| | | | | | | | | | | | | | | | | | | | | | | | Submitted by: Jason Thorpe <thorpej@nas.nasa.gov> (2) Remove the bogus "CAT+=" definition. Closes PR ports/1703. Submitted by: Peter Childs <pjchilds@imforei.apana.org.au> (3) Change MKDIR to "/bin/mkdir -p", remove "-p" from ${MKDIR} invocations. Closes PR ports/1901. Submitted by: obrien (4) Add a new macro variable COMPRESS_MAN, which will evaluate to gzip if NOMANCOMPRESS isn't set (default), or true if it is. (5) Add a new variable NO_CHECKSUM, which will disable the md5 checksum. Submitted by: jkh (6) Also, move NO_PATCH and NO_PACKAGE checks to right place in invocation order. (7) Check for LIB_DEPENDS before installation too. (It used to check only before extraction.) Forgotten a long time ago by: asami
* Back out changes in rev. 1.217 -- ${CONFIGURE_SCRIPT} is notasami1996-09-241-3/+3
| | | | meant to rename the name of script in ${SCRIPTDIR}.
* Look on the CDROM for patch files too.asami1996-09-231-2/+4
| | | | | | | | Submitted by: max While I'm here, add "${DIST_SUBDIR}/" at end of CDROM pathnames. Also add an empty declaration of PATCH_SITES next to MASTER_SITES to avoid "variable recursive" error.
* /bin/echo -> ${ECHO}wosch1996-08-261-2/+2
| | | | /usr/bin/sed -> ${SED}
* Use the new "file:" URL specification to fetch to check the CDROMasami1996-08-241-2/+12
| | | | | | | first if /cdrom/ports/distfiles exists. If FETCH_SYMLINK_DISTFILES is set, symlink the file instead of copying. Reviewed by: jhk
* Update explanation of *_DEPENDS, in particular note that bsd.port.mkasami1996-08-201-18/+20
| | | | | can now check existence of files specified by full pathnames, not only executables.
* (1) Use INSTALL_PROGRAM where we attempt to pass this command lineasami1996-08-181-2/+7
| | | | | | | | to configure. (2) Gently warn user for non-0022 umasks. Submitted by: "David E. O'Brien" <obrien@Nuxi.cs.ucdavis.edu> (1)
* (1) Ignore patches directory without a patch with a message instead ofasami1996-08-171-44/+29
| | | | | | | | | | | | | bombing mercilessly. (2) If that directory has a directory called CVS, remind the user of the existence of the "-P" option to cvs co and update. (3) While I'm here, clean up the PATCH_DEBUG code a bit. In particular, don't duplicate a whole bunch of code just for adding a single "echo" statement. ;) Reviewed by: the ports list
* (1) Add myself as MAINTAINER (of this file) -- commented out so itasami1996-08-151-4/+29
| | | | | | | | | | | | | won't be pulled into individual ports that include this file. ;) (2) Document MOTIFLIB, it's not set in the ports Makefiles but is important for Motif ports (already documented in the handbook). (3) Add INSTALL_PROGRAM, INSTALL_SCRIPT, INSTALL_DATA, INSTALL_MAN as "aliases" of the appropriate install command line, for use in *-install targets. Reviewed by: the ports list (item 3 only)
* Make explanation of BUILD_DEPENDS less confusing.asami1996-08-071-3/+3
| | | | Requested by: Narvi <narvi@haldjas.folklore.ee>
* Fixed bug, that CONFIGURE_SCRIPT in a port's Makefile doesn't haveandreas1996-07-271-3/+3
| | | | | | any effect. The target do-configure used ${SCRIPTDIR}/configure instead of ${SCRIPTDIR}/${CONFIGURE_SCRIPT}. -andreas
* Remove now-unused SRC_ENCAPSULATION hack.jkh1996-07-051-29/+1
|
* Add a missing space in a commentgpalmer1996-06-271-2/+2
|
* Bring in my changes for removing the pestilent obj links (unless youjkh1996-06-241-26/+5
| | | | | really want them) from /usr/src. This is the final version of the patches, incorporating the feedback I've received from -current.
* Correct spelling errors (i before e except after c :-) )gpalmer1996-06-231-3/+3
| | | | Submitted by: James Raynard <jraynard>
* Handle the `distribute' target.jkh1996-06-211-1/+7
|
* Whoops - I made `make clean' chatty by mistake.jkh1996-06-211-2/+2
|
* The changes to go with ncftp -> fetch. Besides changing the names,asami1996-06-191-11/+12
| | | | | | | standardize the variables a little, and simplify some parts because we can now trust the fetcher's return value. Reviewed by: the list
* Spit out the a proper port path for the describe target.jkh1996-06-191-2/+2
| | | | Submitted-By: Chuck Robey <chuckr@Glue.umd.edu>
* Ok, now cleandir: is correct.jkh1996-06-191-4/+4
|
* Add some unobtrusive changes to handle sources which aren't portsjkh1996-06-191-53/+106
| | | | | | (SRC_ENCAPSUATION). Stick in some cd ${.CURDIR} directives which have been (benignly) missing all this time. Allow more types of targets to be selectively disabled.
* Add "MASTER_SITES?=" (no this is not a typo) right before theasami1996-06-131-1/+2
| | | | | | "MASTER_SITES:= ..." of defined(MASTER_SITE_OVERRIDE) case, otherwise it would cause a recursive variable definition error when MASTER_SITE_OVERRIDE is set and MASTER_SITES is not set.
* Add some comments to sections to disable targets using NO_* variables.asami1996-06-011-6/+12
| | | | | | Remove disabling of "repackage", that thing calls package anyway. Submitted by: (mostly) jkh
* Set MAKE_ENV and CONFIGURE_ARGS with += instead of ?=, it is easier toasami1996-05-301-3/+3
| | | | | | add things this way. Reviewed by: ache
* Fix a minor grammatical error (reselled -> resold) I just noticed.jkh1996-04-281-2/+2
|
* Add CFLAGS=${CFLAGS} to MAKE_ENV, otherwise gmake won't pick it up.asami1996-04-261-2/+2
|
* Add NO_CDROM, RESTRICTED, BROKEN and Motif support.asami1996-04-121-9/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (1) The new NO_CDROM Boolean variable means "don't put the distfile/ package on the CDROM you're going to sell". It will basically turn off everything if FOR_CDROM is set. Many of the NO_PACKAGE ports are actually "don't sell for profit" types, which we shouldn't have any problem distributing via ftp. (2) The new RESTRICTED Boolean variable means don't build this unless you know what you are doing. It doesn't have any effect unless NO_RESTRICTED is also set. (3) BROKEN means this port is broken. At least it will now show up in INDEX and README.html, and give people more incentive to fix (I hope). RESTRICTED and BROKEN are expected to replace the pseudo-targets in parent Makefiles. (The RESTRICTED and BROKEN list didn't do anything before, they were solely for grepping purposes.) (4) The Motif support brings in four new variables: REQUIRES_MOTIF, which the porter sets for ports that require Motif to build; HAVE_MOTIF, which the user sets to indicate the system has Motif; MOTIF_STATIC, which the user sets to indicate that the static libXm, instead af the default dynamic library, is to be used; and MOTIFLIB, which is set to "${X11BASE}/lib/libXm.a" or "-L${X11BASE}/lib -lXm", depending on whether MOTIF_STATIC is set. The porter is expected to replace all occurrences of libXm in the {Im,M}akefiles with ${MOTIFLIB}, and this will allow both dynamic linkage (for users with Motif) and static linkage (for those who build packages to be used by those withot Motif, i.e., me ;) automatically. Original Motif support idea by: graichen
* use .for loop for common targetswosch1996-04-101-51/+6
|
* Change ${ENV} -> ${SETENV}. The former coincides with startup fileasami1996-04-071-6/+6
| | | | | | names of bash et al. Submitted by: Thomas Gellekum <thomas@ghpc8.ihf.rwth-aachen.de>
* Thanks for the overwhelming response (which can be only summarized by theasami1996-04-012-4/+87
| | | | | | | | | | | | | | | | word: "zilch"). I guess the only way to get people try and comment on these kind of things is to shove it down their throat.... ;) Anyway, here's a set of changes required for auto-generation of READMEs in ports directories. Necessary changes and additions of templates to the ports tree will follow shortly. Eventually I'll commit all the generated READMEs to the tree, but that will be in the rather distant future. For now, I encourage anyone with a -current systam and a matching ports tree to do a "make readmes" at the top level and see what they get. Next step will be to add pkg/{COMMENT,DESCR} to all the categories.
* Change name of variable to LOCALBASE, to keep it symmetric with X11BASE,asami1996-03-311-3/+3
| | | | | | | | which has been in the tree for a much longer time. Sorry for the multiple commits and I know I shouldn't be doing this but my hamster tells me to be orthogonal...("hey Phoenix, do you think I should call it LOCALBASE?" "squeak" "ok, if you say so").
* Add a variable LOCAL_PREFIX that defaults to "/usr/local", as aasami1996-03-311-2/+3
| | | | | | | | | | | | | | | | | | | | counterpart to X11BASE (default "/usr/X11R6"). Now PREFIX is set to ${X11BASE} or ${LOCAL_PREFIX} depending on whether USE_IMAKE or USE_X11 is set or not. This enables us to refer to non-X ports from X ports using ${LOCAL_PREFIX}, thus removing most of the remaining "/usr/local"s from the ports tree. This will also allow the system administrator to move the whole "local" tree to somewhere else, without affecting X ports. (Of course not all ports are necessarily happy with that, but we're working on it.) Based on: an idea that came up while I was watching a football game several months ago ("hey, maybe I can move that sideline without disturbing the other!")
* remove BINGRP?= BINOWN?= BINMODE?=wosch1996-03-241-4/+1
|
* Replace PATCH_PRFX with a more generic DIST_SUBDIR. If it is set toasami1996-03-101-32/+28
| | | | | | | | | | | | | | | | "foo", what this does is: (1) Put all distfiles and patchfiles in /usr/ports/distfiles/foo (2) Go to ftp://ftp.freebsd.org/pub/FreeBSD/distfiles/foo when the master site is down When your port has a lot of dist/patchfiles, or has a file that does not have a very port-specific name (e.g., "Makefile"), set this variable instead of redefining DISTDIR. (If you redefine DISTDIR, (1) will work but (2) will not.) Agreed that it's a good idea by: adam
* Delete all references to the variable ${KEYWORD} that never quite flew.asami1996-03-061-6/+14
| | | | | | | | (Sorry Jordan, but your other idea (${CATEGORIES}) was a major hit.) Also remove the keyword field in the INDEX line and replace it with two columns: build-time dependencies and run-time dependencies. They are both list of package names (minus the ".tgz").
* Replace absolute pathnames with variables, so thatasami1996-03-061-68/+80
| | | | | | | | | (1) people can have weird paths and it will still work, and (2) if you really need to use /usr/local/bin/cp instead of /bin/cp, you can do that by changing only one line. Submitted by: wosch
* Add a check for when the user tries to FTP over a symlink in ${DISTDIR}.jkh1996-02-161-1/+13
|
* correct semantic error in the English usage:adam1996-02-081-5/+5
| | | | distributed patches --> distribution patches
* Mention "make reinstall" in the message that gets printed out whenasami1996-02-071-2/+2
| | | | | | | | /var/db/pkg/${PKGNAME} exists. ("make install" will do nothing because this is not a critical error and the installation is treated as successful.) Closes PR 870.
* Add NCFTP tailer arguments: ${NCFTPTAIL} variableache1996-02-071-5/+5
| | | | | | Since it is empty in normal case, it not affect anything It is useful for ncftp -c ugly_name > nice_name ^^^^^^^^^^^ ${NCFTPTAIL}
* Add support for ALL_HOOK feature. Lets you replace the `all' targetjkh1995-12-071-1/+13
| | | | with something of your own devising.
* Make the {FETCH,BUILD,RUN}_DEPEND targets work with non-executable filesasami1995-11-261-5/+23
| | | | | | | too. Basically, if the name starts with a "/", it's tested with "test -e"; otherwise, it's tested with "witch -s". Reviewed by: the ports list (well at least nobody complained)
* Use NO_MTREE, not !USE_X11 && !USE_IMAKE, to determine package args.asami1995-11-181-2/+2
| | | | | NO_MTREE should work as advertised (for both direct installation and pkg_add) now.
* Back out the two latest changes. The -current branch is now equal toasami1995-10-181-7/+1
| | | | the -stable branch except the change between 1.182 -> 1.183.
* Add NO_FETCH handling in the similar way as other NO_* targets doesache1995-10-161-1/+5
|
* Fix NO_EXTRACT case: build missing WRKDIRache1995-10-161-1/+3
| | | | | Previous variant always fails on touch work/.extract_cookie (or next following touches) because work directory not exists.
* Add "--batch" to PATCH_ARGS and PATCH_DIST_ARGS when ${BATCH} is setasami1995-10-111-1/+5
| | | | | to avoid an infinite loop in patch when the patch target is not found and stdin is redirected from /dev/null (the "skip this patch? [n]" question).
* Add CONFIGURE_ENV: pass this environment to configure script.ache1995-10-051-2/+3
| | | | Allows pre-set some variables to eliminate wrong tests
* Attempt to sound more civilized by adding a missing period toasami1995-10-041-2/+2
| | | | | | "Attempting to fetch from $${site}." Why it was in PATCHFILES and not in DISTFILES, I have no idea.
* Use full pathname for ldconfig (/sbin/ldconfig).asami1995-10-031-2/+2
| | | | Hinted by: joerg
* Split EXEC_DEPENDS into FETCH_DEPENDS, BUILD_DEPENDS and RUN_DEPENDS.asami1995-09-181-15/+61
| | | | | | | | | | | | | | | | | | | | | They are called from the fetch, extract and install targets, respectively. Also, only RUN_DEPENDS is put into the @pkgdep list of the package. EXEC_DEPENDS is still supported (for now), it is copied into BUILD_DEPENDS and RUN_DEPENDS. This will go away after we finish fixing all the ports Makefiles. This change fixes the following bug/features: (1) "make fetch" building and installing all the dependencies (2) Programs needed for building only (e.g., gmake) put into the packages' dependency lists ("why does the emacs package depend on gmake?") Reviewed by: the ports list
* Ignore patchfiles that end with ".orig" or "~".asami1995-09-131-5/+19
| | | | Suggested by: paul, joerg among others
* Don't trust ncftp's exit status, they are not indicative of whetherasami1995-08-291-14/+12
| | | | | | | | | | | | | | the file is fetched or not. Apparently Jordan fixed it a long time ago but it was broken again at import of the new version of ncftp. Which means even if we fix it, it may break again and we may need to fix it again, and (imagination here, please).... Instead, move the file existence check into the for loop for MASTER_SITES/PATCH_SITES and break out with "continue 2" when the file is found. This is actually a cleaner logic than before if you ask me, because instead of assuming the file is fetched on a 0 exit status from ncftp AND checking for the existence of the file after the loop, the check is done exactly once for each iteration and nowhere else.
* Clean up EXTRACT_ONLY logic a bit. Instead of branching in theasami1995-08-291-10/+5
| | | | | | do-extract target depending on defined(EXTRACT_ONLY) or not, simply set EXTRACT_ONLY ?= ${DISTFILES} and always use ${EXTRACT_ONLY} as the extraction list.
* Merge all the "skeleton" target into one macro. This is an enormousasami1995-08-181-237/+149
| | | | | | | | | change, but I've been testing this on thud and silvia for quite a while, also I haven't gotten any bug reports from the ports list, so I'm going to let it loose! It cleans up this file quite a bit, now I can go in and start adding some more "interesting" things.... ;)
* Let MASTER_SITE_OVERRIDE be prepended to the MASTER_SITES list insteadasami1995-07-241-3/+3
| | | | | | | | of replacing it. This way you can point it to a site close to you that carries many distfiles, and still let it go fetch from the original site if the distfile is not there. Original idea by: mmead@Glock.COM
* Simplify the USE_IMAKE stuff considerably.jkh1995-07-181-9/+1
| | | | Suggested by: asami
* A regrettable hack to allow a port to say that it doesn't want its Makefilesjkh1995-07-151-1/+5
| | | | made after the xmkmf run.
* Add IS_DEPENDED_TARGET to change the behavior of a port when you wantasami1995-07-111-2/+18
| | | | | | | | | | | | | | to do something else than "install". For example, make IS_DEPENDED_TARGET=fetch fetch will fetch the required distfiles including those of the dependencies without actually building and installing dependencies. Also document ECHO_MSG. Requested by: paul Reviewed by: paul, jhs and others
* Useasami1995-06-261-6/+6
| | | | | | | | | | | | | ftp://ftp.freebsd.org/pub/FreeBSD/distfiles/ as our distribution point for distfiles and patches. Other than cosmetic changes (freebsd.cdrom.com -> ftp.freebsd.org), the omission of "ports" is important. I would like to move this directory completely out of the ports tree (on the ftp site), so that people who do "get ports.tar.gz" won't get a bogus distfiles -> ../distfiles symlink (which will make "make fetch" fail). Sometime around the 2.1 release, the distfiles link will be deleted.
* Use full pathnames for the commands. Everything except gmake andasami1995-06-261-93/+99
| | | | | | | xmkmf (i.e., everything in the base distribution) should be referred to by full pathnames. Suggested by: rgrimes, originally from one of his customers
* Check if uid is 0 before running mtree. If you aren't root, you justasami1995-06-261-2/+7
| | | | get a message (instead of a bunch of crap from mtree).
* Add new option NO_MTREE. If set, bsd.port.mk won't run mtree toasami1995-06-251-2/+8
| | | | | | | | | | | set permissions and ownerships of PREFIX (usually /usr/local). This is the default if USE_IMAKE or USE_X11 is set. This should be useful for machines like thud, where we want to keep the /usr/local subtree writable to a group ("ports" in our case). Anybody who installs stuff in /usr/local should have this set in the environment. Note this won't affect anything the pkg_* suite does.
* Add a "checkpatch" target that does a "patch -C" instead of a "patch".asami1995-06-241-3/+20
| | | | | | | | | | | Note that the two "touch"s I took out from do-patch shouldn't have been there in the first place. This target may give incorrent results if two separate patches deal with the same file, and their hunks overlap. (But having those kinds of patches are bad, and they should be merged anyway.) Reviewed by: hsu
* Renamed the default package repository ".../packages/.packages" toasami1995-06-061-4/+5
| | | | | | | | | | | | | | | | | | | | | | | ".../packages/All". The "all" category that was automatically added for every package is gone. Note that bsd.port.mk requires category names to start with lowercase names, otherwise it may get confused. Reviewed by: jkh By the way, here is a small script to convert your local package hierarchy. Run it in bash, as /bin/sh not only will bark at the $(.) command substitution but will also botch the [a-z]*/*.tgz expansion (long-standing and annoying bug, reported before). cd /usr/ports/packages mv .packages All for i in [a-z]*/*.tgz; do j=$(basename $i) /bin/rm $i ln -s ../All/$j $i done
* Remove comment about not being able to undefine a variable, as we *can*asami1995-05-291-3/+2
| | | | do that.
* Fix the indent level. I know we're in code freeze, and this isasami1995-05-161-2/+2
| | | | | | | | | one of the key components of the system, but I'm sure that this: === - ${ECHO_MSG} "===> Registering installation for ${PKGNAME}"; \ + ${ECHO_MSG} "===> Registering installation for ${PKGNAME}"; \ === change has absolutely no chance to screw us up, right? :)
* Don't conditionalize fake-pkg on NO_PACKAGE.asami1995-05-141-5/+1
|
* Add FORCE_PACKAGE, if this is defined, NO_PACKAGE will be turned off.asami1995-05-131-1/+7
| | | | | | | Ports for which we can't build packages should define NO_PACKAGE but still prepare pkg/* files. The user who really wants a package and clear of the legal problems can say FORCE_PACKAGE from the command line to build a package anyway.
* When NO_PACKAGE is set, "package" and "repackage" don't depend onasami1995-05-121-3/+3
| | | | "install". In other words, they won't do anything at all.
* Not only deleting the package and package links, also exit with statusasami1995-05-121-1/+2
| | | | 1 if pkg_create returns error!
* Delete package and links when pkg_create fails.asami1995-05-121-4/+7
|
* Add new variable to override the "hey foobar-1.2.3 is already installed"asami1995-05-101-1/+6
| | | | | | warning from fake-pkg. # FORCE_PKG_REGISTER - If set, it will overwrite any existing package # registration information in ${PKG_DBDIR}/${PKGNAME}.
* Make the "reinstall" target delete the package cookie as well asasami1995-05-091-1/+2
| | | | the install cookie.
* added support for distribution patches in a subdir of ${DISTFILES}adam1995-05-051-18/+28
|
* Put an `@' in front of the mtree command. I don't want to see it.jkh1995-05-041-2/+2
|
* Add an mtree line to the install target.jkh1995-05-021-1/+6
|
* A bunch of new targets in the package area. Relevent targets are:asami1995-04-301-14/+44
| | | | | | | | | | | | | | package: check installation, build package, create links, touch cookie repackage: ditto but don't check cookie package-noinstall: just build package from installed stuff, no cookies involved at all package-links create the symbolic links only delete-package: delete package and symbolic links delete-package-links: delete links only These should make the management of the spaghetti of package links a little friendlier. :)
* Pass X11BASE to all sub-makes. I need it for a port, and I daresay thatjkh1995-04-281-18/+18
| | | | | there are a lot of hardwired "/usr/X11R6" paths out there that could stand to use it as well.
* (1) Add the chain of dependencies to the targets in the NO_* sectionasami1995-04-241-10/+12
| | | | | | too (otherwise the chain won't work). (2) If NO_WRKDIR is set, "make clean" removes "./.*_done" (assuming these are cookies...or should I list all the cookies?)
* Move call of fake-pkg from do-install to end of install.asami1995-04-241-4/+4
|
* Ok, this should get the last of the stragglers installed into a new fake-pkg.jkh1995-04-221-1/+4
|
* Don't try to run the fake-pkg target if NO_PACKAGE is set.jkh1995-04-221-1/+3
|
* Typo: patch -> packagejkh1995-04-221-2/+2
|
* Instead of copying PLIST over, run pkg_create in a special mode that dumpsjkh1995-04-221-2/+2
| | | | the fully-formed PLIST to stdout and uses that.
* Major overhaul. The major targets (fetch, extract, patch, configure,asami1995-04-211-357/+532
| | | | | | | | | | | | | | | | | | | | | | | | | | build, install) are now all skeletons and do nothing but (1) Call pre-* target (if exists) (2) Call scripts/pre-* script (if exists) (3) Call do-* target (4) Call post-* target (if exists) (5) Call scripts/post-* script (if exists) The do-* targets do all the work. The pre-* and post-* targets/scripts don't exist by default. The main targets check for the cookies too, so porters shouldn't have to worry about them at all. NOTE: THE MAIN TARGETS IN THE PORTS MAKEFILES SHOULD GO AWAY. We need to fix this before wcarchive comes back up. Change the names to do-*, rip out the cookies, rip out the calls to pre-* etc. and most of them should work. Also, reorganize the whole thing so that similar targets are together and add more comments. Surround section header with 64 #'s (C-u C-u C-u # in emacs :). Hopefully this will be the last major change to bsd.port.mk. Now let the Makefile-hacking begin.
* 1. Add Satoshi's much-requested "fake pkg_add" option to the installationjkh1995-04-191-1/+29
| | | | | | | | | | rule. 2. Have all non-X11 prefix using packages include the BSD.local.dist mtree file for initialization of /usr/local. I'm still not sure if this is A Good Thing(tm) but I'll see what the users say. It's easily overridden. 3. Standardise on ${PKG_DBDIR} as pointer to /var/db/pkg or local preference.
* Use PKGNAME in the "describe" target (used to generate INDEX) too.asami1995-04-181-2/+2
| | | | Didn't make sense to have two ports with the same name.
* Use PKGNAME instead of DISTNAME in messages. To avoid things likeasami1995-04-181-20/+20
| | | | | | | | | | "Building for WWW" (pops up in two different ports) "Installing for web2c-6.1" (ditto), which aren even't reminiscent of the port's real name. Sorry jmz, please don't go fix the print Makefiles' own messages. We are going to take them out after we do the great bsd.port.mk update anyway.
* "package" now depends on "install", so we can do "make -k package" fromasami1995-04-171-2/+18
| | | | | | | | the top level and have the build-package sequence of each port work together. For the old behavior (i.e, just go ahead and blindly pack everything up, regardless of the contents of work/), there is a new target "repackage".
* "all" now depends on "build", not "extract configure build".asami1995-04-171-2/+2
| | | | | | | | | | Since "build" depends on "configure", which depends on "patch", etc., this shouldn't disrupt any Makefile that doesn't break the dependency chain. The old behavior was very annoying because when I did a "make -k", it would still try to go configure and build even if the extraction failed.
* Yikes...typo (.package/ should have been .packages/).asami1995-04-161-2/+2
|
* Don't pass duplicate pkgdeps to pkg_createjkh1995-04-101-3/+3
|
* Add new -P argument to pkg_create.jkh1995-04-091-2/+2
|
* Add 2 new targets to facilitate some things I'm thinking about.jkh1995-04-091-1/+21
| | | | | | | 1. package-name Simply echos the associated package name for a port (if any). 2. package-depends Shows all package names on which this port depends.
* 1. Fix the first line (should be a proper comment - silly emacs).jkh1995-04-091-3/+4
| | | | | 2. KEYWORDS+= CATEGORIES 3. CATEGORIES+= all (always want to be in "all"!)
* Add support for categorized subdirectories for packages. By default,asami1995-04-091-6/+25
| | | | | | | | | all .tgz files go to /usr/ports/packages/.packages, and a relative symlink is created for every item in CATEGORIES...i.e., if "CATEGORIES = foo bar", then /usr/ports/packages/{foo,bar}/pkgname.tgz both point to /usr/ports/packages/.packages/pkgname.tgz. Suggested by: jkh
* Add USE_X11 for ports which are X11 users but don't use IMAKE.jkh1995-04-041-2/+3
|
* Remove a `.' from the end of the echo linegpalmer1995-04-041-2/+2
| | | | `>> Attempting to fetch from $${site}' as it is misleading
* By default, KEYWORDS is a copy of CATEGORIES.jkh1995-04-011-2/+2
|
* Add default values and document them for CATEGORIES and KEYWORDS.jkh1995-04-011-3/+3
|
* Add support for new CATEGORIES and KEYWORDS fields.jkh1995-04-011-2/+10
|
* Add support for "distributed" patches and a little extra cleanup.asami1995-03-281-13/+89
| | | | | | | | | | | | | | | | | | | | | | New variables: PATCH_SITES: patch equivalent of MASTER_SITES, overridable with . MASTER_SITE_OVERRIDE. PATCHFILES: Additional files to fetch and give to patch before . applying the ones in patches/patch-*. If name ends . with ".gz" or ".Z", it will be piped through zcat first. Plus PATCH_DIST_STRIP and PATCH_DIST_ARGS that serve the same functions as PATCH_STRIP and PATCH_ARGS for patches in patches/patch-*. In the documentation and echo messages, I used the term "distributed patches" and "FreeBSD patches" to refer to ${PATCHFILES} and patches/patch-*. If you can come up with better names, by all means go ahead and fix them. "grep PATCH /usr/ports/*/*/Makefile" reveals seven ports (mule, jless, jtcl, jtk, dgd, less, color_xterm, gee I wonder why I'm the one who implemented this) that can benefit from this. I'm now diving headlong into /usr/ports to fix their Makefiles.
* Added more standard package suport file names. INSTALL for theasami1995-03-271-2/+13
| | | | | | installation script, DEINSTALL for the deinstallation script, and REQ for the requirement script, will be added with appropriate flags to PKG_ARGS if they exist under pkg/.
* Add a misssing `@' from before echo -n "|${MAINTAINER}"gpalmer1995-03-241-3/+3
|
* Add maintainer to the index line.jkh1995-03-231-5/+13
|
* Add new EXTRACT_BEFORE_FLAGS and EXTRACT_AFTER_FLAGS variables to makejkh1995-03-231-5/+15
| | | | complex extraction rules easier.
* Make the fetch message a little more interesting and informative.jkh1995-03-221-2/+2
|
* Add fetch-list command for Rodjkh1995-03-212-39/+63
| | | | | Use ECHO_MSG macro for printing "===>" line things so that I can now turn those OFF when I don't want them.
* Make the describe rule generate more thorough information that's actuallyjkh1995-03-211-8/+10
| | | | | of use to a front-end program. Back out my bogus description of the `index' target! :-)
* Document the index target.jkh1995-03-211-1/+2
|
* Don't do anything if BATCH is specified and the port is interactive forats1995-03-201-1/+3
| | | | | the package target.The port may is not build and the package fails otherwise.
* Change the xmkmf call to a xmkmf -a call. This should be more correct forats1995-03-191-3/+3
| | | | | | all X11R5 and X11R6 ports. This is the way how it should be normally used according the manuals. Only pre-X1R5 ( X11R4, X11R3) ports can't handle it.
* Add support to miss out ``DUDS'' subdirectories. See thread in freebsd-portsgpalmer1995-03-041-10/+20
| | | | for more.
* Back out my previous change. I need to really think about this.jkh1995-03-031-2/+2
|
* A small feature just for my own use.jkh1995-03-031-2/+2
|
* Always go to ${WRKDIR} before extraction. Modify the tar extract commandjkh1995-02-171-3/+6
| | | | | args to take advantage of this. Pointed-out-by: asami
* Make the checksum target not bomb out if there is a mismatch, justgpalmer1995-02-151-2/+1
| | | | | print a warning. A better fix will come along just as soon as I work out what it is.
* Allow arbitrarily named configure script for use w/ HAS_CONFIGURE.hsu1995-02-061-2/+5
|
* Use absolute path to md5 program. It lives in /sbin and people are unlikelyphk1995-02-051-2/+2
| | | | to have $PATH to it.
* Add long-awaited (:) support for sophisticated dependency checking. We nowasami1995-02-041-5/+83
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Start the ball rolling by sticking agpalmer1995-02-021-1/+2
| | | | | | MAINTAINER?= line in here. Idea by: jkh@FreeBSD.ORG
* Make fetch a bit more forgiving of subdirs.jkh1995-01-301-3/+3
|
* Fix bogus tab in makesum target.jkh1995-01-241-2/+1
|
* Set PREFIX in the build target. Suggested by John Fieber.jkh1995-01-241-5/+5
|
* Oops. Fix up the checksum routine - my last commit broke it slightly.gpalmer1995-01-231-20/+20
|
* Put brackets around EXTRACT_CMD, can be several commands hereache1995-01-181-3/+3
|
* Correct a small problem in that when there isn't a checksum for thatgpalmer1995-01-171-4/+11
| | | | | particular file, but there is a files/md5, it reports that it failed the checksum
* Use absolute path for install passed to configureache1995-01-121-3/+3
| | | | to disallow prepending ../ in second level Makefiles
* Typo!asami1995-01-111-3/+3
|
* Add missing ! in front of pipeline for extract commands---otherwiseasami1995-01-111-3/+3
| | | | it would exit on *successful* extraction.
* Catch case where extraction fails. Thanks!jkh1995-01-101-3/+7
|
* Move pre-extract target inside COOKIEache1995-01-071-7/+8
| | | | Add checksum check for extract, if checksum file present
* Sort out dependencies. Now they look like:asami1995-01-051-5/+5
| | | | | | | | | patch: extract configure: depends patch build: configure install: build Does this look ok?
* Typo fix from Ollivier Robert.jkh1995-01-051-3/+3
| | | | Submitted by: ollivier
* Rename check-md5 target to checksum.jkh1995-01-051-3/+3
| | | | Submitted by: gpalmer
* Gary Palmer's patches for checksumming and description.jkh1995-01-051-7/+13
| | | | Submitted by: gpalmer
* Put depends before configure. No reason that I can see for putting it after,jkh1995-01-041-2/+2
| | | | and it breaks mule the way it is now.
* Some of the doc here was less than adequately fleshed-out. Make somejkh1995-01-041-10/+20
| | | | feeble attempt to do so.
* Document describe target.jkh1995-01-041-1/+3
|
* Add describe target support.jkh1995-01-032-2/+15
|
* Preset ac_cv_path_CC="${CC}" before running ./configure,ache1995-01-021-2/+2
| | | | needed for Autoconf 2
* Oops, forget "" for ${CC} and ${CFLAGS}...ache1994-12-281-2/+2
|
* Set proper INSTALL* variables before running ./configureache1994-12-281-2/+5
|
* Use CFLAGS=${CFLAGS} ./configure to avoid picking dumb GNU -g defaultache1994-12-281-2/+2
|
* Use "CC=${CC} ./configure" to avoid usage of debugging 'gcc'ache1994-12-281-2/+2
|
* Put dummy targets for make-md5 & check-md5 inside agpalmer1994-12-181-1/+5
| | | | | NO_EXTRACT ifdef so that tcpblast doesn't muck things up
* bsd.port.mk: missing semicolon addedgpalmer1994-12-182-4/+8
| | | | bsd.port.subdir.mk: added check-md5 as target
* Automatically add gmake to DEPENDS, if USE_GMAKEache1994-12-171-1/+4
|
* Don't use build: ... pre-build, move pre-build insideache1994-12-171-2/+3
| | | | BUILD_COOKIE instead
* patch: pre-patch ... is wrong, move pre-patchache1994-12-141-2/+3
| | | | inside PATCH_COOKIE
* Added '${GMAKE} install.man' when installing with Imake and gmakejmz1994-12-131-1/+4
|
* Early md5-checksumming code. This seems to work fine on my machinegpalmer1994-12-121-1/+32
| | | | but needs more testing on more ports than I have on my box.
* Last gremlin-killer of the day. Typo fixed and missing .endif replaced.gpalmer1994-12-111-2/+3
|
* <Sigh> Got the placing of a .if wrong. Fix it.gpalmer1994-12-111-4/+6
|
* Erk. Damn. A hash perfixing a comment was lost somewhere.gpalmer1994-12-111-2/+2
| | | | Fixed.
* 1) Small tidyupgpalmer1994-12-111-8/+27
| | | | | | | | | | 2) Change INSTALL_MANPAGES to NO_INSTALL_MANPAGES and document it 3) Add a PKGNAME variable to allow the package name not to be dictated by stupid DISTNAMEs 4) Add a PATCH_DEBUG option and a slight change to the default patch system - add --forward to help ensure correct patching
* Change wrong comment: NCFTP_ARGS --> NCFTPFLAGSache1994-11-261-2/+2
|
* Don't use a rm -rf WORKDIR if NO_WRKDIR is defined. You have a good chanceats1994-11-211-1/+3
| | | | | to blow away your current dir, because WRKDIR == CURDIR. This should help tcpblast to not blow away itself in the clean target :-).
* Add reinstall.jkh1994-11-181-1/+5
|
* There seems to be some trouble with install.man working right everywhere.jkh1994-11-171-2/+2
| | | | | Conditionalize it off of INSTALL_MANPAGES until I can figure out just why some X ports seem to like it and others not.
* Whoops! Typo. Correct.jkh1994-11-171-2/+2
|
* I found today that making packages for X11 ports wasn't working.jkh1994-11-171-2/+7
| | | | | | | | | Further investigation showed that prefix was erroneously set to /usr/local for X11 based ports as well, when the assumption was that they'd really go into ${X11BASE} (an /etc/make.conf variable that the user's free to set). Set X11BASE to /usr/X11R6 if the user hasn't already, and assume that the user really wants prefix to point there when the port is XMKMF based.
* Add support for NO_WRKDIR.jkh1994-11-171-1/+7
|
* 2 new concepts that just occurred to me:jkh1994-11-171-1/+14
| | | | | | | | MASTER_SITE_OVERRIDE - If set in the environment, will override everyone's MASTER_SITES settings. Useful if you'd prefer to point to a distfiles repository somewhere closer. MASTER_SITE_FREEBSD - Sets OVERRIDE to be FreeBSD's own master repository.
* If USE_GMAKE is defined, use ${GMAKE} in ${XMKMF} && ${MAKE} Makefilesjmz1994-11-171-1/+5
|
* Make depends a separate target. Now you can select when the dependencyjkh1994-11-151-11/+15
| | | | list is traversed.
* Add patch cookies. This should prevent gratuitous patch re-applicationjkh1994-11-111-9/+24
| | | | attempts.
* For submakes, don't do a `${MAKE} ${MAKEFILE} all' orjkh1994-11-041-5/+8
| | | | | `${MAKE} ${MAKEFILE} install', indirect the target through ALL_TARGET and INSTALL_TARGET now, so they can be easily overridden.
* Add reinstall target for Poul-H. This lets you install again fromjkh1994-11-041-2/+12
| | | | the same build, ignoring the INSTALL_COOKIE.
* This is what I get for implementing suggestions without really thinkingjkh1994-11-021-2/+2
| | | | | | about them.. :-) The patches/* won't work, it needs to be patches/patch-* to avoid catching things like CVS files when working with a checked-out copy of ports! Whoops!
* 2 changes:jkh1994-11-021-9/+16
| | | | | | | | | | | 1. Make build rely on a BUILD_COOKIE now. I'm tired of builds being redone gratuitously while I'm trying to debug a tree build problem. 2. Remove all the literal `touch -f' commands and indirect them through variables. This lets you "leave tracks" in different ways, depending on the medium. Just part 1 of my planned changes to make builds directly off the CD work.
* Make patch rule pick up everything in patchdir alphabetically.jkh1994-11-011-2/+2
| | | | No need to call it `patch-aa' if you can simply call it `aa', etc.
* 1. PREFIX has nothing to do with DESTDIR. Remove it finally.jkh1994-10-231-4/+4
| | | | | 2. Make sure to pass PREFIX to sub-makes when installing. This allows you to install to places like ${PREFIX}/bin in your own install rule.
* Invoke install.man if USE_IMAKE is set.jkh1994-10-221-1/+4
|
* Add ${.MAKEFLAGS} to sub-makes, pointed by Rodache1994-10-151-4/+4
|