mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 07:00:31 -04:00
- Remove rc.d script and pkg-message. - Add LICENSE. - Use bsd.port.options.mk. Approved by: tabthorpe (mentor)
17 lines
702 B
Text
17 lines
702 B
Text
--- config/Makefile.in.orig 2010-08-25 01:32:29.007194513 +0200
|
|
+++ config/Makefile.in 2010-08-25 01:58:14.194467567 +0200
|
|
@@ -304,11 +304,9 @@
|
|
@list='$(spdconf_DATA)'; test -n "$(spdconfdir)" || list=; \
|
|
for p in $$list; do \
|
|
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
|
- echo "$$d$$p"; \
|
|
- done | $(am__base_list) | \
|
|
- while read files; do \
|
|
- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(spdconfdir)'"; \
|
|
- $(INSTALL_DATA) $$files "$(DESTDIR)$(spdconfdir)" || exit $$?; \
|
|
+ $(am__strip_dir) \
|
|
+ echo " $(INSTALL_DATA) $$d$$p '$(DESTDIR)$(spdconfdir)/$$f'"; \
|
|
+ $(INSTALL_DATA) $$d$$p "$(DESTDIR)$(spdconfdir)/$$f.sample" || exit $$?; \
|
|
done
|
|
|
|
uninstall-spdconfDATA:
|