summaryrefslogtreecommitdiff
path: root/x11/libxklavier (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-04-06Remove # $FreeBSD$ from Makefiles.Mathieu Arnold1-1/+0
2019-11-07Add USES=xorg USES=gl, ports categories xNiclas Zeising1-1/+1
Add USES=xorg and USES=gl to ports in categories starting with 'x' While here, try to sprinkle other USES (mostly gnome and sdl) as needed. Notes: svn path=/head/; revision=517000
2016-04-01Remove ${PORTSDIR}/ from dependencies, categories v, w, x, y, and z.Mathieu Arnold1-3/+3
With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412351
2016-04-01Fixup some whitespace at the beginning of lines problems.Mathieu Arnold1-1/+1
With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412342
2015-11-18When LANG is set to ru_RU.UTF-8 for example xfce4-keyboard-settings wouldKoop Mast3-0/+138
segfault. This was due to libxklavier passing invalid UTF-8 strings to a few glib functions which require a UTF-8 string. Add code to libxklavier to pass correct UTF-8 string to glib. Submitted by: rum1cro@yandex.ru Notes: svn path=/head/; revision=401888
2015-01-15Update libxklavier to 5.3.Koop Mast3-6/+4
Obtained from: gnome dev repo Notes: svn path=/head/; revision=377077
2014-11-19The FreeBSD GNOME team proudly presents GNOME 3.14 and Cinnamon 2.2.Koop Mast3-25/+19
Gnome 3.14.1 and Cinnamon 2.2.16 are supported on FreeBSD 9.3-RELEASE and up. This commit removes the old GNOME 2 desktop, bindings and some ports that can't be compiled. A few ports where updated to more recent versions to allow them to compile with this update. Apart from updating ports to newer versions GDM is more integrated with gnome-shell now, and handles several things for the GNOME desktop such as screen locking. If you want to use GNOME 3 via startx, you will have to add your own lock screen/screensaver. For example xscreensaver can be used for sessions started without GDM. Shell Extensions can be installed via https://extensions.gnome.org/ , we have ported a few that can't be installed via this way. The old gnome-utils and gnome-games ports where split up into single ports and where converted to meta-ports. gnome-terminal requires a UTF-8 locale to run, gdm handles this already, but if you use startx you need to do this yourself. Upgrade instructions: Delete the old and conflicting packages: # pkg delete clutter gnome-utils gnome-panel gnome-keyring vala-vapigen \ guile gcalctool gnome-media libgnomekbd # pkg delete gnome-screensaver gnome-applets bug-buddy evolution-exchange \ evolution-webcal gnome-system-tools seahorse-plugins gnome-control-center For package users the following lines will be enough: # pkg upgrade # pkg install gnome3 For ports users should do the following: # portmaster -a # portmaster x11/gnome3 We are currently aware of two issues. The first issue is a bug in the file monitoring code in the glib20 port. This bug causes glib programs to crash when files in a monitored directory are added or removed. Upstream is aware of the problem, but since the problem is quite complex there is no solution yet. This problem isn't restricted to BSD. The second issue is that on certain video cards totem will display a purple/pink overlay on the video. It not clear yet where the issues comes from. Major thanks goes to Gustau Perez for being a driving force behind getting GNOME 3 up to speed again. Also thanks to Antoine Brodin for running the exp-runs. This update was also made possible by: Joe Maloney Kris Moore Beeblebrox Ryan Lortie Antoine Jacoutot and everyone I missed Notes: svn path=/head/; revision=372768
2014-04-23When linking a library libA with a library libB using libtool, if libB.laTijl Coosemans1-2/+2
exists, libtool will add all libraries libB.la refers to (dependency_libs field) to the linker command line and store them in the dependency_libs field of libA.la. So everything that subsequently links with libA will also link to these extra libraries. This causes too much overlinking. This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs field in .la libraries during staging. However, because .la libraries have very limited use when dependency_libs is empty it makes sense to completely remove them during staging. So with this commit USES=libtool is modified to remove .la libraries and a new form (USES=libtool:keepla) is introduced in case they need to be kept (dependency_libs is still emptied). PORTREVISION is bumped on all ports with USES=libtool that install .la libraries. Most ports are also changed to add :keepla because .la libraries have to be kept around as long as there are dependent ports with .la libraries that refer to them in their dependency_libs field. In most cases :keepla can be removed again as soon as all dependent ports that install .la libraries have some form of USES=libtool added to their Makefile. PR: ports/188759 Exp-run: bdrewery Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=351936
2014-04-16The FreeBSD x11@ and graphics team proudly presentsNiclas Zeising1-1/+1
a zeising, kwm production, with help from dumbbell, bdrewery: NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE This update switches over to use the new xorg stack by default on FreeBSD 9 and 10 stable, on osversions where vt(9) is available. It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in /etc/make.conf . FreeBSD 8-STABLE and released versions of FreeBSD still use the old version. A package repository with binary packages for new xorg will be available soon. This patch also contains updates of libxcb and related ports, pixman, as well as some drivers and utilities. Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due to xserver version change. Apart from these updates, the way shared libraries are handled has been changed for all xorg ports, as well as libxml2 and freetype, which means ltverhack is gone and as a consequence shared libraries have been bumped. The plan is that this change will make library bumps less likely in the future. All affected ports have had their portrevisions bumped as a consequence of this. Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT. Update instructions, hardware support, and more notes can be found on https://wiki.freebsd.org/Graphics Thanks to: all testers, bdrewery and the FreeBSD x11@ team exp-run by: bdrewery [1] PR: ports/187602 [1] Approved by: portmgr (bdrewery), core (jhb) Notes: svn path=/head/; revision=351411
2014-04-11Stageify libxkalvierBaptiste Daroussin2-7/+7
USES libtool Chase libxklavier shlib change On all ports depending on libxklavier: - Support stage - USES=libtool when possible to reduce overlinking - Support packaging as a user Notes: svn path=/head/; revision=350914
2013-09-20Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin1-0/+1
x11) Notes: svn path=/head/; revision=327777
2013-09-02Add an explicit dependency on pkgconfBaptiste Daroussin1-2/+1
Notes: svn path=/head/; revision=325997
2013-03-20-Add a missing dependency, xi. Bump the PORTREVISION.Jeremy Messenger1-7/+5
-gnomehack -> USES=pathfix PR: ports/175970 Submitted by: pawel Notes: svn path=/head/; revision=314704
2011-09-23- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov1-2/+1
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav Notes: svn path=/head/; revision=282282
2011-03-19- Get Rid MD5 supportMartin Wilke1-1/+0
Notes: svn path=/head/; revision=271305
2010-12-04Sync to new bsd.autotools.mkAde Lovett1-1/+1
Notes: svn path=/head/; revision=265663
2010-05-10Presenting GNOME 2.30.1 for FreeBSD. The offical release notes for thisKoop Mast3-33/+5
release can be found at http://library.gnome.org/misc/release-notes/2.30/ . This release brings initial PackageKit support, Upower (replaces power management part of hal), cuse4bsd integration with HAL and cheese, and a faster Evolution. Sadly GNOME 2.30.x will be the last release with FreeBSD 6.X support. This will also be the last of the 2.x releases. The next release will be the highly-anticipated GNOME 3.0 which will bring with it a new UI experience. Currently, there are a few bugs with GNOME 2.30 that may be of note for our users. Be sure to consult the UPGRADING note or the 2.30 upgrade FAQ at http://www.freebsd.org/gnome/docs/faq230.html for specific upgrading instructions, and the up-to-date list of known issues. This release features commits by avl, ahze, bland, marcus, mezz, and myself. The FreeBSD GNOME Team would like to thank Anders F Bjorklund for doing the initual packagekit porting. And the following contributors & testers for there help with this release: Eric L. Chen Vladimir Grebenschikov Sergio de Almeida Lenzi DomiX walder crsd Kevin Oberman Michal Varga Pavel Plesov Bapt kevin and ITetcu for two exp-run PR: ports/143852 ports/145347 ports/144980 ports/145830 ports/145511 Notes: svn path=/head/; revision=254099
2009-11-28Presenting GNOME 2.28.1 for FreeBSD. The official release notes for thisJoe Marcus Clarke5-21/+35
release can be found at http://library.gnome.org/misc/release-notes/2.28/ . Officially, this is mostly a polishing release in preparation for GNOME 3.0 due in about a year. On the FreeBSD front, though, a lot went into this release. Major thanks goes to kwm and avl who did a lot of the porting work for this release. In particular, kwm brought in Evolution MAPI support for better Microsoft Exchange integration. Avl made sure that the new gobject introspection repository ports were nicely compartmentalized so that large dependencies aren't brought in wholesale. But, every GNOME team member (ahze, avl, bland, kwm, mezz, and myself) contributed to this release. Other major improvements include an updated HAL with better volume probing code, ufsid integration, and support for volume names containing spaces (big thanks to J.R. Oldroyd); a new WebKit; updated AbiWord; an updated Gimp; and a preview of the new GNOME Shell project (thanks to Pawel Worach). The FreeBSD GNOME Team would like to that the following additional contributors to this release whose patches and testing really helped make it a success: Andrius Morkunas Dominique Goncalves Eric L. Chen J.R. Oldroyd Joseph S. Atkinson Li Pawel Worach Romain Tartière Thomas Vogt Yasuda Keisuke Rui Paulo Martin Wilke (and an extra shout out to miwi and pav for pointyhat runs) We would like to send this release out to Alexander Loginov (avl) in hopes that he feels better soon. PR: 136676 136967 138872 (obsolete with new epiphany-webkit) 139160 134737 139941 140097 140838 140929 Notes: svn path=/head/; revision=244923
2009-08-22- Switch SourceForge ports to the new File Release System: categories ↵Dmitry Marakasov1-2/+1
starting with X Notes: svn path=/head/; revision=240078
2009-08-02-Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.Jeremy Messenger1-1/+1
-Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr Notes: svn path=/head/; revision=238781
2009-04-10Presenting GNOME 2.26 for FreeBSD. SeeJoe Marcus Clarke2-5/+5
http://library.gnome.org/misc/release-notes/2.26/ for a list of what's new. On the FreeBSD front, we introduced a port of libxul 1.9 as an alternative for Firefox 2.0 as a Gecko provider. Almost all of the Gecko consumers can make use of this provider by setting: WITH_GECKO=libxul The GNOME 2.26 port was done by ahze, kwm, marcus, and mezz with contributions by Joseph S. Atkinson, Peter Wemm, Eric L. Chen, Martin Matuska, Craig Butler, and Pawel Worach. Notes: svn path=/head/; revision=231972
2009-02-07Update to 3.8.Jeremy Messenger3-8/+9
Notes: svn path=/head/; revision=227767
2009-01-10Presenting GNOME 2.24 for FreeBSD.Joe Marcus Clarke3-13/+14
See http://library.gnome.org/misc/release-notes/2.24/ for the general release notes. On the FreeBSD front, this release introduces Fuse support in HAL, adds multi-CPU support to libgtop, WebKit updates, and fixes some long-standing seahorse and gnome-keyring bugs. The documentation updates to the website are forthcoming. This release features commits by adamw, ahze, kwm, mezz, and myself. It would not have been possible without are contributors and testers: Alexander Loginov Craig Butler [1] Dmitry Marakasov [6] Eric L. Chen Joseph S. Atkinson Kris Moore Lapo Luchini [7] Nikos Ntarmos Pawel Worach Romain Tartiere TAOKA Fumiyoshi [3] Yasuda Keisuke Zyl aZ [4] bf [2] [5] Florent Thoumie Peter Wemm pluknet PR: 125857 [1] 126993 [2] 130031 [3] 127399 [4] 127661 [5] 124302 [6] 129570 [7] 129936 123790 Notes: svn path=/head/; revision=225629
2008-06-06Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis1-1/+1
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav) Notes: svn path=/head/; revision=214430
2008-04-19- Remove unneeded dependency from gtk12/gtk20 [1]Martin Wilke1-2/+3
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav) Notes: svn path=/head/; revision=211584
2008-03-24The FreeBSD GNOME team is proud to annunce the release of GNOME 2.22.0 forJoe Marcus Clarke3-9/+6
FreeBSD. The official GNOME 2.22 release notes can be found at http://library.gnome.org/misc/release-notes/2.22/ . On the FreeBSD front, this release features an updated hal port with support for video4linux devices, DRM (Direct Rendering), and better support of removable media. Work is also underway to tie webkit more closely into GNOME. As part of the GNOME 2.22 upgrade, GStreamer received a rather large upgrade as well. Be sure to consult UPDATING on the proper steps to upgrade all of your GNOME ports. This release would not have been possible without the contributions and testing efforts of the following people: Pawel Worach kan edwin Peter Ulrich Kruppa J. W. Ballantine Yasuda Keisuke Andriy Gapon Notes: svn path=/head/; revision=209647
2008-03-20- Remove USE_GETOPT_LONG which is a no-op since March 2007Pav Lucistnik1-1/+0
Notes: svn path=/head/; revision=209424
2007-10-24Presenting GNOME 2.20.1 and all related works for FreeBSD. The officialJoe Marcus Clarke4-47/+16
GNOME 2.20 release notes can be found at http://www.gnome.org/start/2.20/notes/en/ . Beyond that, this update includes the new GIMP 2.4 (courtesy of ahze). The GNOME 2.20 update also includes a huge change in the FreeBSD GNOME hierarchy. We are now using the more standard DATADIR of ${PREFIX}/share rather than ${PREFIX}/share/gnome. The result is that fewer patches and hacks are needed to port GNOME components to FreeBSD. This will mean some user changes may be required, so be sure to read /usr/ports/UPDATING for more details. This release and the things we accomplished in it would not have been possible without mezz's crazy idea to collapse DATADIR, and his persistence to make it happen successfully. Ahze and pav also deserve thanks for their work on porting modules and testing the whole ball of wax on pointyhat (respectively). The FreeBSD GNOME team would also like to thank our various testers and contributors: Yasuda Keisuke Frank Jahnke Pawel Worach Brian Gruber Franz Klammer Yuri Pankov Nick Barkas Cristian KLEIN Tony Maher Scot Hetzel Martin Matuska (mm) Benoit Dejean Martin Wilke (miwi) (And anyone else I may have missed) PRs fixed in this release: 111272, 113470, 115995, 116338 Notes: svn path=/head/; revision=201947
2007-05-19- Welcome X.org 7.2 \o/.Florent Thoumie1-2/+5
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
2007-03-25Backout this patch as 3.2 already contains this fix, and bland is AFK.Joe Marcus Clarke1-11/+0
Notes: svn path=/head/; revision=188285
2007-03-25Properly check for empty xml node set to avoid NULL pointer dereference.Alexander Nedotsukov2-0/+12
This bug was source of g-s-d crashes on X systems with non standard keyboard layout options. Notes: svn path=/head/; revision=188242
2007-03-24Update to 3.2 which fixes some more multi-layout crashes.Joe Marcus Clarke3-15/+4
Notes: svn path=/head/; revision=188156
2007-03-19Presenting GNOME 2.18 for FreeBSD. GNOME 2.18 is a departure from recent GNOMEJoe Marcus Clarke7-81/+31
releases in that it focuses more on stability and functionality than on new features. Not that it doesn't have its share of new and exciting items. See http://www.gnome.org/start/2.18/ for all the goodies in this release. GNOME 2.18 for FreeBSD would not have been possible without the hard work of the FreeBSD GNOME Team and our intrepid band of testers including J. W. Ballantine, Pawel Worach, Yasuda Keisuke, Pascal Hofstee, miwi, Yoshihiro Ota, Vladimir Grebenschikov, Jukka A. Ukkonen, Phillip Neumann, Franz Klammer, and Neal Delmonico. Notes: svn path=/head/; revision=187702
2007-02-27Fix the crash when navigate in System->Preferences->Keyboard. Bump theJeremy Messenger2-3/+12
PORTREVISION. PR: ports/108967 Bugzilla: http://bugzilla.gnome.org/show_bug.cgi?id=370038 Obtained from: fd.org CVS Submitted by: Mark Evenson <mark.evenson@gmx.at> Notes: svn path=/head/; revision=186162
2006-12-16Fix build with GCC 4.1.Joe Marcus Clarke1-0/+11
Reported by: pointyhat via kris Notes: svn path=/head/; revision=179902
2006-11-04Mark IGNORE on 4.X as it does not build.Joe Marcus Clarke1-1/+7
Reported by: pointyhat via kris Notes: svn path=/head/; revision=176358
2006-10-14Chase the GNOME X11BASE to LOCALBASE move, and fix the build with theJoe Marcus Clarke9-80/+85
new freetype2 where needed. Submitted by: mezz, ahze, pav, and many others Approved by: portmgr (implicit, kris) Notes: svn path=/head/; revision=175261
2006-04-03Fix a crash that could occur if any of the keyboard layouts had variantsJoe Marcus Clarke2-0/+14
(e.g. jp(latin) where latin the the variant of jp). The problem was a bad use of realloc. Thanks to jasone for explaining the problem with the existing code. Reported by: bland Notes: svn path=/head/; revision=158743
2006-03-16Update to 2.2.Joe Marcus Clarke2-8/+9
Notes: svn path=/head/; revision=157373
2006-02-23Conversion to a single libtool environment.Ade Lovett2-1/+3
Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749
2005-12-13Update to 2.1.Jeremy Messenger5-40/+13
Reminded by: edwin's "FreeBSD Ports Version Check" script Notes: svn path=/head/; revision=151080
2005-12-10Correct a problem setting GNOME keyboard layout options at login time.Joe Marcus Clarke2-1/+12
Obtained from: http://bugzilla.gnome.org/show_bug.cgi?id=322955 Reported by: many Notes: svn path=/head/; revision=150773
2005-11-23- Add SHA256 checksumsPav Lucistnik1-0/+1
Notes: svn path=/head/; revision=149215
2005-11-15Mass-conversion to the USE_AUTOTOOLS New World Order. The code presentAde Lovett1-1/+1
in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run. Notes: svn path=/head/; revision=148323
2005-03-12Presenting GNOME 2.10 for FreeBSD!Joe Marcus Clarke12-79/+114
The release notes can be found at http://www.gnome.org/start/2.10/notes/rnwhatsnew.html, and will give you a good idea of what has gone into this release overall. However, a lot of FreeBSD specific additions and fixes have been made. For example, this release offers fixed ACPI support as well as new CPU freqeuncy monitoring support. See the FreeBSD GNOME 2.10 upgrade page at http://www.FreeBSD.org/gnome/docs/faq210.html for the entire list as well as a list of known issues and upgrade instructions. GNOME 2.10, as well as all of our releases, would not be possible without the great team that goes into porting and testign each and every component. Thanks definitely goes out to ahze, adamw, bland, kwm, mezz, and pav for all their work. We would also like to thank our adventurous users that chose to ride the walrus. We'd especially like to thank the following users that provided patches for GNOME 2.10: ade Yasuda Keisuke Franz Klammer Khairil Yusof Radek Kozlowsk And anyone else I may have accidentally omitted. As with GNOME 2.8, 2.10 comes with a brand-spankin' new splashscreen courtesy of Franz Klammer. However, unlike GNOME 2.8, we've included all of the FreeBSD GNOME splashscreen entries with gnomesession. You can use the deskutils/splashsetter port to choose the one you like best. As always, GNOME users should _not_ use portupgrade alone to upgrade to 2.10. Instead, get the gnome_upgrade.sh script from http://www.FreeBSD.org/gnome/gnome_upgrade.sh. Enjoy! Notes: svn path=/head/; revision=130972
2004-12-01Fix build with X.Org 6.8.1.Joe Marcus Clarke1-1/+2
Submitted by: lesi Notes: svn path=/head/; revision=122856
2004-10-25Do not return static memory which will be free()d by caller.Alexander Nedotsukov2-0/+19
PR: 73089 Submitted by: Oleg Sharoiko <os@rsu.ru> Notes: svn path=/head/; revision=120148
2004-10-12- Fix build on 4.xPav Lucistnik3-0/+53
Notes: svn path=/head/; revision=119066
2004-10-12Update to 1.04, and use the new libtool scheme.Joe Marcus Clarke4-28/+4
Notes: svn path=/head/; revision=118710
2004-07-23Bump PORTREVISION as these need to be recompiled with X.Org.Joe Marcus Clarke1-0/+1
Notes: svn path=/head/; revision=114531