Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 25 Mar 2014 11:26:47 +0000 (UTC)
From:      Tijl Coosemans <tijl@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r349128 - in head/sysutils/jfbterm: . files
Message-ID:  <201403251126.s2PBQmxE051587@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tijl
Date: Tue Mar 25 11:26:47 2014
New Revision: 349128
URL: http://svnweb.freebsd.org/changeset/ports/349128
QAT: https://qat.redports.org/buildarchive/r349128/

Log:
  - Link with libcharset to get locale_charset.
  - Remove broken master site.
  
  Reported by:	antoine

Modified:
  head/sysutils/jfbterm/Makefile
  head/sysutils/jfbterm/files/BSDmakefile

Modified: head/sysutils/jfbterm/Makefile
==============================================================================
--- head/sysutils/jfbterm/Makefile	Tue Mar 25 11:10:59 2014	(r349127)
+++ head/sysutils/jfbterm/Makefile	Tue Mar 25 11:26:47 2014	(r349128)
@@ -6,8 +6,7 @@ PORTVERSION=	0.6.1
 DISTVERSIONPREFIX=${OPSYS}-
 PORTREVISION=	5
 CATEGORIES=	sysutils
-MASTER_SITES=	http://www.ac.auone-net.jp/~baba/${PORTNAME}/ \
-		http://chirashi-no-ura.net/files/
+MASTER_SITES=	http://www.ac.auone-net.jp/~baba/${PORTNAME}/
 
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Multilingual terminal emulator for framebuffer

Modified: head/sysutils/jfbterm/files/BSDmakefile
==============================================================================
--- head/sysutils/jfbterm/files/BSDmakefile	Tue Mar 25 11:10:59 2014	(r349127)
+++ head/sysutils/jfbterm/files/BSDmakefile	Tue Mar 25 11:26:47 2014	(r349128)
@@ -8,6 +8,7 @@ LOCALBASE    ?= /usr/local
 PREFIX       ?= ${LOCALBASE}
 LIBUTIL      ?= /usr/lib/libutil.a
 LIBARCH      ?= /usr/lib/lib${ARCH}.a
+LIBCHARSET   ?= ${LOCALBASE}/lib/libcharset.a
 LIBICONV     ?= ${LOCALBASE}/lib/libiconv.a
 LIBPNG       ?= ${LOCALBASE}/lib/libpng.a
 GUNZIP       ?= /usr/bin/gunzip
@@ -67,7 +68,7 @@ CFLAGS      += -DPCF_DEBUG
 CFLAGS  += -DENABLE_UTF8
 CFLAGS  += -DENABLE_OTHER_CODING_SYSTEM
 . if !${CFLAGS:M-DLIBICONV_PLUG} && ${OPSYS:MFreeBSD}
-DPADD   += ${LIBICONV}
+DPADD   += ${LIBICONV} ${LIBCHARSET}
 . endif
 .endif
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201403251126.s2PBQmxE051587>