diff options
author | Leonardo Boshell <leonardop@gentoo.org> | 2005-12-22 04:27:11 +0000 |
---|---|---|
committer | Leonardo Boshell <leonardop@gentoo.org> | 2005-12-22 04:27:11 +0000 |
commit | c9643f4ce86167cd9a1cf885d01e59d37973b231 (patch) | |
tree | f9503e0865716708b8fbab50a3cec1f12f828059 /media-gfx/tuxpaint/files | |
parent | Change USE=xml to USE=expat. (diff) | |
download | historical-c9643f4ce86167cd9a1cf885d01e59d37973b231.tar.gz historical-c9643f4ce86167cd9a1cf885d01e59d37973b231.tar.bz2 historical-c9643f4ce86167cd9a1cf885d01e59d37973b231.zip |
New release: 0.9.15b (bug #115546)
Package-Manager: portage-2.1_pre1
Diffstat (limited to 'media-gfx/tuxpaint/files')
-rw-r--r-- | media-gfx/tuxpaint/files/digest-tuxpaint-0.9.15b | 1 | ||||
-rw-r--r-- | media-gfx/tuxpaint/files/tuxpaint-0.9.15b-gentoo.patch | 79 |
2 files changed, 80 insertions, 0 deletions
diff --git a/media-gfx/tuxpaint/files/digest-tuxpaint-0.9.15b b/media-gfx/tuxpaint/files/digest-tuxpaint-0.9.15b new file mode 100644 index 000000000000..7c87300476f3 --- /dev/null +++ b/media-gfx/tuxpaint/files/digest-tuxpaint-0.9.15b @@ -0,0 +1 @@ +MD5 04995631e0922570a0d5c2216d943941 tuxpaint-0.9.15b.tar.gz 5681511 diff --git a/media-gfx/tuxpaint/files/tuxpaint-0.9.15b-gentoo.patch b/media-gfx/tuxpaint/files/tuxpaint-0.9.15b-gentoo.patch new file mode 100644 index 000000000000..ad1e58c1038c --- /dev/null +++ b/media-gfx/tuxpaint/files/tuxpaint-0.9.15b-gentoo.patch @@ -0,0 +1,79 @@ +diff -NurdB tuxpaint-0.9.15b/Makefile tuxpaint-0.9.15b-patched/Makefile +--- tuxpaint-0.9.15b/Makefile 2005-11-27 01:44:15.000000000 -0500 ++++ tuxpaint-0.9.15b-patched/Makefile 2005-12-21 23:09:19.000000000 -0500 +@@ -17,7 +17,7 @@ + + # Where to install things: + +-PREFIX=/usr/local ++PREFIX=/usr + + + # Root directory to place files when creating packages. +@@ -61,13 +61,14 @@ + + ICON_PREFIX=$(PKG_ROOT)$(PREFIX)/share/pixmaps + X11_ICON_PREFIX=$(PKG_ROOT)$(PREFIX)/X11R6/include/X11/pixmaps +-GNOME_PREFIX=`gnome-config --prefix` +-KDE_PREFIX=`kde-config --install apps --expandvars` +-KDE_ICON_PREFIX=`kde-config --install icon --expandvars` ++GNOME_PREFIX= ++KDE_PREFIX= ++KDE_ICON_PREFIX= + + + # Locale files + ++ENABLE_GETTEXT=0 + LOCALE_PREFIX=$(PKG_ROOT)$(PREFIX)/share/locale + # LOCALE_PREFIX=/usr/share/locale + +@@ -95,7 +96,7 @@ + + # The entire set of CFLAGS: + +-CFLAGS=-O2 -W -Wall -fno-common -ffast-math \ ++CFLAGS += -W -Wall -fno-common \ + -Wcast-align -Wredundant-decls \ + -Wbad-function-cast -Wwrite-strings \ + -Waggregate-return \ +@@ -116,7 +117,10 @@ + + # "make" with no arguments builds the program and man page from sources: + +-all: tuxpaint translations ++all: tuxpaint ++ @if [ -n "$(ENABLE_GETTEXT)" ] && [ $(ENABLE_GETTEXT) -eq 1 ]; then \ ++ make translations; \ ++ fi + @echo + @echo "--------------------------------------------------------------" + @echo +@@ -205,10 +209,13 @@ + # to do this as superuser ("root")) + + install: install-bin install-data install-man install-doc \ +- install-icon install-gettext install-importscript \ ++ install-icon install-importscript \ + install-default-config install-example-stamps \ + install-example-starters \ + install-gnome install-kde install-kde-icons ++ @if [ -n "$(ENABLE_GETTEXT)" ] && [ $(ENABLE_GETTEXT) -eq 1 ]; then \ ++ make install-gettext; \ ++ fi + @echo + @echo "--------------------------------------------------------------" + @echo +@@ -481,9 +488,9 @@ + install -d $(PKG_ROOT)$(GNOME_PREFIX)/share/pixmaps; \ + cp data/images/icon.png $(PKG_ROOT)/$(GNOME_PREFIX)/share/pixmaps/tuxpaint.png; \ + chmod 644 $(PKG_ROOT)$(GNOME_PREFIX)/share/pixmaps/tuxpaint.png; \ +- install -d $(PKG_ROOT)$(GNOME_PREFIX)/share/gnome/apps/Graphics; \ +- cp src/tuxpaint.desktop $(PKG_ROOT)$(GNOME_PREFIX)/share/gnome/apps/Graphics/; \ +- chmod 644 $(PKG_ROOT)$(GNOME_PREFIX)/share/gnome/apps/Graphics/tuxpaint.desktop; \ ++ install -d $(PKG_ROOT)$(GNOME_PREFIX)/share/applications; \ ++ cp src/tuxpaint.desktop $(PKG_ROOT)$(GNOME_PREFIX)/share/applications/; \ ++ chmod 644 $(PKG_ROOT)$(GNOME_PREFIX)/share/applications/tuxpaint.desktop; \ + fi + + |