diff options
author | mph <mph@FreeBSD.org> | 1998-08-05 01:04:18 +0800 |
---|---|---|
committer | mph <mph@FreeBSD.org> | 1998-08-05 01:04:18 +0800 |
commit | e70572210363df1b2191e4293c6ea00307b377e8 (patch) | |
tree | 5c46672e8282f541b2c22ffa6afd760aceba5b05 /misc/diction/files | |
parent | 9f17d9a1e8897adb5ca3f8d54deb1253bab7128d (diff) | |
download | freebsd-ports-gnome-e70572210363df1b2191e4293c6ea00307b377e8.tar.gz freebsd-ports-gnome-e70572210363df1b2191e4293c6ea00307b377e8.tar.zst freebsd-ports-gnome-e70572210363df1b2191e4293c6ea00307b377e8.zip |
Import of GNU diction and style, for finding possible errors in
text and evaluating its readability.
I think I will stick with my brain in my quest to clean up
*/*/pkg/DESCR; while slower, I'll bet it's more accurate. :-)
PR: 7479
Submitted by: J Han <hjh@best.com>
Diffstat (limited to 'misc/diction/files')
-rw-r--r-- | misc/diction/files/patch-aa | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/misc/diction/files/patch-aa b/misc/diction/files/patch-aa new file mode 100644 index 000000000000..eaee92934c82 --- /dev/null +++ b/misc/diction/files/patch-aa @@ -0,0 +1,20 @@ +--- Makefile.in.orig Tue Aug 4 12:55:19 1998 ++++ Makefile.in Tue Aug 4 12:55:52 1998 +@@ -29,14 +29,14 @@ + sed -e s+/usr/share+$(SHAREDIR)+ diction.1.in >$@ + + install: all +- $(INSTALL) -m 755 -d $(BINDIR) ++ $(MKDIR) $(BINDIR) + $(INSTALL_PROGRAM) -s diction $(BINDIR)/diction + $(INSTALL_PROGRAM) -s style $(BINDIR)/style +- $(INSTALL) -m 755 -d $(SHAREDIR)/diction ++ $(MKDIR) $(SHAREDIR)/diction + $(INSTALL_DATA) de $(SHAREDIR)/diction/de + $(INSTALL_DATA) en $(SHAREDIR)/diction/en + (cd $(SHAREDIR)/diction; rm -f C; ln en C) +- $(INSTALL) -m 755 -d $(MANDIR)/man1 ++ $(MKDIR) $(MANDIR)/man1 + $(INSTALL_DATA) diction.1 $(MANDIR)/man1/diction.1 + $(INSTALL_DATA) style.1 $(MANDIR)/man1/style.1 + |