summaryrefslogtreecommitdiff
path: root/x11/gdm
AgeCommit message (Collapse)AuthorFilesLines
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+1
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-05-31Rename option PAM to pam (so all options are lower case). Backwardsdillo1-3/+3
compatibility provided via PKG_OPTIONS_LEGACY_OPTS.
2005-05-02RCD_SCRIPTS_EXAMPLEDIR is no longer customizable.reed1-1/+2
And always is defined as share/examples/rc.d which was the default before. This rc.d scripts are not automatically added to PLISTs now also. So add to each corresponding PLIST as required. This was discussed on tech-pkg in late January and late April. Todo: remove the RCD_SCRIPTS_EXAMPLEDIR uses in MESSAGES and elsewhere and remove the RCD_SCRIPTS_EXAMPLEDIR itself.
2005-04-26update to 2.6.0.9drochner3-7/+9
changes: -bugfix (solaris only appearently) -translation updates
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-22Update to 2.6.0.8:jmmv3-17/+20
- Enhanced a11y gesture listeners so they support XInput events for better a11y support. (Bill Haneman). - Add STRUTS support to gdm2's window manager for better a11y support (Bill Haneman). - Improved the way the user's default PATH is set up by configure so it is set more sanely without redundant PATH's, and is more careful about not putting symlinked X11 directories in the PATH. Now can configure user's default directory via the --with-post-path argument. (Brian Cameron). - New configuration option to disallow visible feedback in password entry. (John Martinsson). - Fix width of "user name entry" to shrink to fit parent widget so text does not run out-of-bounds. (Chookij Vanatham) - Restart slave process if XDMCP chooser is selected from flexi server. (Leena Gunda) - Make default face obey the MaxIconWidth and MaxIconHeight configuration settings. (Diego Gonzalez) - gdm2 slave now sources /etc/environment if it exists. (Vicent Berger) - Correct gdmsetup's tooltip to conform to GNOME HIG. (Sebastien Bacher) - Use ngettext for translation. (Christian Rose) - Set default font size to "Sans 12". (Erwann Chenede) - Set name of password entry for more friendly a11y (Erwann Chenede) - Mark "Remove Theme" for translation. (Balamurali Viswanathan) - Remove <span> tags from language display since they were causing formatting issues for some users. (Glynn Foster) - Ensure LC_MESSAGES is set so the user's default language can be displayed (Hidetoshi Tajima). - Specify font for username/password entry for gdm2 supplied themes. (Alexander Kirillov) - Add Kinyarwanda and Armenian to language list. (Steve Murphy and petrosyan@gmail.com) - Correct IPv6 logic so that it supports an IPv4 XDMCP request when IPv6 is enabled. Fixed configure help for --enable-ipv6. (Brian Cameron) - Set more sane Reboot/Halt/Shutdown commands on Solaris. (Brian Cameron). - Correct the usage of IFS in the Init/PreSession/PostSession/Xsession scripts so it works on Solaris. (Leena Gunda) - Support logindevperm on Solaris for automatic/timed login. (Brian Cameron) - Swap Alt and Meta keys on Solaris. (Leena Gunda) - Correct IPv6 identification for Solaris. (Leena Gunda) - Cleanup. (Mark McLoughlin and Kjartan Marass)
2005-02-23Add RMD160 checksums to the SHA1 ones.wiz1-1/+4
2005-02-03Update to 2.6.0.7.jmmv5-35/+42
- Convert to use bsd.pkg.options.mk. - Fix PAM handling; the gdmaskpass binary seems to be only available when building with linux-pam, which resulted in broken PLISTs before. Changes in this version: - Now using CVS head of vicious-extensions, left out of previous release due to schedule freeze. - Do not init the wm twice if gdm_wm_init is called twice. (George) - Always destroy dialog widget in greeter to fix non-fatal error dialogs from hanging around. (George) - Leak corrected in daemon/verify-pam.c. (George) - Corrected g_strconcat call in gui/gdmsetup.c. (meissner@suse.de) - Added Afrikaans, Northern Sotho, South African English, and Zulu to language translations. (Dwayne Baily) - Updated build files so it can be built and distributed with new buildtools than 1.4. makedist fixes, etc.
2005-01-14Create a pam.buildlink3.mk file that is used by PAM-using packages.jlam1-2/+2
It includes the correct buildlink3.mk file from either Linux-PAM (security/PAM) or OpenPAM (security/openpam) and eventually will support solaris-pam. pam.buildlink3.mk will: * set PAMBASE to the base directory of the PAM files; * set PAM_TYPE to the PAM implementation used. There are two variables that can be used to tweak the selection of the PAM implementation: PAM_DEFAULT is a user-settable variable whose value is the default PAM implementation to use. PAM_ACCEPTED is a package-settable list of PAM implementations that may be used by the package. Modify most packages that include PAM/buildlink3.mk to include pam.buildlink3.mk instead.
2004-12-28Update to 2.6.0.6:jmmv3-15/+15
- Allow flexi x servers to be launched from the fifo script with "echo FLEXI_XSERVER > <ServAuthDir>/.gdmfifo" (Tuukka Hastrup, me) - Autologin works on the first handled display not just first local display - There is a global cookie for the SUP protocol in <ServAuthDir>/.cookie - Xnest is set up properly on Solaris (Brian) - Fixup comments in the config file (Brian, me) - Fix language selection (Ray Strode) - Set the GDM_XSERVER_LOCATION env var on the session so that the user can find out what they can do. - Fix logindevperm stuff to allow a11y access to sound (Brian Cameron) - Solaris build fixes for Solaris 9 and earlier (Brian Cameron) - Translation updates (Kjartan Maraas, Christophe Merlet, Changwoo Ryu, Laszlo Dvornik, Adam Weinberger, Zygimantas Berucka, Alessio Frusciante, Francesco Marletta)
2004-12-28The default location of the pkgsrc-installed rc.d scripts is nowreed1-2/+2
under share/examples/rc.d. The variable name already was named RCD_SCRIPTS_EXAMPLEDIR. This is from ideas from Greg Woods and others. Also bumped PKGREVISION for all packages using RCD_SCRIPTS mechanism (as requested by wiz).
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-1/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-3/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-09-21Update to 2.6.0.5. This version corresponds to GNOME 2.8.0.jmmv3-6/+7
- Doc update (Brian Cameron) - Solaris fix (don't call logindevperm if not on the console) (Brian Cameron) - Translation updates (Akagic Amila, Jesus Bravo Alvarez, Theppitak Karoonboonyanan, Laszlo Dvornik, Supranee Thirawatthanasuk, Hendrik Richter, Dafydd Harries, Francisco Javier F. Serrador, Tommi Vainikainen, David Lodge, Marius Andreiana, Misu Moldovan, Baris Cicek, Vincent van Adrighem, Tino Meinen, Nikos Charonitakis, Arafat Medini, Asmund Skjaeveland, Hasbullah Bin Pit, Ryoichi INAGAKI, Changwoo Ryu, Jordi Mallach, Danilo Segan, Laurent Dhima, Maxim Dziumanenko, Christian Rose)
2004-09-01Update to 2.6.0.4:jmmv4-80/+81
- Allow not checking directory owners with CheckDirOwner key, (Andreas Schubert) - FreeBSD support for VTAllocation stuff (Alexander Nedousukov) - Add de_AT, de_CH, fr_BE, fr_CH, hy_AM to language list (#148349, #139454) - Add more native versions of language names and fix up existing ones, #148373, #148486, 148356, #148350, #88777, #150293 - Add support for Solaris logindevperm and usiting (Brian Cameron) - Fix some strings, fixes #144076, #144077, #147800 - On sun we automatically make the default config add -nobanner to the X server flags (Arvind) - Fix doubleclicking on the user browser in the standard greeter - Fix #144007 where bad .profile could screw up a session start - Fix #148042 by making GETTEXT_PACKAGE just gdm - Fix #147940 by properly checking if shutdown/reboot/suspend commands exist in the graphical greeter - Fix #143707 by using Exclude key for the user dropdown lists in gdmsetup - Fix some compiler warnings for new gcc - .dmrc is created with umask 077 for maximum anality - Translation updates (Kjartan Maraas, Laszlo Dvornik, Laurent Dhima, Martin Willemoes Hansen, Marie Lund, Metin Amiroff, Francisco Javier F. Serrador, Duarte Loreto, Tommi Vainikainen, Leonid Kanter, Changwoo Ryu, Funda Wang, Artur Flinta, GNOME PL Team, Miloslav Trmac, Adam Weinberger, Estevao Samuel Procopio, Tommi Vainikainen, Danilo Segan, Guntupalli Karunakar, Lucas Vieites, Christian Neumair, Nikos Charonitakis, Gustavo Maciel Dias Vieira, Afonso Celso Medina, Sebastien Bacher, Ole Laursen, Ivan Stojmirov, Andras Timar)
2004-07-05Update to 2.6.0.3nb1:jmmv4-36/+16
- Use VARBASE instead of hardcoding /var. - Patch gdm.conf.in directly from the Makefile using subst.mk, instead of doing it from a patch _and_ the Makefile. - Do not register the rc.d script in the PLIST (handled automatically). - Under NetBSD (and OpenBSD), use /sbin/shutdown to reboot and halt the computer, instead of reboot and poweroff. The former runs the rc.d scripts properly while the other two don't.
2004-07-05Instead of patching the configure script, just use an argument it providesjmmv3-24/+10
to disable PAM support (in fact, to select the appropiate authentication scheme). No functional changes.
2004-06-20Update to 2.6.0.3:jmmv6-87/+99
- Fix cpu/bandwidth eating on idle displays by not blinking the cursor after 20 seconds of inactivity on anything other then :0, fixes #135764 - In the face greeter cut after a comma in the gecos field if there are at least two commas since then it's probably some login arguments and not the name of the user, "fixes" #142274 - Apply patch to make the language dialog at most 600 pixels so that it doesn't look too crappy on large displays, #142175 (Leonard Michlmayr) - Fix last_x_failed possible infinite loop on slow machines, #141497 - Fix multihead wanker code in the *mouselistener modules, this confused the moronic bonobo DISPLAY logic - Don't use certain languages on the console. Controlled by the daemon/ConsoleCannotHandle config key, but that's a hack. Oh well, better then displaying garbage in cjk and similar. "fixes" #135387 - Ensure proper ~/.ICEauthority permissions to fix broken cases such as gnome-session vs. suid root apps that create root owned ~/.ICEauthority, "fixes" #137345 - We no longer use `which' command which is horribly broken on some horribly broken systems and use a private shell version, #133245 (Brian Cameron, me) - Solaris fixes, #137600 (build), #133245 (chown arguments) (Brian Cameron, Ivan Noris) - Support system-config-display as X setup for FC2 - Further shell quoting paranoia in gdmsetup - Many minor fixes - Add some new new icons (James M. Cape) - Translation updates (Francisco Javier F. Serrador, Alexander Shopov, Rostislav Raykov, Dinesh Nadarajah, Asmund Skjaeveland)
2004-05-17darwin build fixesdanw4-8/+169
2004-05-08Forgot to enable IPv6 if USE_INET6 = [Yy][Ee][Ss].xtraeme1-1/+7
2004-05-08Update x11/gdm to 2.6.0.2.xtraeme3-7/+12
Changes: 2.6.0.2 stuff: - Fix PAM braindamage in #119853 and #126984 (Frederic Crozat, me) - Fix the flexiserver protocol (gdmflexiserver should no longer hang) - Disable IPv6 by default, it's still kind of problematic, you have to explicitly enable it now with --enable-ipv6=yes - Fix some IPv6 issues, #133246 - Fix message weirdness in the greeters, #123958 (Frederic Crozat, me) - Set font correctly on theming, #125070 (Muktha, me) - Translation updates (John C Barstow, Vincent van Adrighem, Christophe Merlet, Changwoo Ryu) 2.6.0.1 stuff: - Also ensure that /tmp/.X11-unix exists as well as /tmp/.ICE-unix, and do this in a way to avoid self races - Main daemon now ignores SIGPIPE which it can get which would cause a crash (Jerry Wall) - Fix a file descriptor leak when closing slaves (Jerry Wall) - Fixed IPv6 authorization setting in .Xauthority (Vijaykumar Patwari) - Some typos fixed - Translation updates (Guntupalli Karunakar, Christian Rose, Gareth Owen, Andras Timar, Gujarati Team, Christophe Merlet, Inaki Larranaga, Changwoo Ryu, Samuel Jon Gunnarsson, Helgi, Pormar Porbjornsson, Zuza Software Foundation, Ole Laursen, Jaswinder Singh Phulewala, Asmund Skjaeveland, Robert Sedak, Takeshi Aihana, Mugurel Tudor, Misu Moldovan, Abel Cheung, Kevin Kee, Baris Cicek, Telsa Gwynne, Sayamindu Dasgupta, Indranil Dasgupta, Francisco Javier F. Serrador, Arafat Medini, Indictrans team, Leonid Kanter, Dafydd Harries, Alession Frusciante, Francesco Marletta)
2004-04-25Finish conversion to buildlink3.snj1-2/+2
2004-04-23mk/bsd.pkg.install.mk now automatically registersreed1-2/+1
the RCD_SCRIPTS rc.d script(s) to the PLIST. This GENERATE_PLIST idea is part of Greg A. Woods' PR #22954. This helps when the RC_SCRIPTS are installed to a different ${RCD_SCRIPTS_EXAMPLEDIR}. (Later, the default RCD_SCRIPTS_EXAMPLEDIR will be changed to be more clear that they are the examples.) These patches also remove the etc/rc.d/ scripts from PLISTs (of packages that use RCD_SCRIPTS). (This also removes now unused references from openssh* makefiles. Note that qmail package has not been changed yet.) I have been doing automatic PLIST registration for RC_SCRIPTS for over a year. Not all of these packages have been tested, but many have been tested and used. Somethings maybe to do: - a few packages still manually install the rc.d scripts to hard-coded etc/rc.d. These need to be fixed. - maybe remove from mk/${OPSYS}.pkg.dist mtree specifications too.
2004-04-19Bump PKGREVISION due to libcroco's update (major version bump in library name).jmmv1-2/+2
2004-04-14Make use of the new USE_DIRS variable, instead of directly depending on thejmmv1-2/+2
*-dirs packages.
2004-04-02Explicitly start the X server in the fifth virtual terminal (vt05) when wejmmv3-5/+10
are running under NetBSD (I guess other OSes don't need the fix, or need different defaults). This avoids the X server starting in the first virtual console, together with getty, causing annoying keyboard problems. Bump PKGREVISION to 1. Closes PR pkg/19434.
2004-04-01Hmm, revert previous... looks like this is the right name.xtraeme1-2/+2
2004-04-01Fix PKGNAME, this should be 2.6.0, not 2.6.0.0! hehxtraeme1-2/+2
2004-04-01Update to 2.6.0.0:jmmv6-141/+103
2.6.0.0 stuff: - DisplayLastLogin defaults to false since '/usr/bin/last' is stupidly unlocalized - Add translated (de, es, fr, it, ja, ko, sv, zh_CN, zh_HK and zh_TW) documentation (Glynn, Sun translation team) - Translation updates (Christophe Merlet, Christian Neumair, Maxim Dziumanenko, Telsa Gwynne, Stanislav Visnovsky, Gustavo Maciel Dias Vieira, Alastair McKinstry, Alexander Winston, Sanlig Badral, Vincent van Adrighem, Michiel Sikkes, Funda Wang, Ales Nyakhaychyk, Metin Amiroff, Takeshi AIHANA, Alessio Frusciante, Francesco Marletta) 2.5.90.2 stuff: - Support for GTK+ theming (accessibility) and ability to change current theme in the standard login, fixes #125070 (Muktha, me) - Hindi was written wrong in the language menu fixes #134372 (Guntupalli Karunakar) - When restarting a server by whacking it and starting it again, wait for 1 sec to allow things to "settle", plus be a lot milder on X server's lock files / sockets to avoid whacking ones currently in use - Make language dialog in the graphical greeter come up quicker and init the languages lazily - Fix #135232 by using code@mod for the translation matrix (me), and added Serbian variants there (Danilo Segan) - Fix #135053 by adding canadian english (Adam Weinberger, Danilo Segan) - Fix sourcing of environment on AIX, #135401 (Vincent Berger) - Fix displaying of ~/.xsession-errors file - Attempt to handle out of user diskspace more gracefully by whacking old .xsession-errors in case we fail. - Translation updates (Nikos Charonitakis, Jordi Mallach, Funda Wang, Tommi Vainikainen, Kostas Papadimas, Kjartan Maraas, Miloslav Trmac, Laurent Dhima, Zygimantas Berucka, Christian Rose, Changwoo Ryu, Yukihiro Nakai, Duarte Loreto, Christophe Merlet, Francisco Javier F. Serrador, Artur Flinta, Alastair McKinstry, Guntupalli Karunakar, Takeshi AIHANA, Paisa Seeluangsawat, Surichat Sumrit, Supranee Thirawatthanasuk, Chanchai Junlouchai, Adam Weinberger, Christian Neumair, Hasbullah Bin Pit, Pauli Virtanen, Ole Laursen, Asmund Skjaeveland, Metin Amiroff, Vincent van Adrighem, Tino Meinen, GNOME PL Team) 2.5.90.1 stuff: - Login field was not clearned when x server / slave crashed (#131389) - Change the 12 hour format to be less confusing (#133189) - Re-fix the aix ADMCHG bug #123766 (Vincent Berger) - keymouselistener fixes (Brian Cameron) - Compilation fixes #131042, #130963 - Build fixes (Tomasz Kloczko) - Other fixes and cleanups (among others #133181 by Mariano Suarez-Alvarez) - Translation update (Andras Timar, Francisco Javier F. Serrador, Lucas Vieites, Maxim Dziumanenko, Robert Sedak, Metin Amiroff, Laurent Dhima, Changwoo Ryu, Kjartan Maraas, Miloslav Trmac, Asmund Skjaeveland, Sanlig Badral, Zygimantas Berucka, Kostas Papadimas, Christian Neumair, Artur Flinta, GNOME PL Team, Gustavo Maciel Dias Vieira, Joao Emanuel, Danilo Segan, Vincent van Adrighem, Tino Meinen, Fernando Herrera, Arafat Medini) 2.5.90.0 stuff: - Add accessibility setting to gdmsetup and allow setting an arbitrary sound for the "ready for login" sound. (#125487) - gdmflexiserver now lists running sessions if there are some and allow the users to easily switch. (#127038) - Display last login when the user enters their name (can be turned off) (#128940) - Inactive flexiservers are reaped by default after 5 minutes. - Accessibility modules set the busy cursor for 2 secs to show that an action was started (#125153) - Doubleclicking on a language in graphical greeter selects it (Kirk Mitchener, #123199) - Optional info message on login (sort of like motd) (Anton Altaparmakov, #125219) - New SUP (socket protocol) commands to request shutdown/reboot after session ends or after all users log out. Also new SUP commands for querying and setting the VT on Linux. - A --wait-for-go option that will start one X server and then wait until GO is sent through the fifo before going further. - IPv6 support (Archana Shah) - Built in sessions are out of /etc/X11/dm/Sessions and moved to <datadir>/gdm/BuiltInSessions - Fix chooser commonication vs. accessibility stuff (#125064) - Fix RetryDelay and make it default to 1 and not 3 (Leena Gunda, me, #128507) - On AIX without PAM, password expiration is done (Vincent Berger, me, #123766) - On crypt/shadow the double login warning was too early, now done after authentication as in the PAM setup. - Clients are now forcibly whacked at session stop, should "fix" #126071 - Use GtkFileChooser in gdmsetup (Jan Arne Petersen, #128668) - Paranoia: Check owenership of the socket before using it - Fix xdmcp session counting (#126465) - Warn the user when they want to set root as autologin (RH #97716) - StandardXServer can now have arguments - Default color is now #76848F and the PreSession script tries to use the default gdm color to fix #128220 - Fix assert failure when starting Xnest (#127780) - Indent the chooser and config toggles in the setup (#120639) - Lots of cleanup and fixes and adding to the general paranoia in the code. (me, Ray Strode, Brian Cameron) - Translation updates (Miloslav Trmac, Andras Timar, David O'Callaghan, Paul Duffy, Danilo Segan, Vincent van Adrighem, Kostas Papadimas, Jordi Mallach, Ole Laursen, Dmitry G. Mastrukov, Russian team, Sanlig Badral, Francisco Javier F. Serrador, Lucas Vieites, Laurent Dhima, Asmund Skjaeveland, Artur Flinta, Duarte Loreto, Robert Sedak, Christophe Merlet, Christian Neumair, Zygimantas Berucka)
2004-03-26PKGREVISION bump after openssl-security-fix-update to 0.9.6m.wiz1-2/+2
Buildlink files: RECOMMENDED version changed to current version.
2004-03-10Let this package download Daemon.* from MASTER_SITE_LOCAL. Noted byminskim2-4/+12
Karl Hammerschmidt on tech-pkg@.
2004-03-08Handle some shared directories by depending on (or updating dependancies tojmmv1-2/+3
the latest versions) xdg-dirs, xdg-x11-dirs or gnome*-dirs. Bump PKGREVISION.
2004-03-07Bump PKGREVISION due to a fix in scrollkeeper's handling of its documentationjmmv1-2/+2
database.
2004-02-14LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globsjlam1-2/+1
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that are automatically handled by the default setting in bsd.pkg.mk.
2004-02-11bl3ifyxtraeme1-14/+14
2004-02-09Bump PKGREVISION due to gnome-vfs2 update (fam readded as a dependancy).jmmv1-2/+2
2004-01-25Requires at least libart-2.3.11.rh1-1/+2
2004-01-23Bump PKGREVISION due to xmlcatmgr update to 2.0beta1. I know; this is a PITA.jmmv1-2/+2
This shouldn't be needed if we had non-recursive dependancies *sigh*.
2004-01-22Bump PKGREVISION due to librsvg2 and swfdec updates.jmmv1-2/+2
2004-01-22Fix indentation of a line.jmmv1-2/+2
2004-01-22Simplify patches a lot (specially those touching configure) and also cleanupjmmv5-7462/+46
the Makefile a bit. No functional changes.
2004-01-22- Create /var/gdm and /var/log/gdm directories during installation. Thesejmmv3-26/+23
are *REQUIRED* (in fact, only the former) to get gdm working. - Manually set 'procname' in the rc.d script so that 'gdm stop' works. - Allow the rc.d script to work w/o rc.subr. - Use PAM's buildlink2.mk file instead of a simple DEPENDS. - Remove useless stuff from PLIST. - Simplify Makefile a bit. - As a result, bump PKGREVISION to 1.
2004-01-20Finishing previous commit.xtraeme2-19/+102
2004-01-20Update gdm to 2.4.4.7 (Fully GNOME 2, gnome v1 libraries are not requiredxtraeme18-1307/+7798
anymore). Update provided by Min Sik Kim via pkgsrc-wip, with minimal changes by me. Changes: 2.4.4.7 stuff: - Fix build problem caused by intltool (fixes #130234) - Translation update (Zygimantas Berucka) 2.4.4.6 stuff: - Fixes xdmcp session counting (fixes #126465) - The programs that want to talk to gdm check ownership of /tmp/.gdm_socket for added paranoia - Fix assert failure when starting Xnest (fixes #127780) - Time for the fail delay is in microseconds (Leena Gunda, fixes #128507) - Translation updates (Maxim Dziumanenko, Dmitry G. Mastrukov, Russian team, Andras Timar, Sanlig Badral, Paul Duffy, David O'Callaghan, Jordi Mallach, Jordi Mas, Guntupalli Karunakar, Andras Timar) 2.4.4.5 stuff: - Brown paper security bag: ~/.Xauthority could be left readable after logout - gecos info (face browser user name) didn't get through if non-utf8 (Frederic Crozat) (fixes mandrake #5309) - Translation updates (another brown paper bag, these went in over the last month) (Kjartan Maraas, Andras Timar, Danilo Segan, Ales Nyakhaychyk, Asmund Skjaeveland, Gustavo Maciel Dias Vieira, Augusta Marques da Silva, Richard Allen) And more... please review NEWS file to see a full list of changes.
2004-01-03Bump package revisions for tiff update.reed1-2/+2
Tiff is backward compatible, but was broken on amd64 platform so this makes sure new tiff is used.
2003-08-30Add definitions for DEINSTALL_EXTRA_TMPL and INSTALL_EXTRA_TMPL ifjlam1-1/+5
USE_PKGINSTALL is "YES". bsd.pkg.install.mk will no longer automatically pick up a INSTALL/DEINSTALL script in the package directory and assume that you want it for the corresponding *_EXTRA_TMPL variable.
2003-08-30Prepare for pkgviews by making sure that passing VIEW-INSTALL orjlam1-2/+2
VIEW-DEINSTALL to the INSTALL/DEINSTALL scripts don't cause errors.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-07-13PKGREVISION bump for libiconv update.wiz1-2/+2
2003-05-06Drop trailing whitespace. Ok'ed by wiz.jmmv1-1/+1