diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-10-14 14:28:57 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-10-14 14:28:57 +0000 |
commit | b010cec7f457815a466a801051548fbb68d37bc8 (patch) | |
tree | c46890e649834d9776b98273a78c5965b649a8f8 /converters/tnef | |
parent | 51464b8c30e973d4f403083309049b279cfc3bdb (diff) | |
download | ports-b010cec7f457815a466a801051548fbb68d37bc8.tar.gz ports-b010cec7f457815a466a801051548fbb68d37bc8.zip |
Notes
Diffstat (limited to 'converters/tnef')
-rw-r--r-- | converters/tnef/Makefile | 7 | ||||
-rw-r--r-- | converters/tnef/distinfo | 2 | ||||
-rw-r--r-- | converters/tnef/files/patch-doc::Makefile.in | 92 |
3 files changed, 99 insertions, 2 deletions
diff --git a/converters/tnef/Makefile b/converters/tnef/Makefile index c3f87c7b8106..4ef4d76b2958 100644 --- a/converters/tnef/Makefile +++ b/converters/tnef/Makefile @@ -6,7 +6,7 @@ # PORTNAME= tnef -PORTVERSION= 1.0 +PORTVERSION= 1.1 CATEGORIES= converters mail MASTER_SITES= http://world.std.com/~damned/ @@ -14,4 +14,9 @@ MAINTAINER= cr@jcmax.com GNU_CONFIGURE= yes +MAN1= tnef.1 + +pre-configure: + ${MV} ${WRKSRC}/doc/tnef.3 ${WRKSRC}/doc/tnef.1 + .include <bsd.port.mk> diff --git a/converters/tnef/distinfo b/converters/tnef/distinfo index 187175be18ae..06eb9e15177a 100644 --- a/converters/tnef/distinfo +++ b/converters/tnef/distinfo @@ -1 +1 @@ -MD5 (tnef-1.0.tar.gz) = 2b50a170b231acc6c853e1ba222caf6b +MD5 (tnef-1.1.tar.gz) = 56ab3407c4dedd433669942d6b0f3545 diff --git a/converters/tnef/files/patch-doc::Makefile.in b/converters/tnef/files/patch-doc::Makefile.in new file mode 100644 index 000000000000..5e62ea3a5f37 --- /dev/null +++ b/converters/tnef/files/patch-doc::Makefile.in @@ -0,0 +1,92 @@ +--- doc/Makefile.in.orig Sun Oct 14 22:21:32 2001 ++++ doc/Makefile.in Sun Oct 14 22:23:53 2001 +@@ -66,12 +66,12 @@ + RANLIB = @RANLIB@ + VERSION = @VERSION@ + +-man_MANS = tnef.3 ++man_MANS = tnef.1 + EXTRA_DIST = file-format.tex $(man_MANS) + mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs + CONFIG_HEADER = ../config.h + CONFIG_CLEAN_FILES = +-man3dir = $(mandir)/man3 ++man1dir = $(mandir)/man1 + MANS = $(man_MANS) + + NROFF = nroff +@@ -92,12 +92,12 @@ + && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status + + +-install-man3: +- $(mkinstalldirs) $(DESTDIR)$(man3dir) +- @list='$(man3_MANS)'; \ ++install-man1: ++ $(mkinstalldirs) $(DESTDIR)$(man1dir) ++ @list='$(man1_MANS)'; \ + l2='$(man_MANS)'; for i in $$l2; do \ + case "$$i" in \ +- *.3*) list="$$list $$i" ;; \ ++ *.1*) list="$$list $$i" ;; \ + esac; \ + done; \ + for i in $$list; do \ +@@ -106,30 +106,30 @@ + ext=`echo $$i | sed -e 's/^.*\\.//'`; \ + inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ + inst=`echo $$inst | sed '$(transform)'`.$$ext; \ +- echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man3dir)/$$inst"; \ +- $(INSTALL_DATA) $$file $(DESTDIR)$(man3dir)/$$inst; \ ++ echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst"; \ ++ $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst; \ + done + +-uninstall-man3: +- @list='$(man3_MANS)'; \ ++uninstall-man1: ++ @list='$(man1_MANS)'; \ + l2='$(man_MANS)'; for i in $$l2; do \ + case "$$i" in \ +- *.3*) list="$$list $$i" ;; \ ++ *.1*) list="$$list $$i" ;; \ + esac; \ + done; \ + for i in $$list; do \ + ext=`echo $$i | sed -e 's/^.*\\.//'`; \ + inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ + inst=`echo $$inst | sed '$(transform)'`.$$ext; \ +- echo " rm -f $(DESTDIR)$(man3dir)/$$inst"; \ +- rm -f $(DESTDIR)$(man3dir)/$$inst; \ ++ echo " rm -f $(DESTDIR)$(man1dir)/$$inst"; \ ++ rm -f $(DESTDIR)$(man1dir)/$$inst; \ + done + install-man: $(MANS) + @$(NORMAL_INSTALL) +- $(MAKE) $(AM_MAKEFLAGS) install-man3 ++ $(MAKE) $(AM_MAKEFLAGS) install-man1 + uninstall-man: + @$(NORMAL_UNINSTALL) +- $(MAKE) $(AM_MAKEFLAGS) uninstall-man3 ++ $(MAKE) $(AM_MAKEFLAGS) uninstall-man1 + tags: TAGS + TAGS: + +@@ -173,7 +173,7 @@ + install-strip: + $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install + installdirs: +- $(mkinstalldirs) $(DESTDIR)$(mandir)/man3 ++ $(mkinstalldirs) $(DESTDIR)$(mandir)/man1 + + + mostlyclean-generic: +@@ -203,7 +203,7 @@ + + maintainer-clean: maintainer-clean-am + +-.PHONY: install-man3 uninstall-man3 install-man uninstall-man tags \ ++.PHONY: install-man1 uninstall-man1 install-man uninstall-man tags \ + distdir info-am info dvi-am dvi check check-am installcheck-am \ + installcheck install-exec-am install-exec install-data-am install-data \ + install-am install uninstall-am uninstall all-redirect all-am all \ |