freebsd-ports/x11-toolkits/gai/files/patch-po_Makefile.in
Jean-Yves Lefort 21201e17dd [1]:
- Update to 0.5.10
  - Respect ${X11BASE}

Moreover:
  - Install with ${INSTALL_*}, in order to ensure proper permissions/ownerships
  - Unconditionally install examples, regardless of ${NOPORTDOCS}
  - Simplify the Makefile through the use of PORTDOCS=*

[1]:
PR:		ports/88071
Submitted by:	maintainer
2005-10-27 13:47:15 +00:00

11 lines
627 B
Text

--- po/Makefile.in.orig Thu Oct 27 15:35:03 2005
+++ po/Makefile.in Thu Oct 27 15:35:11 2005
@@ -20,7 +20,7 @@
install:
for LANG in $(LINGUAS); do $(MSGFMT) $$LANG.po --output-file=$$LANG.mo; done
- for LANG in $(LINGUAS); do mkdir -p $(LOCALE_PREFIX)/$$LANG/LC_MESSAGES && cp $$LANG.mo $(LOCALE_PREFIX)/$$LANG/LC_MESSAGES/$(GETTEXT_PACKAGE).mo;done
+ for LANG in $(LINGUAS); do mkdir -p $(LOCALE_PREFIX)/$$LANG/LC_MESSAGES && $(BSD_INSTALL_DATA) $$LANG.mo $(LOCALE_PREFIX)/$$LANG/LC_MESSAGES/$(GETTEXT_PACKAGE).mo;done
uninstall:
for LANG in $(LINGUAS); do rm $(LOCALE_PREFIX)/$$LANG/LC_MESSAGES/$$LANG.mo; done