diff options
author | Joseph Koshy <jkoshy@FreeBSD.org> | 2002-06-14 08:56:06 +0000 |
---|---|---|
committer | Joseph Koshy <jkoshy@FreeBSD.org> | 2002-06-14 08:56:06 +0000 |
commit | 3badfeb03714445877c85759d414a555efcd734d (patch) | |
tree | 1506f1979393370dddd8f2d9181e58eb93505dd4 /net | |
parent | upgrade to 2.1.1 (diff) |
[ports/devel/gettext-old] no longer installs shared library "libintl.so.1",
required by this program. Work-around: edit the binary in-place and
change this dependency to the more current "libintl.so.2" (no adverse
effects seen).
Add an explicit "LIB_DEPENDS" line. Bump PORTREVISION.
PR: ports/38078
Submitted by: Rainer Goellner <rgoellner@gmx.de>
Notes
Notes:
svn path=/head/; revision=61253
Diffstat (limited to 'net')
-rw-r--r-- | net/ymessenger/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/ymessenger/Makefile b/net/ymessenger/Makefile index bfddaebffbbd..444ec813dbc4 100644 --- a/net/ymessenger/Makefile +++ b/net/ymessenger/Makefile @@ -8,16 +8,22 @@ PORTNAME= ymessenger PORTVERSION= 0.93.0 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://download.yahoo.com/dl/unix/fbsd4/ EXTRACT_SUFX= .tgz MAINTAINER= calle.madestrand@norrgarden.se +LIB_DEPENDS= intl.2:${PORTSDIR}/devel/gettext + USE_GTK= yes NO_BUILD= yes do-install: @${INSTALL_PROGRAM} ${WRKDIR}/bin/ymessenger ${PREFIX}/bin +post-extract: + ${PERL} -p -e 's/libintl\.so\.1/libintl.so.2/g' -i \ + ${WRKDIR}/bin/ymessenger .include <bsd.port.mk> |