openbsd-ports/games/freeciv/patches/patch-po_Makefile.in.in
brad 2249baed95 upgrade to freeciv 1.11.4; from <obecian@celerity.bartoli.org>
changes by me:
- add HOMEPAGE
- ensure non-GTK version does not use GTK if it is detected, replace
CONFIGURE_ARGS option --disable-gtktest with --with-xaw
- if we depend on gettext we might as well use it
- sync PLIST
- remove unnecessary NO_INSTALL_MANPAGES option which is leftover from
when this
port used to use imake
2000-07-22 18:56:22 +00:00

24 lines
834 B
Plaintext

--- po/Makefile.in.in.orig Sat Jul 22 02:27:02 2000
+++ po/Makefile.in.in Sat Jul 22 02:27:33 2000
@@ -111,9 +111,9 @@ install-data: install-data-@USE_NLS@
install-data-no: all
install-data-yes: all
if test -r "$(MKINSTALLDIRS)"; then \
- $(MKINSTALLDIRS) $(datadir); \
+ $(MKINSTALLDIRS) $(DESTDIR)$(datadir); \
else \
- $(SHELL) $(top_srcdir)/mkinstalldirs $(datadir); \
+ $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir); \
fi
@catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \
@@ -123,7 +123,7 @@ install-data-yes: all
*) destdir=$(localedir);; \
esac; \
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
- dir=$$destdir/$$lang/LC_MESSAGES; \
+ dir=$(DESTDIR)$$destdir/$$lang/LC_MESSAGES; \
if test -r "$(MKINSTALLDIRS)"; then \
$(MKINSTALLDIRS) $$dir; \
else \