aboutsummaryrefslogtreecommitdiff
path: root/sysutils/hal
Commit message (Collapse)AuthorAgeFilesLines
* sysutils: Add missing USES={gnome,mate,php}Tobias Kortkamp2019-11-081-1/+2
| | | | Notes: svn path=/head/; revision=517057
* Bump PORTREVISION to chase update of multimedia/v4l_compat and libv4lThomas Zander2018-09-291-1/+1
| | | | Notes: svn path=/head/; revision=480899
* Do not force stop services when a package is deinstalled.Mathieu Arnold2018-06-272-2/+1
| | | | | | | | | Starting or stopping services is the role of pkg(8). Sponsored by: Absolight Notes: svn path=/head/; revision=473439
* Clean up ARCH statement.Mark Linimon2018-03-111-1/+1
| | | | | | | | | | | ia64 is no longer supported. In addition, ARCH values do not need to be quoted; and per portlint, they ought to be sorted. PR: 223983 Approved by: gnome (maintainer timeout) Notes: svn path=/head/; revision=464144
* Update consolekit to 1.2.0.Koop Mast2017-08-051-2/+2
| | | | | | | | | | | | | | | | * Rename consolekit to consolekit2 to reflect that consolekit2 is a new project, even if it the continuation of the old consolekit project. * Expand pkg-descr with some background info. * Add license * ConsoleKit2 has been ported to GDbus, so dbus-glib is not anymore required * Add GObject introspection support for desktops environment such Pantheon or Deepin. * Thanks to Jesper Schmitz Mouridsen, Ben Woods and Olivier Duchateau for assisting with there versions of the port, suggesting changes and testing. PR: 202269 Notes: svn path=/head/; revision=447399
* sysutils/hal: fix cd supportSteve Wills2016-09-232-1/+10
| | | | | | | | | PR: 210354 Submitted by: Ivan Klymenko <fidaj@ukr.net> Approved by: gnome@ (kwm) Notes: svn path=/head/; revision=422642
* Remove usbd rc.d script, we don't have it.Kevin Lo2016-08-241-2/+1
| | | | | | | Reviewed by: kwm Notes: svn path=/head/; revision=420769
* Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.Mathieu Arnold2016-04-011-6/+6
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412349
* Fixup some whitespace at the beginning of lines problems.Mathieu Arnold2016-04-011-4/+4
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412342
* - Switch to options helpersDmitry Marakasov2015-09-031-3/+3
| | | | | | | | | | | - Add some NO_ARCHes - Fix and unsilence some installation commands - Other minor fixes Approved by: portmgr blanket Notes: svn path=/head/; revision=395960
* - Allow to detect video interfaces when kernel is built without STACKThomas Zander2015-08-222-15/+8
| | | | | | | | | | | | - Bump PORTREVISION PR: 194345 Submitted by: lenzi.sergio@gmail.com Reviewed by: pi Approved by: maintainer timeout Notes: svn path=/head/; revision=395027
* sysutils/hal: add missing /var/lib to plistAlberto Villa2015-06-152-35/+14
| | | | | | | | | | | | Meanwhile, rewrite plist to use '@dir' instead of '@exec mkdir', and remove deprecated '@dirrm'. PR: 199984 Approved by: gnome (maintainer timeout) MFH: 2015Q2 Notes: svn path=/head/; revision=389685
* Remove OSVERSION checks that do not make sense any more.Mathieu Arnold2015-04-032-9/+3
| | | | | | | | | | | | | For example (${OSVERSION} >= 900000 && ${OSVERSION} < 900021) is always true, as is (${OSVERSION} > 900002 || ${OSVERSION} < 900000 && ${OSVERSION} > 800107). Regarding patches, when an EXTRA_PATCHES is no longer needed, I remove it, when it is always needed, I renamed it, in one case, I merged two patches. Differential Revision: https://reviews.freebsd.org/D2209 Notes: svn path=/head/; revision=383107
* Remove dependency on bashBaptiste Daroussin2014-11-091-3/+4
| | | | | | | | No bashism is available on freebsd supported scripts Still eradicate bashism on scripts that would never work on freebsd :) Notes: svn path=/head/; revision=372379
* - Convert ports of sysutils/ to new USES=pythonMarcus von Appen2014-10-241-2/+1
| | | | | | | Approved by: portmgr (implicit) Notes: svn path=/head/; revision=371454
* sysutils/hal: Adjust pkg-plist so it passes stage-qa and leftover checksJohn Marino2014-08-132-6/+4
| | | | | | | | | | | | | | | | | | | | | | Hal was not passing poudriere testport or poudriere bulk -t runs due to failing the stage-qa tests and later a leftover check with /var/lib/PolicyKit/user-haldaemon.auths. The reported error is actually not wrong, but rather an inadequacy in the check-plist logic. However, hald is a dependency for a lot of ports and it keeps breaking bulk -t runs, so I switched "@unexec rm -rf" to "@unexec rmdir" to that it would build cleanly in poudriere (gnome@ had fair warning!). If the check-plist logic is improved in the future, this can be changed back to the better "rm -rf" command then. While here, stop trying to remove directories that PolicyKit installed because this will always fail. This clears up stage-qa warnings. PR: 191223 Submitted by: marino Approved by: maintainer timeout (2 months, 2 pings) Notes: svn path=/head/; revision=364801
* Add DOCS to OPTIONS_DEFINE to ports that check for PORT_OPTIONS:MDOCS.Adam Weinberger2014-07-151-1/+1
| | | | Notes: svn path=/head/; revision=361978
* When linking a library libA with a library libB using libtool, if libB.laTijl Coosemans2014-04-231-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
* Properly apply the patch to fix partition detection. I had assumed IJoe Marcus Clarke2014-04-172-9/+10
| | | | | | | | | received a replacement patch file, but I had received a patch to a patch. Pointyhat to: me Notes: svn path=/head/; revision=351476
* - Fix patch files/patch-hald_hf-storage.cBryan Drewery2014-04-171-67/+106
| | | | | | | | | Revert r351423 and apply it as a patch to the patch. Reported by: O. Hartmann <ohartman@zedat.fu-berlin.de> Notes: svn path=/head/; revision=351448
* Fix partition detection on newer versions of FreeBSD.Joe Marcus Clarke2014-04-162-107/+68
| | | | | | | Tested by: Gustau Pérez <gustau.perez@gmail.com> Notes: svn path=/head/; revision=351423
* Switch to USES=libtool, stagify, use option helpers.Koop Mast2014-02-063-33/+34
| | | | | | | | | | Fix shebang of a number of script, which need bash to run. Ignore the wsp (Apple trackpad) driver [1] Submitted by: Hans Selasky [1] Notes: svn path=/head/; revision=342948
* - Fix USB storage detection.Alberto Villa2013-11-128-14/+262
| | | | | | | | | | | | | | | | - Add MMC/SD support. - Update LIB_DEPENDS to new format. PR: 183236 Submitted by: avilla (myself) Approved by: gnome (maintainer timeout) - Fix plist when PREFIX != LOCALBASE Reported by: poudriere testport Notes: svn path=/head/; revision=333593
* - Remove disk duplicate entries on FreeBSD 10+.Alberto Villa2013-10-142-7/+18
| | | | | | | | | | | - Bump PORTREVISION. PR: 179469 Submitted by: avilla (myself) Approved by: gnome (maintainer timeout) Notes: svn path=/head/; revision=330321
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | sysutils) Notes: svn path=/head/; revision=327772
* Add an explicit dependency on pkgconfBaptiste Daroussin2013-09-021-2/+1
| | | | Notes: svn path=/head/; revision=326032
* Don't try to remove /var/cache it is part of /var mtreeKoop Mast2013-05-141-1/+0
| | | | | | | Submitted by: poudriere -t Notes: svn path=/head/; revision=318144
* Add back policykit shlib version. Otherwise LIB_DEPENDS will confuse it withKoop Mast2013-05-061-1/+2
| | | | | | | the polkit-* libraries from sysutils/polkit if they are installed. Notes: svn path=/head/; revision=317507
* - Convert USE_GETTEXT to USES (part 4)Alex Kozlov2013-04-261-2/+1
| | | | | | | Approved by: portmgr (bapt) Notes: svn path=/head/; revision=316596
* Convert almost all gnome@ ports to OptionsNG, trim header, use USES=pathfixKoop Mast2013-03-191-15/+15
| | | | | | | | | | instead of gnomehack and pet portlint. Add conflicts with future gnome3 versions. Reviewed by: miwi, bapt Notes: svn path=/head/; revision=314632
* Make sure /var is populated correctly before hal is started, like dbus doesKoop Mast2012-09-294-1/+96
| | | | | | | | | | | | | | already in its rc.d script. [1] Don't list entries twice, set some more details about storage devices like the linux backend does. [2] PR: ports/171568 [1] PR: ports/171727 [2] Submitted by: Norbert Koch <nkoch@demig.de> [1], avilla@ [2] Reviewed by: marcus@ Notes: svn path=/head/; revision=305045
* Properly close the USB devices we open for probing.Joe Marcus Clarke2012-04-163-9/+37
| | | | Notes: svn path=/head/; revision=294897
* In the rc.d scripts, change assignments to rcvar to use theDoug Barton2012-01-141-1/+1
| | | | | | | | | | | | | | literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other. Notes: svn path=/head/; revision=289156
* Correctly populate usb_device.device_revision_bcd.Joe Marcus Clarke2012-01-022-3/+12
| | | | | | | | | PR: 163726 Submitted by: Stephen Hurd <shurd@sasktel.net> Reviewed by: hps Notes: svn path=/head/; revision=288431
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-3/+3
| | | | | | | | | | | | - 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
* Fix GELI file system detection.Joe Marcus Clarke2011-07-222-4/+18
| | | | | | | Reported by: Kevin Oberman <kob6558@gmail.com> Notes: svn path=/head/; revision=278184
* Fix some minor issues with USB device properties.Joe Marcus Clarke2011-07-022-1/+33
| | | | | | | Submitted by: hps Notes: svn path=/head/; revision=276922
* Check for cdev= in devd messages in older versions of FreeBSD.Joe Marcus Clarke2011-06-282-116/+376
| | | | | | | Submitted by: hps Notes: svn path=/head/; revision=276618
* Fix detection of usb2 devd events.Joe Marcus Clarke2011-05-252-8/+8
| | | | | | | Submitted by: hps Notes: svn path=/head/; revision=274659
* Remove the legacy MD5 checksum.Joe Marcus Clarke2011-02-261-1/+0
| | | | Notes: svn path=/head/; revision=269848
* Fix the processing of devd messages so that the new -CURRENT format isJoe Marcus Clarke2011-02-262-3/+21
| | | | | | | | | properly understood. Submitted by: Gustau Pérez gpere@entel.upc.edu (based on) Notes: svn path=/head/; revision=269829
* Adjust the code to parse the USB devd notification to be a bit broader.Joe Marcus Clarke2011-01-092-3/+3
| | | | | | | | | | This ensures that the USB cdev notifications are not passed to the storage layer thus muting the USB device attach messages. Submitted by: hps Notes: svn path=/head/; revision=267548
* Check for G_IO_STATUS_EOF when reading from the devd socket to preventJoe Marcus Clarke2011-01-082-1/+12
| | | | | | | | | an event storm. PR: 152524 Notes: svn path=/head/; revision=267523
* Sync to new bsd.autotools.mkAde Lovett2010-12-041-1/+1
| | | | Notes: svn path=/head/; revision=265663
* Fix a potential race with helper processes terminating too quickly. WhenJoe Marcus Clarke2010-11-092-1/+12
| | | | | | | | | | this happens, hald dies. PR: 151725 Submitted by: avg Notes: svn path=/head/; revision=264292
* Fix a bug where UFS file systems could not be properly unmounted. Part of thisJoe Marcus Clarke2010-08-292-6/+8
| | | | | | | | | | was due to a logic bug introduced when I added support for "ufs/" labels. Thanks to Andriy Gapon for ctching that. PR: 149134 Notes: svn path=/head/; revision=260171
* Bounce PORTREVISION for gettext-related ports. Have fun, ya'll.Ade Lovett2010-05-311-1/+1
| | | | Notes: svn path=/head/; revision=255371
* Presenting GNOME 2.30.1 for FreeBSD. The offical release notes for thisKoop Mast2010-05-1036-3641/+1060
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Begin the process of deprecating sysutils/rc_subr byDoug Barton2010-03-271-1/+1
| | | | | | | s#. %%RC_SUBR%%#. /etc/rc.subr# Notes: svn path=/head/; revision=251553
* Fix the environment variables when probing USB2 interfaces as their propertyJoe Marcus Clarke2010-01-242-5/+5
| | | | | | | names have changed. Notes: svn path=/head/; revision=248444