diff options
author | kuriyama <kuriyama@FreeBSD.org> | 1998-11-19 23:04:32 +0800 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 1998-11-19 23:04:32 +0800 |
commit | 987ae19a4b8bad4af6269c4106c35166ec27bd14 (patch) | |
tree | 1c9db20a9c276ff19f16a3960871d1eb5f04f1ab | |
parent | 6bbd1c09dcba190eced4922ef6fa89bec75b714a (diff) | |
download | freebsd-ports-gnome-987ae19a4b8bad4af6269c4106c35166ec27bd14.tar.gz freebsd-ports-gnome-987ae19a4b8bad4af6269c4106c35166ec27bd14.tar.zst freebsd-ports-gnome-987ae19a4b8bad4af6269c4106c35166ec27bd14.zip |
Update to 2.8.2dev.2.
Submitted by: Shigeyuki FUKUSHIMA <shige@kuis.kyoto-u.ac.jp>
-rw-r--r-- | japanese/lynx-current/Makefile | 21 | ||||
-rw-r--r-- | japanese/lynx-current/distinfo | 2 | ||||
-rw-r--r-- | japanese/lynx-current/files/patch-ai | 24 |
3 files changed, 38 insertions, 9 deletions
diff --git a/japanese/lynx-current/Makefile b/japanese/lynx-current/Makefile index dc1017fa1595..deb2daef44dd 100644 --- a/japanese/lynx-current/Makefile +++ b/japanese/lynx-current/Makefile @@ -1,27 +1,32 @@ # New ports collection makefile for: ja-lynx-current -# Version required: 2.8.1dev.X +# Version required: 2.8.2dev.X # Date created: 10 August 1998 # Whom: Shigeyuki FUKUSHIMA <shige@kuis.kyoto-u.ac.jp> # -# $Id: Makefile,v 1.3 1998/10/06 22:29:29 asami Exp $ +# $Id: Makefile,v 1.4 1998/11/14 16:57:42 kuriyama Exp $ # -DISTNAME= lynx2.8.2dev.1 -PKGNAME= ja-lynx-2.8.2.1 +DISTNAME= lynx2.8.2dev.2 +PKGNAME= ja-lynx-2.8.2.2 CATEGORIES= japanese www MASTER_SITES= ftp://sol.slcc.edu/pub/lynx/current/ MAINTAINER= shige@kuis.kyoto-u.ac.jp NO_LATEST_LINK= YES -WRKSRC= ${WRKDIR}/lynx2-8-1 +WRKSRC= ${WRKDIR}/lynx2-8-2 GNU_CONFIGURE= YES -CONFIGURE_ARGS= --with-screen=ncurses --with-zlib --libdir="${PREFIX}/etc" +CONFIGURE_ARGS= --with-screen=ncurses --with-zlib \ + --libdir="${PREFIX}/etc" --disable-nls --enable-default-colors MAKEFILE= makefile -INSTALL_TARGET= install install-help install-doc +INSTALL_TARGET= install install-help MAN1= lynx.1 post-install: - chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/lib/lynx_help +.if !defined(NOPORTDOCS) + @(cd ${WRKSRC} ; make install-doc) + @chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/doc/lynx +.endif + @chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/lib/lynx_help .include <bsd.port.mk> diff --git a/japanese/lynx-current/distinfo b/japanese/lynx-current/distinfo index d71a257eebca..f54c7a73f583 100644 --- a/japanese/lynx-current/distinfo +++ b/japanese/lynx-current/distinfo @@ -1 +1 @@ -MD5 (lynx2.8.2dev.1.tar.gz) = fb8d6ec40da7d437514d841209421d2d +MD5 (lynx2.8.2dev.2.tar.gz) = 2a692dc5175d429fd8c255f08b5be937 diff --git a/japanese/lynx-current/files/patch-ai b/japanese/lynx-current/files/patch-ai new file mode 100644 index 000000000000..30d33f5030be --- /dev/null +++ b/japanese/lynx-current/files/patch-ai @@ -0,0 +1,24 @@ +--- src/LYCurses.c.orig Wed Nov 11 11:11:52 1998 ++++ src/LYCurses.c Wed Nov 11 11:10:32 1998 +@@ -1679,6 +1679,13 @@ + + PUBLIC void lynx_force_repaint NOARGS + { ++/* ++ * This code is harmful to display bold links. ++ * Already set COLOR attributes? ++ * Therefore we do not need this code. ++ * --- by shige@kuis.kyoto-u.ac.jp ++ */ ++#if 0 /* do not need */ + #if defined(COLOR_CURSES) + chtype a; + #ifndef USE_COLOR_STYLE +@@ -1693,6 +1700,7 @@ + #endif + attrset(a); + #endif /* COLOR_CURSES */ ++#endif /* do not need */ + clearok(curscr, TRUE); + } + |