summaryrefslogtreecommitdiff
path: root/misc/ldconfig_compat (follow)
Commit message (Collapse)AuthorAgeFilesLines
* - Remove unneeded dependency from gtk12/gtk20 [1]Martin Wilke2008-04-192-3/+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
* Remove support for OSVERSION < 5Edwin Groothuis2007-10-031-13/+0
| | | | Notes: svn path=/head/; revision=200761
* - Re-add LDCONFIG*_DIR to bsd.ldconfig.mk since it causes directories notFlorent Thoumie2006-06-263-3/+14
| | | | | | | | | | being created at install-time (LDCONFIG*_DIR defined in bsd.port.post.mk). [1] - Update to a more recent version the ldconfig script. Reported by: fenner [1] Notes: svn path=/head/; revision=166361
* Zero the file until we remove all bsd.ldconfig.mk inclusion from portsFlorent Thoumie2006-06-221-33/+0
| | | | | | | using early version of USE_LDCONFIG. Notes: svn path=/head/; revision=166025
* Fix plist issue on RELENG_4, libdata/ldconfig directories were onlyFlorent Thoumie2006-04-181-1/+5
| | | | | | | in BSD.x11-4.dist. I just fixed that in BSD.local.dist. Notes: svn path=/head/; revision=159884
* - Fix problem with ancient make.Florent Thoumie2006-02-202-6/+6
| | | | | | | | PR: ports/93143 Submitted by: Eric Cronin <ecronin@gizmolabs.org> Notes: svn path=/head/; revision=156492
* Back out last change while the bug it introduced is being investigated.Mark Linimon2006-01-231-1/+1
| | | | | | | | Noticed by: lofi Pointy hat to: edwin Notes: svn path=/head/; revision=154213
* eplace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryEdwin Groothuis2006-01-221-1/+1
| | | | | | | | Approved by: krion@ PR: ports/88711 (related) Notes: svn path=/head/; revision=154134
* Guarantee of ${PREFIX}/${LDCONFIG{,32}_DIR} are created.Marcus Alves Grando2006-01-191-0/+2
| | | | | | | Approved by: flz Notes: svn path=/head/; revision=153865
* - Remove hardcoded /etc/rc.subr.Florent Thoumie2006-01-182-2/+2
| | | | | | | Reported by: Sean Winn <sean@gothic.net.au> Notes: svn path=/head/; revision=153798
* Ok, maybe I'll do something right today. Revert the logic.Florent Thoumie2006-01-171-2/+2
| | | | Notes: svn path=/head/; revision=153742
* - IGNORE for recent RELENG_[56].Florent Thoumie2006-01-171-2/+4
| | | | | | | Reminded by: mnag Notes: svn path=/head/; revision=153741
* Been there, broke that.Florent Thoumie2006-01-171-2/+2
| | | | | | | Reported by: portsnap buildbox Notes: svn path=/head/; revision=153736
* - ldconfig changes have been MFC'ed to RELENG_[56].Florent Thoumie2006-01-171-1/+3
| | | | Notes: svn path=/head/; revision=153727
* - Fix issue when WITHOUT_X11 is defined.Florent Thoumie2006-01-131-4/+10
| | | | | | | Noticed by: mnag Notes: svn path=/head/; revision=153391
* - Adding sensible defaults to the startup script so people don't need toFlorent Thoumie2006-01-123-16/+10
| | | | | | | | | | | touch /etc/rc.conf anymore. - Silent @dirrm for ldconfig directories, this ensures a quiet upgrade. - Fix installation with package, directories weren't created. Noticed by: pav Notes: svn path=/head/; revision=153346
* - Fix RUN_DEPENDS in bsd.ldconfig.mk.Florent Thoumie2006-01-091-1/+1
| | | | | | | | | | - In a previous commit, I said that you need to use the install-rc-script, you should read install-ldconfig-file. Noticed by: ale Notes: svn path=/head/; revision=153125
* - Add a note about variables used by the script in pkg-message.Florent Thoumie2006-01-082-0/+14
| | | | Notes: svn path=/head/; revision=153073
* Add ldconfig_compat, a port that installs a ldconfig compatibility scriptFlorent Thoumie2006-01-084-0/+136
to reflect latest changes to /etc/rc.d/ldconfig which are the use of ldconfig directories (${PREFIX}/libdata/ldconfig{,32}). This change is meant to remove so-called ldconfig startup scripts installed by ports as 000.${foo}.sh. The bsd.ldconfig.mmk file is only temporary as this should move quickly to bsd.port.mk. Anyway, to use it, just define the following in your ports' Makefile : USE_LDCONFIG= dir1 dir2 and (before bsd.ldconfig.mk moves to bsd.port.mk) : post-install: install-rc-script Notes: svn path=/head/; revision=153061