mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
- Update to version 0.9.19.
This commit is contained in:
parent
2d54acd7c7
commit
7c7c91b18c
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=208841
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= tuxpaint
|
||||
PORTVERSION= 0.9.18
|
||||
PORTVERSION= 0.9.19
|
||||
CATEGORIES= games
|
||||
MASTER_SITES= SF
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (tuxpaint-0.9.18.tar.gz) = 5d1ee8aabfef787702f8ddef257fc1a7
|
||||
SHA256 (tuxpaint-0.9.18.tar.gz) = 7fe48a8c2fd39bc4485eeb5e6c55567f48f50960b3132c091a06e0067d91b9b9
|
||||
SIZE (tuxpaint-0.9.18.tar.gz) = 8243665
|
||||
MD5 (tuxpaint-0.9.19.tar.gz) = b030a20615743639360327c5af04063b
|
||||
SHA256 (tuxpaint-0.9.19.tar.gz) = 72f1e1de7ff2c232e05e62f9eca30a757806253cf19512843fed49bc8cf2dc45
|
||||
SIZE (tuxpaint-0.9.19.tar.gz) = 8474855
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- ./Makefile.orig Wed Nov 21 19:16:33 2007
|
||||
+++ ./Makefile Wed Dec 12 03:13:49 2007
|
||||
--- Makefile.orig 2008-02-18 21:45:37.000000000 -0300
|
||||
+++ Makefile 2008-03-10 14:59:23.000000000 -0300
|
||||
@@ -20,7 +20,6 @@
|
||||
|
||||
# Where to install things:
|
||||
@ -46,7 +46,7 @@
|
||||
-Wcast-align -Wredundant-decls \
|
||||
-Wbad-function-cast -Wwrite-strings \
|
||||
-Waggregate-return \
|
||||
@@ -352,8 +348,7 @@
|
||||
@@ -362,8 +358,7 @@
|
||||
install-magic-plugin-dev \
|
||||
install-icon install-gettext install-im install-importscript \
|
||||
install-default-config install-example-stamps \
|
||||
@ -56,16 +56,16 @@
|
||||
@echo
|
||||
@echo "--------------------------------------------------------------"
|
||||
@echo
|
||||
@@ -540,7 +535,7 @@
|
||||
@@ -553,7 +548,7 @@
|
||||
@-rm -f src/tp_magic_api.h
|
||||
@-rm -f tp-magic-config
|
||||
@if [ -d trans ]; then rmdir trans; fi
|
||||
- @cd magic ; make clean$(TARGET_PASSTHRU)
|
||||
+ @cd magic ; $(MAKE) clean$(TARGET_PASSTHRU)
|
||||
- @cd magic && make clean$(TARGET_PASSTHRU)
|
||||
+ @cd magic && $(MAKE) clean$(TARGET_PASSTHRU)
|
||||
@echo
|
||||
|
||||
clean-win32:
|
||||
@@ -596,8 +591,10 @@
|
||||
@@ -609,8 +604,10 @@
|
||||
@echo
|
||||
@echo "...Installing default config file..."
|
||||
@install -d $(CONFDIR)
|
||||
@ -78,7 +78,7 @@
|
||||
|
||||
|
||||
# Install example stamps
|
||||
@@ -725,9 +722,6 @@
|
||||
@@ -738,9 +735,6 @@
|
||||
@install -d $(ICON_PREFIX)
|
||||
@cp data/images/icon.png $(ICON_PREFIX)/tuxpaint.png
|
||||
@chmod 644 $(ICON_PREFIX)/tuxpaint.png
|
||||
@ -88,7 +88,7 @@
|
||||
|
||||
|
||||
# Install the program:
|
||||
@@ -840,12 +834,6 @@
|
||||
@@ -853,12 +847,6 @@
|
||||
@cp src/manpage/tuxpaint.1 $(MAN_PREFIX)/man1
|
||||
@gzip -f $(MAN_PREFIX)/man1/tuxpaint.1
|
||||
@chmod a+rx,g-w,o-w $(MAN_PREFIX)/man1/tuxpaint.1.gz
|
||||
@ -101,25 +101,25 @@
|
||||
@# tuxpaint-import.1
|
||||
@cp src/manpage/tuxpaint-import.1 $(MAN_PREFIX)/man1/
|
||||
@gzip -f $(MAN_PREFIX)/man1/tuxpaint-import.1
|
||||
@@ -873,7 +861,7 @@
|
||||
@@ -886,7 +874,7 @@
|
||||
$(SDL_LIBS) \
|
||||
$(SVG_LIB) \
|
||||
$(PAPER_LIB) \
|
||||
- -lm $(ARCH_LINKS)
|
||||
+ -lm $(ARCH_LINKS) -lintl -lpng
|
||||
- $(ARCH_LINKS)
|
||||
+ $(ARCH_LINKS) -lintl -lpng
|
||||
@$(RSRC_CMD)
|
||||
@$(MIMESET_CMD)
|
||||
|
||||
@@ -1003,7 +991,7 @@
|
||||
@@ -1016,7 +1004,7 @@
|
||||
# Go into 'magic' subdirectory and buld magic plug-ins
|
||||
|
||||
magic-plugins: src/tp_magic_api.h
|
||||
- @cd magic ; make $(TARGET_PASSTHRU)
|
||||
+ @cd magic ; $(MAKE) $(TARGET_PASSTHRU)
|
||||
- @cd magic && make $(TARGET_PASSTHRU)
|
||||
+ @cd magic && $(MAKE) $(TARGET_PASSTHRU)
|
||||
|
||||
|
||||
src/tp_magic_api.h: src/tp_magic_api.h.in
|
||||
@@ -1015,13 +1003,13 @@
|
||||
@@ -1028,13 +1016,13 @@
|
||||
tp-magic-config: src/tp-magic-config.sh.in Makefile
|
||||
@echo
|
||||
@echo "...Generating 'Magic' tool API configuration script..."
|
||||
|
@ -1,11 +1,11 @@
|
||||
--- ./magic/Makefile.orig Sun Oct 28 04:19:05 2007
|
||||
+++ ./magic/Makefile Wed Dec 12 03:13:51 2007
|
||||
--- magic/Makefile.orig 2008-01-18 01:50:44.000000000 -0300
|
||||
+++ magic/Makefile 2008-03-10 15:00:51.000000000 -0300
|
||||
@@ -19,7 +19,7 @@
|
||||
TP_MAGIC_CFLAGS=$(shell if [ -x tp-magic-config ] ; then tp-magic-config --cflags ; else echo -I../src/ ; fi)
|
||||
|
||||
SDL_CFLAGS=$(shell sdl-config --cflags)
|
||||
-CFLAGS=-g -Wall $(SDL_CFLAGS) $(TP_MAGIC_CFLAGS)
|
||||
+CFLAGS=$(MYCFLAGS) -g -Wall $(SDL_CFLAGS) $(TP_MAGIC_CFLAGS) -fPIC
|
||||
SHARED_FLAGS=-shared -fpic
|
||||
|
||||
SDL_LIBS=-L/usr/local/lib -lmingw32 -lSDL -lSDL_image -lSDL_ttf $(SDL_MIXER_LIB)
|
||||
SDL_MIXER_LIB=-lSDL_mixer
|
||||
|
@ -458,8 +458,10 @@ lib/tuxpaint/plugins/waves.so
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tr/README.txt
|
||||
%%PORTDOCS%%%%DOCSDIR%%/wa/COPYING.txt
|
||||
%%PORTDOCS%%%%DOCSDIR%%/zh_cn/COPYING.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/zh_cn/FAQ.txt
|
||||
%%PORTDOCS%%%%DOCSDIR%%/zh_cn/Makefile
|
||||
%%PORTDOCS%%%%DOCSDIR%%/zh_cn/README.txt
|
||||
%%PORTDOCS%%%%DOCSDIR%%/zh_cn/html/FAQ.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/zh_cn/html/README.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/zh_tw/AUTHORS.txt
|
||||
%%PORTDOCS%%%%DOCSDIR%%/zh_tw/COPYING.txt
|
||||
@ -476,6 +478,7 @@ lib/tuxpaint/plugins/waves.so
|
||||
%%PORTDOCS%%%%DOCSDIR%%/zh_tw/phone.cin
|
||||
share/locale/af/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/ar/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/az/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/be/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/bg/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/bo/LC_MESSAGES/tuxpaint.mo
|
||||
@ -486,6 +489,8 @@ share/locale/cy/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/da/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/de/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/el/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/en_AU/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/en_CA/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/en_GB/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/en_ZA/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/eo/LC_MESSAGES/tuxpaint.mo
|
||||
@ -510,15 +515,18 @@ share/locale/is/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/it/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/ja/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/ka/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/km/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/ko/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/ku/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/lt/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/lv/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/mk/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/ms/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/nb/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/nl/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/nn/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/nr/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/oc/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/oj/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/pl/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/tuxpaint.mo
|
||||
@ -547,6 +555,7 @@ share/locale/wo/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/xh/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/zh_TW/LC_MESSAGES/tuxpaint.mo
|
||||
share/locale/zw/LC_MESSAGES/tuxpaint.mo
|
||||
share/pixmaps/tuxpaint.png
|
||||
%%DATADIR%%/brushes/aa_round_03.png
|
||||
%%DATADIR%%/brushes/aa_round_06.png
|
||||
@ -731,7 +740,9 @@ share/pixmaps/tuxpaint.png
|
||||
%%DATADIR%%/images/shapes/triangle.png
|
||||
%%DATADIR%%/images/shapes/triangle_f.png
|
||||
%%DATADIR%%/images/title-credits.png
|
||||
%%DATADIR%%/images/title-tuxpaint-2x.png
|
||||
%%DATADIR%%/images/title-tuxpaint.png
|
||||
%%DATADIR%%/images/title-tuxpaint.svg
|
||||
%%DATADIR%%/images/title.png
|
||||
%%DATADIR%%/images/tools/brush.png
|
||||
%%DATADIR%%/images/tools/eraser.png
|
||||
@ -944,6 +955,10 @@ share/pixmaps/tuxpaint.png
|
||||
@dirrm %%DATADIR%%/fonts
|
||||
@dirrm %%DATADIR%%/brushes
|
||||
@dirrm %%DATADIR%%
|
||||
@dirrm share/locale/zw/LC_MESSAGES
|
||||
@dirrm share/locale/zw
|
||||
@dirrm share/locale/twi/LC_MESSAGES
|
||||
@dirrm share/locale/twi
|
||||
@dirrm share/locale/tlh/LC_MESSAGES
|
||||
@dirrm share/locale/tlh
|
||||
@dirrm share/locale/oj/LC_MESSAGES
|
||||
@ -1029,6 +1044,8 @@ share/pixmaps/tuxpaint.png
|
||||
@dirrmtry share/locale/twi
|
||||
@dirrmtry share/locale/sw/LC_MESSAGES
|
||||
@dirrmtry share/locale/sw
|
||||
@dirrmtry share/locale/km/LC_MESSAGES
|
||||
@dirrmtry share/locale/km
|
||||
@dirrmtry share/locale/fo/LC_MESSAGES
|
||||
@dirrmtry share/locale/fo
|
||||
@dirrmtry etc/tuxpaint
|
||||
|
Loading…
Reference in New Issue
Block a user