diff --git a/devel/mm/Makefile b/devel/mm/Makefile index 9dcc790d218..38ae7c8beba 100644 --- a/devel/mm/Makefile +++ b/devel/mm/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.18 2000/07/01 22:30:10 brad Exp $ +# $OpenBSD: Makefile,v 1.19 2000/07/01 22:54:48 brad Exp $ # $FreeBSD: Makefile,v 1.2 1999/03/28 11:55:25 rse Exp $ DISTNAME= mm-1.1.3 @@ -16,7 +16,7 @@ PERMIT_PACKAGE_FTP= Yes PERMIT_DISTFILES_CDROM= Yes PERMIT_DISTFILES_FTP= Yes -CONFIGURE_STYLE= gnu dest +CONFIGURE_STYLE= gnu CONFIGURE_ARGS+= ${CONFIGURE_SHARED} CONFIGURE_ARGS+= --enable-static diff --git a/devel/mm/patches/patch-Makefile.in b/devel/mm/patches/patch-Makefile.in new file mode 100644 index 00000000000..d291103b6b6 --- /dev/null +++ b/devel/mm/patches/patch-Makefile.in @@ -0,0 +1,38 @@ +--- Makefile.in.orig Sat Jul 1 18:45:36 2000 ++++ Makefile.in Sat Jul 1 18:46:43 2000 +@@ -51,6 +51,8 @@ + includedir = @includedir@ + mandir = @mandir@ + ++DESTDIR = ++ + SHELL = /bin/sh + CC = @CC@ + CFLAGS = @CFLAGS@ +@@ -157,16 +159,16 @@ + shtoolize -o shtool version echo mkdir install fixperm tarball + + install: all +- $(SHTOOL) mkdir -f -p -m 755 $(bindir) +- $(SHTOOL) mkdir -f -p -m 755 $(includedir) +- $(SHTOOL) mkdir -f -p -m 755 $(libdir) +- $(SHTOOL) mkdir -f -p -m 755 $(mandir)/man1 +- $(SHTOOL) mkdir -f -p -m 755 $(mandir)/man3 +- $(SHTOOL) install -c -m 755 mm-config $(bindir)/mm-config +- $(SHTOOL) install -c -m 644 mm-config.1 $(mandir)/man1/mm-config.1 +- $(SHTOOL) install -c -m 644 mm.3 $(mandir)/man3/mm.3 +- $(SHTOOL) install -c -m 644 mm.h $(includedir)/mm.h +- @$(LIBTOOL) --mode=install $(SHTOOL) install -c -m 644 libmm.la $(libdir)/libmm.la ++ $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(bindir) ++ $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(includedir) ++ $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(libdir) ++ $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(mandir)/man1 ++ $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(mandir)/man3 ++ $(SHTOOL) install -c -m 755 mm-config $(DESTDIR)$(bindir)/mm-config ++ $(SHTOOL) install -c -m 644 mm-config.1 $(DESTDIR)$(mandir)/man1/mm-config.1 ++ $(SHTOOL) install -c -m 644 mm.3 $(DESTDIR)$(mandir)/man3/mm.3 ++ $(SHTOOL) install -c -m 644 mm.h $(DESTDIR)$(includedir)/mm.h ++ @$(LIBTOOL) --mode=install $(SHTOOL) install -c -m 644 libmm.la $(DESTDIR)$(libdir)/libmm.la + + clean: + $(RM) mm_test mm_test.o mm_test.lo