mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-23 09:10:43 +00:00
911506b408
- pre-su-instal no longer required with staging (replaced with pre-install) - pkg-install was removed in r295334, so remove the part in Makefile - handle schema.sample files during install and use the @sample keyword - use %%ETCDIR%% in pkg-plist - bump PORTREVISION PR: 193439 Submitted by: ohauer Approved by: delphij
18 lines
818 B
Plaintext
18 lines
818 B
Plaintext
--- ./libraries/libldap/Makefile.in.orig 2014-08-27 09:41:52.000000000 +0200
|
|
+++ ./libraries/libldap/Makefile.in 2014-08-27 09:43:35.000000000 +0200
|
|
@@ -72,13 +72,6 @@
|
|
$(LTFINISH) $(DESTDIR)$(libdir)
|
|
-$(MKDIR) $(DESTDIR)$(sysconfdir)
|
|
@for i in $(CFFILES); do \
|
|
- if test ! -f $(DESTDIR)$(sysconfdir)/$$i; then \
|
|
- echo "installing $$i in $(sysconfdir)"; \
|
|
- echo "$(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/$$i $(DESTDIR)$(sysconfdir)/$$i"; \
|
|
- $(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/$$i $(DESTDIR)$(sysconfdir)/$$i; \
|
|
- else \
|
|
- echo "PRESERVING EXISTING CONFIGURATION FILE $(sysconfdir)/$$i" ; \
|
|
- fi; \
|
|
- $(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/$$i $(DESTDIR)$(sysconfdir)/$$i.default; \
|
|
+ $(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/$$i $(DESTDIR)$(sysconfdir)/$$i.sample; \
|
|
done
|
|
|