diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-11-29 14:44:21 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-11-29 14:44:21 +0000 |
commit | 95d0ada3f364b932fb20cc3feb9430d64f9f2612 (patch) | |
tree | 56525414627a38cf792708d3356d96a985aec208 /games/tuxpaint-config/files | |
parent | 73a62517e946ef632d20e80cac4bbe2dacfea548 (diff) | |
download | ports-95d0ada3f364b932fb20cc3feb9430d64f9f2612.tar.gz ports-95d0ada3f364b932fb20cc3feb9430d64f9f2612.zip |
Notes
Diffstat (limited to 'games/tuxpaint-config/files')
-rw-r--r-- | games/tuxpaint-config/files/patch-Makefile | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/games/tuxpaint-config/files/patch-Makefile b/games/tuxpaint-config/files/patch-Makefile new file mode 100644 index 000000000000..a91594dab55b --- /dev/null +++ b/games/tuxpaint-config/files/patch-Makefile @@ -0,0 +1,57 @@ +--- Makefile.orig Fri Nov 25 21:55:46 2005 ++++ Makefile Mon Nov 28 19:07:02 2005 +@@ -18,7 +18,6 @@ + + # Where to install things: + +-PREFIX=/usr/local + + + # Program: +@@ -35,7 +34,7 @@ + # Docs and man page: + + DOC_PREFIX=$(PREFIX)/share/doc/tuxpaint-config/ +-MAN_PREFIX=$(PREFIX)/share/man/ ++MAN_PREFIX=$(PREFIX)/man/ + + + # Tux Paint's 'System-wide' Config file: +@@ -74,7 +73,7 @@ + + # The entire set of CFLAGS: + +-CFLAGS=-O2 -Wall $(FLTK_CFLAGS) -DDATA_PREFIX=\"$(DATA_PREFIX)\" \ ++CFLAGS+= -Wall $(FLTK_CFLAGS) -DDATA_PREFIX=\"$(DATA_PREFIX)\" \ + -D$(NOSOUNDFLAG) -DDOC_PREFIX=\"$(DOC_PREFIX)\" \ + -DLOCALEDIR=\"$(LOCALE_PREFIX)\" -DCONFDIR=\"$(CONFDIR)\" \ + -DVER_VERSION=\"$(VER_VERSION)\" -DVER_DATE=\"$(VER_DATE)\" +@@ -140,8 +139,7 @@ + # to do this as superuser ("root")) + + install: install-bin install-data install-man install-doc \ +- install-gnome install-kde install-kde-icons \ +- install-icon install-gettext ++ install-gettext + @echo + @echo "All done! Now (preferably NOT as 'root' superuser)," + @echo "you can type the command 'tuxpaint-config' to run the" +@@ -230,9 +228,6 @@ + install -d $(ICON_PREFIX) + cp data/images/icon.png $(ICON_PREFIX)tuxpaint-config.png + chmod 644 $(ICON_PREFIX)tuxpaint-config.png +- install -d $(X11_ICON_PREFIX) +- cp data/images/icon32x32.xpm $(X11_ICON_PREFIX)tuxpaint-config.xpm +- chmod 644 $(X11_ICON_PREFIX)tuxpaint-config.xpm + + + # Install the program: +@@ -296,7 +291,7 @@ + obj/defaults.o $(ARCH_LIBS) + $(CXX) $(CFLAGS) -o tuxpaint-config obj/tuxpaint-config.o \ + obj/tuxpaint-config2.o obj/defaults.o $(ARCH_LIBS) \ +- $(FLTK_LIBS) $(ARCH_LINKS) ++ $(FLTK_LIBS) $(ARCH_LINKS) -lintl + + + # Build the object for the program! |