diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2000-02-05 00:01:06 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2000-02-05 00:01:06 +0000 |
commit | 4a463f0ebbec33df2b4348eaa4a39ecf9d20d63f (patch) | |
tree | 82f9c1bea99f6ac3c6bf626d9a846ae18a44d789 /mail/muttzilla/files | |
parent | move BUILD_DEPENDS higher up and add install-info to pkg/plist (portlint) (diff) |
Muttzilla allows you to use an alternate MUA (Mutt in this case) with
both Netscape Communicator and Navigator when following "mailto:" URL's.
Requested by: ports@freebsd.org
Notes
Notes:
svn path=/head/; revision=25479
Diffstat (limited to 'mail/muttzilla/files')
-rw-r--r-- | mail/muttzilla/files/patch-Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/mail/muttzilla/files/patch-Makefile b/mail/muttzilla/files/patch-Makefile new file mode 100644 index 000000000000..b740b321e55a --- /dev/null +++ b/mail/muttzilla/files/patch-Makefile @@ -0,0 +1,35 @@ +--- Makefile.orig Wed Jan 26 23:11:08 2000 ++++ Makefile Fri Feb 4 15:52:52 2000 +@@ -1,12 +1,11 @@ +-CFLAGS = -O2 -Wall + LDFLAGS = -G -lc + + OBJS = muttzilla.o mzargs.o mzbase.o mzmail.o mznews.o nsapi.o + TARGET = muttzilla.so + +-BINDIR = /usr/local/bin +-LIBDIR = /usr/local/lib +-ETCDIR = /etc ++BINDIR = ${PREFIX}/bin ++LIBDIR = ${PREFIX}/lib ++ETCDIR = ${PREFIX}/etc + + MZLIBDIR = $(LIBDIR)/muttzilla + MAILERLIBS = mutt pine dtmail VM tin +@@ -24,11 +23,11 @@ + rm -f $(TARGET) + + install: $(TARGET) +- install --mode=0755 muttzilla.so $(LIBDIR) +- install --mode=0755 -d $(MZLIBDIR) +- install --mode=0755 mzmail.sh mzmail.py mznews.sh mznews.py $(BINDIR) +- install --mode=0644 $(MAILERLIBS) $(MZLIBDIR) +- install --mode=0644 -b muttzilla.conf $(ETCDIR) ++ install -m 0755 -c muttzilla.so $(LIBDIR) ++ install -m 0755 -d $(MZLIBDIR) ++ install -m 0755 -c mzmail.sh mzmail.py mznews.sh mznews.py $(BINDIR) ++ install -m 0644 -c $(MAILERLIBS) $(MZLIBDIR) ++ install -m 0644 -c muttzilla.conf $(ETCDIR) + + muttzilla.o: muttzilla.c + mzargs.o: mzargs.c muttzilla.h |