openbsd-ports/audio/id3ed/patches/patch-Makefile_in
naddy a9bfef4d52 remove gmake dependency and fix installation;
with maintainer Nick Nauwelaerts <nick@wanadoo.be>
2001-12-06 13:17:42 +00:00

36 lines
890 B
Plaintext

$OpenBSD: patch-Makefile_in,v 1.1 2001/12/06 13:17:42 naddy Exp $
--- Makefile.in.orig Thu Dec 6 13:54:45 2001
+++ Makefile.in Thu Dec 6 13:56:49 2001
@@ -14,6 +14,8 @@ exec_prefix=@exec_prefix@
bindir=@bindir@
mandir=@mandir@
install=@INSTALL@
+install_program=@INSTALL_PROGRAM@
+install_data=@INSTALL_DATA@
DESTDIR=
@@ -28,8 +30,8 @@ dep depend .depend:
$(CXX) -MM *.cc > .depend
install: all
- $(install) -s -m 0755 id3ed $(DESTDIR)$(bindir)
- $(install) -m 0644 id3ed.1 $(DESTDIR)$(mandir)/man1
+ $(install_program) id3ed $(DESTDIR)$(bindir)
+ $(install_data) id3ed.1 $(DESTDIR)$(mandir)/man1
uninstall:
-rm $(DESTDIR)$(bindir)/id3ed
@@ -61,8 +63,8 @@ distclean: clean
-touch .depend
-ifeq (.depend,$(wildcard .depend))
-include .depend
-endif
+#ifeq (.depend,$(wildcard .depend))
+#include .depend
+#endif
.PHONY: clean distclean dep depend all install