ports/sysutils/yum/files/patch-po-Makefile
Antoine Brodin 7cc7de539a - Add LICENSE
- Stage support
- Fix plist
2013-12-13 22:26:11 +00:00

40 lines
1.1 KiB
Text

--- ./po/Makefile.orig 2011-06-28 20:27:22.000000000 +0000
+++ ./po/Makefile 2013-12-13 14:18:45.000000000 +0000
@@ -1,7 +1,9 @@
+localedir = share/locale
+
INSTALL= /usr/bin/install -c
INSTALL_PROGRAM= ${INSTALL}
INSTALL_DATA= ${INSTALL} -m 644
-INSTALLNLSDIR=$(DESTDIR)/usr/share/locale
+INSTALLNLSDIR=$(PREFIX)/$(localedir)
top_srcdir = "."
@@ -57,15 +59,15 @@
depend:
install: all
- mkdir -p $(PREFIX)/$(INSTALLNLSDIR)
+ mkdir -p $(DESTDIR)/$(INSTALLNLSDIR)
for n in $(CATALOGS); do \
l=`basename $$n .po`; \
mo=$$l.mo; \
if [ ! -f $$mo ]; then continue; fi; \
- $(INSTALL) -m 755 -d $(PREFIX)/$(INSTALLNLSDIR)/$$l; \
- $(INSTALL) -m 755 -d $(PREFIX)/$(INSTALLNLSDIR)/$$l/LC_MESSAGES; \
+ $(INSTALL) -m 755 -d $(DESTDIR)$(INSTALLNLSDIR)/$$l; \
+ $(INSTALL) -m 755 -d $(DESTDIR)$(INSTALLNLSDIR)/$$l/LC_MESSAGES; \
$(INSTALL) -m 644 $$mo \
- $(PREFIX)/$(INSTALLNLSDIR)/$$l/LC_MESSAGES/$(NLSPACKAGE).mo; \
+ $(DESTDIR)$(INSTALLNLSDIR)/$$l/LC_MESSAGES/$(NLSPACKAGE).mo; \
done
%.mo: %.po
@@ -77,4 +79,4 @@
msgfmt -c $$n; \
done
-
\ No newline at end of file
+