summaryrefslogtreecommitdiff
path: root/meta-pkgs/xorg
AgeCommit message (Collapse)AuthorFilesLines
2005-10-05Define FileManSuffix and FileManDir (just like already donereed1-1/+3
for MiscMan, DriverMan). This is to fix ongoing problem where I find manpages installed to 5x instead of 5 and PLIST is wrong so won't package. (I saw this on Linux and I tested this on Linux and NetBSD.)
2005-10-05Just add a note: When updating the version be sure to regeneratereed1-1/+3
checksums for each xorg package with distinfo files.
2005-08-29Depend on xorg-docs.reed1-2/+3
Bump PKGREVISION.
2005-07-15Drop distinction between PKGSRC_USE_TOOLS and USE_TOOLS by makingjlam1-2/+2
PKGSRC_USE_TOOLS go away. There is now only a single USE_TOOLS variable that specifies all of the tools we need to build/run the package.
2005-05-23shut up pkglint.xtraeme1-2/+2
2005-05-23Removed trailing white-space.rillig1-2/+2
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-05-16Note that tar is required by this package.jlam1-1/+2
2005-04-15Simplify comparison.hira1-3/+3
2005-04-15Add PLIST_SUBST for the DGA extension.hira1-1/+10
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-04-07Add the missing directory to the extract list. Problem reportedhira1-2/+2
by Todd Willey in private e-mail.
2005-04-03Added defined() guards for the variables XORG_PLIST_ENTRY and XEXTRACTS torillig1-3/+3
avoid Makefile parse errors. Reviewed by kristerw.
2005-03-30Don't extract unnecessary part for build. OK'd by xtraeme@.hira1-1/+16
2005-03-30Unify PLIST. OK'd by xtraeme@.hira1-1/+8
2005-03-22Added support for Darwin/MacOSXadam2-23/+47
2005-03-19Fix build on NetBSD 3.hira1-2/+3
2005-03-01Update xorg to 6.8.2.xtraeme1-2/+3
Changes: * Render implementation fixes * Updated x86emu and resynced with upstream at Scitech * Updated SiS driver * Updated Nvidia driver (opensource version) * Render acceleration for ATI's R100 and R200-series cards * Substantial speedups in the software implementation of the render extensions when compiled with gcc 3.4 on the i386 architecture. * Infrastructure for rotation support in drivers * New Trapezoid specification for the Render extension o Respecify Render to include only 'normal' traps o Allow backward compatibility but internally covert to new format * Software mouse cursor is now based on the Damage extension * A new keyboard driver is enabled by default. The old driver is disabled unless explicitly compiled in by defining the macro |USE_DEPRECATED_KEYBOARD_DRIVER|. * All extensions (except Xserver-specific extensions "DMX" and "XpExtension")can now be enabled/disabled from the configuration file and from the command line. * Mac OS X updates: o Support dynamic screen configuration changes in rootless mode o Added option to always use Mac command key equivalents o Interpret scroll wheel mouse events correctly when shift is held down o Added trivial Xinput support o Fixed launch of X clients from Finder with a space in their path o Fixed some GLX rendering problems on Mac OS X 10.2 and earlier * Updated xterm version
2005-02-09Apply patch from Jeremy C. Reed to define common values for thextraeme1-1/+5
manual pages on Linux. Also use unexec ${RMDIR} in a directory.
2005-02-09Change Linux manual definitions to:xtraeme1-12/+15
KERNMAN_SUFFIX= 4 FILEMAN_SUFFIX= 5 MISCMAN_SUFFIX= 7 To fix the xorg-server installation. Update MASTER_SITE_XORG with new mirrors.
2005-01-31Always copy the file DragonFly.cf unconditionally into xc/config/cf,xtraeme1-6/+3
otherwise the post-extract target will fail. This closes PR pkg/29169 and pkg/29135, thanks.
2005-01-25Apply patches from Todd Willey for DragonFlyBSD, this closes PR pkg/29042.xtraeme1-2/+4
Thank you!
2005-01-24Make drivers selectable with options.mk. By default, all of the drivershira1-1/+2
which are supported by the platform are built. OK'd by xtraeme@.
2004-12-27Finish my previous commit and unbreak xorg-*:xtraeme1-1/+16
* Move the subst macros for threadlib.h from xorg-libs to xorg/Makefile.common. * SUBST_CLASSES should be appended. Thanks to Manuel Stuehn <manuel.stuehn@student.uni-siegen.de> for the email showing me the problems.
2004-11-05Fix CONF_FILES in xorg-clients, the 'xdm' subdir already was set byxtraeme1-2/+2
EGDIR! (hi reed!)
2004-11-01Make this build/work on DragonFlyBSD. Patches were submitted byxtraeme1-5/+28
Todd Willey via tech-pkg@.
2004-10-20Make xdm use configs from under PKG_SYSCONFDIR.reed1-1/+4
Some ideas came from NetBSD's XFree86 customizations. Use USE_PKGINSTALL and CONF_FILES for xorg-clients. Installs xdm configs (and shell scripts) to examples directory. Create OWN_DIRS for the authDir. PLIST changes are for chooser is now in bin directory. And pixmaps moved to include/X11/pixmaps directory. xdm configs are no longer in lib/X11/xdm (so they are no longer lost on reinstall). (Anyone want to do twm and other configs?)
2004-09-22Master site correctedadam1-2/+2
2004-09-21Update X.org packages to 6.8.1.xtraeme2-10/+7
To see the changes about this release, please review the "RELNOTES" file, which is available via www or in the distribution tarballs. These packages were tested on: * NetBSD 2.0/-current * Bluewall GNU/Linux * Slackware 10 GNU/Linux I'm currently testing them on FreeBSD 5.3BETA4.
2004-08-27Replace RPATH_FLAG with LINKER_RPATH_FLAG and COMPILER_RPATH_FLAG,jlam1-5/+4
which are the full option names used to set rpath directives for the linker and the compiler, respectively. In places were we are invoking the linker, use "${LINKER_RPATH_FLAG} <path>", where the space is inserted in case the flag is a word, e.g. -rpath. The default values of *_RPATH_FLAG are set by the compiler/*.mk files, depending on the compiler that you use. They may be overridden on a ${OPSYS}-specific basis by setting _OPSYS_LINKER_RPATH_FLAG and _OPSYS_COMPILER_RPATH_FLAG, respectively. Garbage-collect _OPSYS_RPATH_NAME and _COMPILER_LD_FLAG.
2004-08-16Use PKG_SKIP_REASON so that bulk builds reports the packages askristerw1-2/+2
"unavailable" instead of "broken".
2004-08-14Add substitutions for @_COMPILER_LD_FLAG@ and @RPATH_FLAG@ missedrecht1-1/+3
in my previous commit. Noted by FUKAUMI Naoki on tech-pkg@.
2004-07-30Define CHECK_X11_TYPE, which is needed to be sure that all packagesxtraeme1-1/+3
will be installed into the proper location, otherwise X11ROOT_PREFIX might be empty!
2004-07-30Add a new variable to specify the installation prefix forxtraeme1-3/+2
X11 packages (currently XFree86 and xorg), X11ROOT_PREFIX. Defaults: xorg: X11ROOT_PREFIX = xorg. XFree86: X11ROOT_PREFIX = XFree86. Otherwise it's undefined. With this modification we don't have to specify X11BASE anymore, because it's assigned automatically via bsd.pkg.defaults.mk. If you want to change the defaults, specify X11ROOT_PREFIX in mk.conf. Update Packages.txt now that we don't need X11BASE.
2004-07-29Minor nits.xtraeme1-5/+3
2004-07-29Depend on xorg-dirs where appropiate, as was done for XFree86 by jmmv@.xtraeme1-1/+2
2004-07-29xorg packages now will be installed into ${PREFIX}/xorg by default,xtraeme1-3/+2
so we don't have to conflict between XFree86 and xorg. Suggested by grant@.
2004-07-29Initial import of xorg-6.7.0.xtraeme4-0/+278
This is the X.org meta package, for installing the entire X11 suite.