diff options
author | Yoshio MITA <mita@FreeBSD.org> | 2002-05-23 11:10:59 +0000 |
---|---|---|
committer | Yoshio MITA <mita@FreeBSD.org> | 2002-05-23 11:10:59 +0000 |
commit | 24135b15e3f9d5e3b2635d3587e37200ff3807d4 (patch) | |
tree | 90316dbbabe6025b918f41a18884710f0d5e3312 /comms/efax/files/patch-src:Makefile | |
parent | The version of web2ldap in ports/www/web2ldap is incompatible with the (diff) |
This is yet another FAX send/receive program.
Can handle class1 modems. Works nicely.
Submitted by: me. ports-jp 12772
Notes
Notes:
svn path=/head/; revision=59779
Diffstat (limited to 'comms/efax/files/patch-src:Makefile')
-rw-r--r-- | comms/efax/files/patch-src:Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/comms/efax/files/patch-src:Makefile b/comms/efax/files/patch-src:Makefile new file mode 100644 index 000000000000..b673f4dd5626 --- /dev/null +++ b/comms/efax/files/patch-src:Makefile @@ -0,0 +1,28 @@ +--- Makefile.orig Thu Jun 29 11:01:22 2000 ++++ Makefile Sat May 11 13:02:46 2002 +@@ -15,8 +15,8 @@ + # binaries and man pages. Probably /usr/bin and /usr/man on + # Linux, /usr/local/{bin,man} on other systems. + +-BINDIR=/usr/bin +-MANDIR=/usr/man ++BINDIR=$(PREFIX)/bin ++MANDIR=$(PREFIX)/man + + .c.o: + $(CC) $(CFLAGS) -c $< +@@ -32,11 +32,9 @@ + strip efix + + install: +- cp fax efax efix $(BINDIR) +- chmod 755 $(BINDIR)/fax $(BINDIR)/efax $(BINDIR)/efix +- cp fax.1 efax.1 efix.1 $(MANDIR)/man1 +- chmod 644 $(MANDIR)/man1/fax.1 $(MANDIR)/man1/efax.1 \ +- $(MANDIR)/man1/efix.1 ++ $(INSTALL_PROGRAM) efax efix $(BINDIR) ++ $(INSTALL_SCRIPT) fax $(BINDIR) ++ $(INSTALL_DATA) fax.1 efax.1 efix.1 $(MANDIR)/man1 + + clean: + rm -f efax efix efax.o efix.o efaxlib.o efaxio.o efaxos.o efaxmsg.o |