diff options
author | bapt <bapt@FreeBSD.org> | 2013-03-18 19:40:04 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-03-18 19:40:04 +0800 |
commit | cd6cb91f6fc3a0aea1f5f46650af0a4b87487f59 (patch) | |
tree | 6b707abf8d8621e9bcb4f385129f5e95769e9154 /ftp/wget | |
parent | 884ad2690ee76c497ad1c40bb4dac951731a4bbb (diff) | |
download | freebsd-ports-gnome-cd6cb91f6fc3a0aea1f5f46650af0a4b87487f59.tar.gz freebsd-ports-gnome-cd6cb91f6fc3a0aea1f5f46650af0a4b87487f59.tar.zst freebsd-ports-gnome-cd6cb91f6fc3a0aea1f5f46650af0a4b87487f59.zip |
Fix a long standing bug of lib/charset.alias being overwritten, modified, and badly tracked by ports.
Make lib/charset.alias a file only provided by converters/libiconv
Create a new USES: charsetfix, that will modify in post patch the Makefile.in to prevent a port from modifying/overwritting the charset.alias file during make install.
Prevent devel/gettext from installing that files.
Fix a couple of ports that actually touch charset.alias during the build phase.
Based on a patch by ale (http://lists.freebsd.org/pipermail/freebsd-gnome/2012-October/027747.html)
Approved by: kwm (gnome)
Exp-run by: miwi
Diffstat (limited to 'ftp/wget')
-rw-r--r-- | ftp/wget/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/ftp/wget/Makefile b/ftp/wget/Makefile index 3c7129c15702..26aa27bac071 100644 --- a/ftp/wget/Makefile +++ b/ftp/wget/Makefile @@ -1,9 +1,5 @@ -# Ports collection makefile for: wget -# Date created: 31 December 1996 -# Whom: Thomas Gellekum <tg@FreeBSD.org> -# +# Created by: Thomas Gellekum <tg@FreeBSD.org> # $FreeBSD$ -# PORTNAME= wget DISTVERSION= 1.14 @@ -14,6 +10,7 @@ MASTER_SITE_SUBDIR= wget MAINTAINER= vd@FreeBSD.org COMMENT= Retrieve files from the Net via HTTP(S) and FTP +USES= charsetfix USE_XZ= yes USE_GMAKE= yes USE_PERL5_BUILD=yes |