summaryrefslogtreecommitdiff
path: root/mk
AgeCommit message (Collapse)AuthorFilesLines
2009-03-08Try to work around the mess called useradd on Linux. On Red Hat derivedjoerg1-13/+30
distributions, useradd will create the home directory by default and there is support for an option to disable that. Other Linux distrubutions either lack the option in login.defs or the support for -M. As workaround look for the option and if it is set, force -M. Tested by Jens Rehsack. Addresses PR 40737.
2009-03-08Describe "postfix-milter" and "sendmail-milter" options.tron1-0/+2
2009-03-08Fix cut and paste error.tron1-2/+1
2009-03-07make update might be called without having the package installed, sojoerg1-2/+6
check for the presence before trying to extract dependencies.
2009-03-07Mention that kde4 option needs a pkgsrc-wip checkout.wiz1-1/+1
2009-03-06in fetch-list, skip packages that have INTERACTIVE_STAGE=fetchtnn1-2/+2
2009-03-05Use pkg_info -r if present and fall back to pkg_delete for pkg_installjoerg1-3/+10
before 20090225. Intermediate versions get an explicit error. The building of the recursive dependency was broken as the new pkg_delete would stop without recursing and the target dependend on that behavior. Reported by David Holland.
2009-03-05Initial definitions for FreeMiNT - also needs patches to pkgtoolsabs3-1/+150
2009-02-23Drop bogus per-architecture part of PACKAGES description.joerg1-2/+2
2009-02-22+suhosin descriptionadrianp1-0/+1
2009-02-22Add cjk and slp options.taca1-0/+2
2009-02-17Fix C&P error. Pointed out by OBATA Akio.joerg1-2/+2
2009-02-15Don't use :Q for the fetch argument lists.joerg1-3/+3
2009-02-15Add MASTER_SITE_NETLIB to list Netlib and its mirrors.asau1-1/+7
Netlib is a collection of mathematical software, papers, and databases.
2009-02-14Don't use += to append to an empty variable. If PASSIVE_FTP is notjoerg1-5/+3
defined, it would still leave the variable with a non-empty value and that would be passed down to the fetch command when running fetch-list.
2009-02-13package-install with DESTDIR should pass down -A as needed to getjoerg1-2/+5
automatic installed handling correct.
2009-02-11+jdbc-mysql{31,5}adrianp1-0/+2
2009-02-11Use pkg_admin for audit processing if pkg_install >= 20090201 isjoerg2-4/+14
installed.
2009-02-10add db2 and tcpwrappersjnemeth1-0/+2
2009-02-10Optionally request passive FTP for wget.joerg1-2/+2
2009-02-10Change the way the fetch process is organised as proposed on tech-pkg:joerg4-32/+50
- Introduce FETCH_USING, which specifies the mechanism to use; possible values are ftp, fetch, curl, wget, manual and custom. - Depend on the correct tool/program if not using manual or custom. - For manual, just use /usr/bin/false to bail out if a distfile is missing. - For custom, FETCH_CMD and related variables are used as before. - Default value is ftp.
2009-02-08Break out of fetch loop if cd to _DISTDIR fails.wiz1-5/+5
From Anon Ymous.
2009-02-06Fix circular dependency detection for the case of non-leading circles.joerg2-10/+15
For the dependency chain A->B->B the old code created: _PKGSRC_DEPS=", B-1.0, A-1.0", which obviously can't match the PKGNAME of B. Skip the _flavor-bootstrap-depends processing if PKG_FAIL_REASON is already set and move the check for circular dependencies right after the block that defines PKGNAME and friends.
2009-02-05Drop tools/bootstrap.mk. It was mostly reundant as the bootstrapjoerg4-132/+9
components are correctly registered as dependencies. Move the remaining two exceptions into the corresponding platform files. XXX Both the strip and mkdir-sh are currently not registered
2009-02-05Don't skip the pax dependency. It has been registered as part of thejoerg1-6/+2
bootstrap for a long time. As it is no longer a bootstrap part, the dependency is required.
2009-02-03Added svg optionadam1-0/+1
2009-02-02Create users with -M. On Linux this gives the same behavior as NetBSD'sjoerg1-9/+3
useradd without -M, e.g. allows creation of users without home directory. Tested on RHEL4. From Jens Rehsack.
2009-02-02Use system tbl if it exists. From Jens Rehsack.joerg1-1/+4
2009-01-29sysutils/memtestplus options were renamed a year ago (memtesplus-iso -> iso,shattered1-2/+2
memtesplus-serialconsole -> serialconsole). Document them. OK by wiz@.
2009-01-25Document the 'avahi' option.jmcneill1-0/+1
2009-01-23Update DLOPEN_REQUIRE_PTHREADS pattern again.obache1-2/+5
Even on NetBSD>=5, need to link pthread if using pthread_create()/join().
2009-01-23Mention to m17nlib, prime, uim-fep and xim options.obache1-0/+4
2009-01-23Fixes DLOPEN_REQUIRE_PTHREADS patterns.obache1-2/+2
NetBSD-3 was lost by previous commit, and NetBSD-5_BETA does not require pthread. (TODO: 4.99.*...)
2009-01-23Added NetBSD>=4 to the list of platforms which need pthreads linked intoobache1-3/+2
the application if it uses dlopen(). This pattern should be changed if confirmed fixed in NetBSD-current.
2009-01-22Do not use GNU m4 shipped with the OS on systems prior to Mac OS 10.5.schwarz1-2/+2
10.4 shipped with gm4 1.4.2, 10.3 came with 1.4. This is not recent enough for some packages (specifically devel/autoconf), so use pkgsrc's gm4 instead. Fixes PR#40329.
2009-01-22Add lang-id (Indonesian) and lang-ko (Korean) used by drupal6-translations.taca1-0/+2
2009-01-21Document xapian-flint-backend and xapian-quartz-backend options, allowingdsainty1-0/+2
rationalisation of backends (and also allows wiring the database to the older database format if desired).
2009-01-20Typo fixadrianp1-2/+2
2009-01-19Add djbdns-cachestats option, show cache hits/misses in stats output.sketch1-0/+1
2009-01-19enable 1.6 for x86_64 too, and make it the default.christos1-3/+4
2009-01-18Add description of gdal, octave, openexr (pfstools) and gsl (pfstmo) options.obache1-0/+4
2009-01-18Correct a typo and fix FTP definition (T is for Transfer).shattered1-2/+2
OK by wiz@.
2009-01-15Fix cut & paste errors. From Jens Rehsack.joerg3-6/+6
2009-01-14While user/group 'games' does not exist by default on Solaris, it willsketch1-10/+9
get created correctly if SETGIDGAME=yes and this avoids ugly errors from check-files.mk
2009-01-14Don't use full path to include, avoidssketch1-5/+5
"<stdin>", line 4: warning: #include of /usr/include/... may be non-portable warning with Sun Studio.
2009-01-12Add enchant option.wiz1-0/+1
2009-01-12- Describe 'catalog-sqlite3' optionshattered1-0/+1
- Delint OK by wiz@.
2009-01-12Fix check-wrkref path.uebayasi1-3/+2
_CHECK_WRKREF_FILELIST_CMD is a command which prints PLIST paths converted to absolute path. _CHECK_WRKREF_FILELIST_CMD can run anywhere, so cd ${DESTDIR} before that is pointless. To access files, _CHECK_WRKREF_FILELIST_CMD's output needs to be s/^/${DESTDIR}/ when destdir is used. Reviewed By: joerg
2009-01-10run ${_ULIMIT_CMD} in build-env targettnn1-3/+3
2009-01-09Further refine AIX support. From Jens Rehsack.joerg3-6/+30