aboutsummaryrefslogtreecommitdiff
path: root/misc/compat5x
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* onvert to UCL & cleanup pkg-message (categories l-m)Mathieu Arnold2019-08-131-9/+11
| | | | Notes: svn path=/head/; revision=508882
* Now build on sparc64.Mark Linimon2016-11-031-4/+0
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=425253
* ${RM} already has -f.Mathieu Arnold2016-10-211-2/+2
| | | | | | | | | | PR: 213570 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Notes: svn path=/head/; revision=424411
* Use @preunexec to ensure the removal of the flags is done in the pre ↵Baptiste Daroussin2016-09-111-8/+8
| | | | | | | deinstall phase Notes: svn path=/head/; revision=421763
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-012-2/+2
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* Remove @exec lines redundant with USE_LDCONFIG32Antoine Brodin2015-09-262-2/+0
| | | | Notes: svn path=/head/; revision=397965
* MASTER_SITES cleanup.Mathieu Arnold2015-05-141-2/+1
| | | | | | | | | | | | | | | | | | | | | | - Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=386312
* Cleanup plistBaptiste Daroussin2014-12-091-3/+0
| | | | Notes: svn path=/head/; revision=374378
* Convert some more USE_BZIP2 to USES=tar:bzip2Adam Weinberger2014-07-291-1/+1
| | | | | | | Approved by: portmgr (not really, but touches unstaged ports) Notes: svn path=/head/; revision=363399
* - Stage supportMartin Wilke2014-02-261-7/+6
| | | | Notes: svn path=/head/; revision=346096
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | misc) Notes: svn path=/head/; revision=327745
* Drop alpha supportEitan Adler2013-06-042-10/+1
| | | | Notes: svn path=/head/; revision=319930
* Drop support for old versions of FreeBSD from unmaintained portsEitan Adler2013-03-281-4/+0
| | | | | | | Reviewed by: miwi Notes: svn path=/head/; revision=315474
* Cleanup unmaintained ports in the misc category:Eitan Adler2013-03-251-6/+2
| | | | | | | | | | | - Single space for WWW in pkg-descr - Ordering if of items in Makefile - Trim headers - Comment should not begin with leading article - Pet portlint Notes: svn path=/head/; revision=315240
* - Get Rid MD5 supportMartin Wilke2011-03-191-4/+0
| | | | Notes: svn path=/head/; revision=271305
* Set mode 0755 on MKDIR to create ${PREFIX}/lib/compat. Some users experiencedRenato Botelho2010-10-191-1/+2
| | | | | | | | | problems when umask was 002 and this dir was created with group write perm. Reported by: ecrist at EFNet Notes: svn path=/head/; revision=263293
* - Reroll compat5x distfiles to clean schg flag, which makes it possible to ↵Dmitry Marakasov2010-08-242-20/+14
| | | | | | | | | | | install compat5x with securelevel > 0 PR: 144264 Submitted by: Youssef Ghorbal <djo@pasteur.fr> Discussed on: freebsd-ports@ Notes: svn path=/head/; revision=259927
* Mark as broken on sparc64: cannot find lib/compat/libpthread.so.X.Mark Linimon2009-12-041-0/+4
| | | | | | | Hat: portmgr Notes: svn path=/head/; revision=245186
* Attempt to fix plist for sparc64 on deinstall.Mark Linimon2009-09-151-0/+2
| | | | | | | Hat: portmgr Notes: svn path=/head/; revision=241434
* After discuss with jhb@ and kib@, here are fixed version of compat[567]x portsRenato Botelho2009-09-031-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | working fine when installed on 8.0. compat5x: Installed under a FreeBSD 6.x or 7.x: /usr/local/lib/compat/libpthread.so.1 (file) on amd64: /usr/local/lib32/compat/libpthread.so.1 (fine) Installed under a FreeBSD 8.x: /usr/local/lib/compat/libpthread.so.1 -> ./libthr.so.1 (symlink) on amd64: /usr/local/lib32/compat/libpthread.so.1 -> ./libthr.so.1 (symlink) compat6x: Installed under a FreeBSD 7.x: /usr/local/lib/compat/libpthread.so.2 (file) on amd64: /usr/local/lib32/compat/libpthread.so.2 (fine) Installed under a FreeBSD 8.x: /usr/local/lib/compat/libpthread.so.2 -> ./libthr.so.2 (symlink) on amd64: /usr/local/lib32/compat/libpthread.so.2 -> ./libthr.so.2 (symlink) compat7x: Installed under a FreeBSD 8.x: /usr/local/lib/compat/libkse.so.3 -> /lib/libthr.so.3 (symlink) on amd64: /usr/local/lib32/compat/libkse.so.3 -> /usr/lib32/libthr.so.3 (symlink) Reported by: kib Thanks to: jhb and kib Notes: svn path=/head/; revision=240783
* When installing on 8.x (>= 800105), don't install libpthread.so.1 but create aRenato Botelho2009-08-271-1/+9
| | | | | | | | | symlink to /usr/lib/libpthr.so Discussed with: jhb Notes: svn path=/head/; revision=240413
* - Simplify ldconfig handlingPav Lucistnik2009-02-121-11/+0
| | | | Notes: svn path=/head/; revision=228123
* - Remove conditional checks for FreeBSD 5.x and olderPav Lucistnik2009-01-051-8/+2
| | | | Notes: svn path=/head/; revision=225300
* compat5x port can fail to extract if you're root.Edwin Groothuis2008-05-281-0/+2
| | | | | | | | | | | | | | | If you are building the misc/compat5x port as root, it can fail to extract properly, if your ports dir is not owned by root:wheel, but for example by root:src. This is because the files in the distfile archive have the schg flag set. That flag is killed btw in the post-extract phase. PR: ports/122306 Submitted by: Dimitry Andric <dimitry@andric.com> Notes: svn path=/head/; revision=213800
* libkse.so.1 needs a chflags on uninstall to work properly. This onlyMark Linimon2007-12-261-0/+2
| | | | | | | | | | affects sparc64 and alpha, so wasn't noticed before. Suggested by: marcus Hat: portmgr Notes: svn path=/head/; revision=204582
* Drop schg file flag.Norikatsu Shigemura2007-12-221-4/+4
| | | | Notes: svn path=/head/; revision=204349
* chflags noschg before pkg_delete.Norikatsu Shigemura2007-04-212-1/+7
| | | | | | | | Pointed out by: pointy hat via kris over gnn Special Commiting Thanks with: gnn Notes: svn path=/head/; revision=190522
* Fix "make clean" error.Norikatsu Shigemura2007-03-261-0/+3
| | | | Notes: svn path=/head/; revision=188357
* - s,INSTALLS_SHLIB,USE_LDCONFIG,gCheng-Lung Sung2006-08-151-1/+1
| | | | | | | | | | | - these include misc/ multimedia/ net/ net-mgmt/ net-im/ net-p2p/ palm/ print/ science/ maintained by ports@ PR: ports/101916 Submitted by: Gea-Suan Lin <gslin_AT_gslin dot org> Notes: svn path=/head/; revision=170651
* - Use misc/ldconfig_compat on 4.x and rc.d/ldconfig in {5,6}x, this change fixMarcus Alves Grando2006-06-075-78/+35
| | | | | | | | | | rc.d script starting too late. With this, ldconfig run automaticaly on startup and doesn't need add compat{4,5}x_enable in rc.conf. No objection: freebsd-rc, portmgr Notes: svn path=/head/; revision=164701
* - Reset maintainer back to ports@ pending further discussionAndrew Pantyukhin2006-06-031-1/+1
| | | | | | | Asked by: mnag Notes: svn path=/head/; revision=164315
* - Take maintainershipAndrew Pantyukhin2006-06-032-2/+1
| | | | | | | | | | - Pet portlint(1) PR: ports/97965 Submitted by: Rene Ladan <r.c.ladan@gmail.com> Notes: svn path=/head/; revision=164281
* Oops, I forgot to bump PORTREVISION for my previous commit.Hajimu UMEMOTO2006-05-301-1/+1
| | | | Notes: svn path=/head/; revision=163997
* It was too late to add the path for compat5x on 6.1 and later.Hajimu UMEMOTO2006-05-301-1/+1
| | | | Notes: svn path=/head/; revision=163996
* eplace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryEdwin Groothuis2006-01-221-2/+2
| | | | | | | | Approved by: krion@ PR: ports/88711 (related) Notes: svn path=/head/; revision=154134
* Replace 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=154114
* Make use of the ldconfig_local_dirs mechanism just committed toDoug Barton2006-01-082-6/+26
| | | | | | | | | | 7-CURRENT. flz has plans to develop the USE_LDCONFIG code in bsd.port.mk, but this will serve as a POC for now. Notes: svn path=/head/; revision=153045
* - Rename the startup script ${PORTNAME}.sh to 000.${PORTNAME}.sh toHiroki Sato2006-01-072-2/+2
| | | | | | | | | | prevent non-rcNG scripts from being invoked before it. - Bump PORTREVISION. PR: conf/91444 Notes: svn path=/head/; revision=152993
* Bump PORTREVISION to bring in the REQUIRE: ldconfig change.Doug Barton2005-12-281-1/+1
| | | | Notes: svn path=/head/; revision=152244
* Make the boot scripts REQUIRE: ldconfig so that just in caseDoug Barton2005-12-281-1/+1
| | | | | | | | the script gets ordered prior to ldconfig, that script won't blow away the work done by this one. Notes: svn path=/head/; revision=152243
* Reduce POLA violation for users who didn't expect to have to enableDoug Barton2005-12-201-1/+15
| | | | | | | | | this feature. Prodded by: pav Notes: svn path=/head/; revision=151670
* Provide new style rc.d boot scripts, using the infrastructure thatDoug Barton2005-12-183-9/+34
| | | | | | | | is present in both bsd.port.mk and rc.subr to make things as simple as possible. Notes: svn path=/head/; revision=151512
* - Add SHA256Pav Lucistnik2005-11-251-0/+4
| | | | Notes: svn path=/head/; revision=149438
* Upgrade to 5.4-RELEASE-p8 libraries for potential SSL 2.0 rollbackDejan Lesjak2005-10-252-11/+13
| | | | | | | | | | | vulnerability. While here, add a note about libc.so.5 tweak for localedata. Reminded by: delphij Security: FreeBSD-SA-05:21.openssl Notes: svn path=/head/; revision=146326
* Remove liblwres.so.3. It will have same version on 6.x [1]Dejan Lesjak2005-10-062-3/+3
| | | | | | | | | | | While here, remove temporary master site that no longer works anyway. [1] Pointed out by: Antoine Brodin (antoine.brodin at laposte.net) Discussed with: re, dougb Notes: svn path=/head/; revision=144437
* This package allows you to install the compat5x libraries on yourKirill Ponomarev2005-08-264-0/+307
system, so you can use legacy binaries that depend on them. Submitted by: lesi Discussed with: lesi, ru Approved by: portmgr (self) Notes: svn path=/head/; revision=140976