aboutsummaryrefslogtreecommitdiff
path: root/sysutils/kiconvtool
Commit message (Collapse)AuthorAgeFilesLines
* sysutils/kiconvtool: Sanitize MANPREFIXMuhammad Moinur Rahman2024-01-211-1/+6
| | | | Approved by: portmgr (blanket)
* Remove WWW entries moved into port MakefilesStefan Eßer2022-09-071-2/+0
| | | | | | | | | | Commit b7f05445c00f has added WWW entries to port Makefiles based on WWW: lines in pkg-descr files. This commit removes the WWW: lines of moved-over URLs from these pkg-descr files. Approved by: portmgr (tcberner)
* Add WWW entries to port MakefilesStefan Eßer2022-09-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
* Remove useless Created by: headers mentioning meDmitry Marakasov2021-04-071-2/+0
|
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* - Update to 0.99Dmitry Marakasov2018-05-112-4/+4
| | | | Notes: svn path=/head/; revision=469643
* - Update to 0.98Dmitry Marakasov2018-01-142-6/+9
| | | | Notes: svn path=/head/; revision=458948
* Update WWWDmitry Marakasov2017-01-231-1/+1
| | | | Notes: svn path=/head/; revision=432255
* Remove libiconv.so.3 compatibility link that was added in r374303 toTijl Coosemans2016-12-081-0/+1
| | | | | | | | prevent massive PORTREVISION bumps. Bump dependent ports that have not been bumped since. Notes: svn path=/head/; revision=428150
* - Update to 0.97Dmitry Marakasov2013-10-312-5/+3
| | | | | | | | | | - Fix rc.d script PR: 183518 Submitted by: Kimmo Paasiala <kpaasial@gmail.com> Notes: svn path=/head/; revision=332281
* - Support stagingDmitry Marakasov2013-09-291-3/+3
| | | | Notes: svn path=/head/; revision=328741
* 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
* - Trim Makefile headerDmitry Marakasov2013-06-171-5/+1
| | | | Notes: svn path=/head/; revision=321132
* - Convert USE_ICONV=yes to USES=iconvMarcus von Appen2013-04-271-1/+1
| | | | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig and USE_GETTEXT=yes to USES=gettext while here Notes: svn path=/head/; revision=316683
* - Update to 0.96 (rc script improvements, documentation fixes)Dmitry Marakasov2011-10-012-3/+3
| | | | Notes: svn path=/head/; revision=282698
* - Add dependency on iconvDmitry Marakasov2011-09-071-0/+2
| | | | Notes: svn path=/head/; revision=281411
* - Update to 0.95Dmitry Marakasov2011-09-072-13/+4
| | | | | | | - Now properly works on >=8.x Notes: svn path=/head/; revision=281410
* - Get Rid MD5 supportMartin Wilke2011-03-191-1/+0
| | | | Notes: svn path=/head/; revision=271305
* - Update URL of my distfile mirror in 87 portsDmitry Marakasov2009-07-281-1/+1
| | | | | | | Approved by: portmgr (erwin) Notes: svn path=/head/; revision=238527
* - Update to 0.93 (now it's possible to list currenly loaded charsets)Dmitry Marakasov2009-04-252-4/+4
| | | | Notes: svn path=/head/; revision=232714
* - Update address of my distfile mirrorDmitry Marakasov2009-01-051-1/+1
| | | | Notes: svn path=/head/; revision=225284
* - Update to 0.92 featuring filesystem iconv modules loading and minor ↵Dmitry Marakasov2008-10-282-4/+4
| | | | | | | bug/typo fixes Notes: svn path=/head/; revision=222180
* - Update to 0.91 (add manpage, fix error handling)Dmitry Marakasov2008-07-072-9/+6
| | | | | | | Approved by: miwi (mentor) Notes: svn path=/head/; revision=216494
* On FreeBSD, it's possible to allow plain users to mount filesystemsDmitry Marakasov2008-06-263-0/+52
without using su or sudo. This is enabled via vfs.usermount sysctl. However, if file name conversion is used when mounting a filesystem, in most cases mount will fail with `mount_XXX: XXX_iconv: Operation not permitted denied' error. This is caused by the fact that character set conversion tables need to be loaded into kernel, but, apart from mounting, that's not allowed to plain users, because charset tables are large enough to initiate a denial of service by filling kernel memory with many tables. This utility allows you to load only specific charset tables into kernel, so usermounts with file name conversions won't fail and in the same time it's not possible to bring the system down by filling kernel memory. WWW: http://wiki.freebsd.org/DmitryMarakasov/kiconvtool Approved by: miwi (mentor) Notes: svn path=/head/; revision=215794