mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-10 21:09:31 -04:00
25 lines
853 B
Plaintext
25 lines
853 B
Plaintext
$NetBSD: patch-ae,v 1.5 2013/10/27 21:21:26 dholland Exp $
|
|
|
|
- handle celestia.cfg using the pkgsrc method for config files
|
|
- don't use mv -b, which isn't standard
|
|
|
|
--- Makefile.in.orig 2011-06-05 18:34:26.000000000 +0000
|
|
+++ Makefile.in
|
|
@@ -444,7 +444,6 @@ noinst_DATA = \
|
|
$(dosstuff)
|
|
|
|
pkgdata_DATA = \
|
|
- celestia.cfg \
|
|
controls.txt \
|
|
COPYING \
|
|
$(wildcard *.cel)
|
|
@@ -1064,7 +1063,7 @@ dist-hook:
|
|
|
|
install-data-hook:
|
|
if [ "$(kde_datadir)" -a -d $(DESTDIR)/$(kde_datadir)/@PACKAGE@ -a ! -h $(DESTDIR)/$(kde_datadir)/@PACKAGE@ ] ; then \
|
|
- mv -f -b $(DESTDIR)/$(kde_datadir)/@PACKAGE@/* $(DESTDIR)/$(datadir)/@PACKAGE@/ ; \
|
|
+ mv -f $(DESTDIR)/$(kde_datadir)/@PACKAGE@/* $(DESTDIR)/$(datadir)/@PACKAGE@/ ; \
|
|
rmdir $(DESTDIR)/$(kde_datadir)/@PACKAGE@ ; \
|
|
fi
|
|
if [ "$(kde_datadir)" -a ! -h $(DESTDIR)/$(kde_datadir)/@PACKAGE@ ] ; then \
|