summaryrefslogtreecommitdiff
path: root/mk/dirs.mk
AgeCommit message (Collapse)AuthorFilesLines
2007-12-12Add support for kde4 (currently in wip) so that packages in wip can usemarkd1-1/+8
"USE_DIRS+= kde4-1.0"
2007-08-23Remove remaining parts of misc/xorg-dirs usage.joerg1-8/+1
2007-01-26Teach USE_DIRS about kde3.markd1-1/+8
2007-01-08Revert, the location of xdg-x11 is hardwired in other places.joerg1-6/+2
2007-01-08Always use xdg-dirs for modular Xorg, xdg-x11-dirs would just redirectjoerg1-2/+6
anyway.
2006-09-27Remove XFree86.joerg1-7/+1
2006-04-06Support texmf-dirs.minskim1-1/+8
2004-12-24Enable theme-dirs.jmmv1-1/+8
2004-08-07Fix some comparisson strings to handle XFree86/xorg dirs.mk files properly,xtraeme1-4/+5
PR pkg/26576: Kouichirou Hiratsuka.
2004-07-29Depend on xorg-dirs where appropiate, as was done for XFree86 by jmmv@.xtraeme1-1/+8
2004-04-14Add support for the XFree86-dirs package in mk/dirs.mk, by modifying it tojmmv1-1/+8
work properly with it. Agreed with xtraeme@.
2004-04-14Drop the disctinction of xdg and xdg-x11 from USE_DIRS POV. We can choosejmmv1-3/+3
which one is required in an automatic way by checking USE_X11BASE. This simplifies things and avoids possible problems in the future due to confusion.
2004-04-14Rework the way to use the -dirs packages (ATM, xdg-dirs, xdg-x11-dirs,jmmv1-0/+47
gnome1-dirs and gnome2-dirs): - Introduce a global USE_DIRS variable, which takes pairs of names and versions. For example, an xdg-1.1 value will request the use of the xdg-dirs package, at least version 1.1. This variable must always be appended to. If there are duplicates with different versions, the one with the higher number will be picked up. - Introduce the mk/dirs.mk file, which is automatically included by bsd.pkg.mk when USE_DIRS is not empty. It parses the variable's value and includes the required dirs.mk files, present in each -dirs package. - For each -dirs package, add a dirs.mk file that defines a variable holding the list of directories provided by it, adds a dependency on that package, and modifies the PRINT_PLIST_AWK variable to output comments for the directories handled by it. - Drop some Makefile.common files that only make things difficult and more confusing now (in favour of the new dirs.mk files). The only thing to worry about is to keep version numbers consistent across xdg-* and gnome*-* packages, but that will be easier to handle. The main reason for this change is to be able to modify PRINT_PLIST_AWK in a clean way, but I hope this will improve clarity too. Also, this simplifies the addition of future -dirs packages (if needed) in a consistent way.