diff options
author | edwin <edwin@FreeBSD.org> | 2007-09-09 14:51:09 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2007-09-09 14:51:09 +0800 |
commit | 8a39951a5139be79bc1a8ed49088e99b23203a59 (patch) | |
tree | 2959ee89f1029943b1fc78113cd7747d62080060 /japanese | |
parent | f4553c6055c7fbb9edcfde6247d7fd5655748b8e (diff) | |
download | freebsd-ports-gnome-8a39951a5139be79bc1a8ed49088e99b23203a59.tar.gz freebsd-ports-gnome-8a39951a5139be79bc1a8ed49088e99b23203a59.tar.zst freebsd-ports-gnome-8a39951a5139be79bc1a8ed49088e99b23203a59.zip |
japanese/ng: use termios instead of sgtty
The japanese/ng port makes use of the bsd style code for
stuff like line discipline handling. Nowadays we can just
use the sysv code, which makes us use the sgtty interface
instead of termios, which is the preferred one.
PR: ports/113325
Submitted by: Ed Schouten <ed@fxq.nl>
Approved by: maintainer timeout
Diffstat (limited to 'japanese')
-rw-r--r-- | japanese/ng/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/japanese/ng/Makefile b/japanese/ng/Makefile index e0670f28f050..930ac75bd0e2 100644 --- a/japanese/ng/Makefile +++ b/japanese/ng/Makefile @@ -7,6 +7,7 @@ PORTNAME= ng PORTVERSION= 1.4.4 +PORTREVISION= 1 CATEGORIES= japanese editors MASTER_SITES= http://tomato.sakura.ne.jp/~amura/archives/ng/ DISTNAME= ${PORTNAME}-${PORTVERSION} @@ -40,7 +41,7 @@ LIBS+= -L${LOCALBASE}/lib -lcanna .endif post-patch: - @(cd ${WRKSRC}; ${LN} -sf sys/bsd/Makefile . ) + @(cd ${WRKSRC}; ${LN} -sf sys/sysv/Makefile . ) do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ng ${PREFIX}/bin |