1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/x11-clocks/kdetoys11/files/patch-bb
R. Imura 43c3852878 Upgrade to KDE-1.1.2.
Now x11-clocks/kdetoys11-i18n is no longer RESTRICTED.

Fix incorrect PLIST which is caused by
changed bahavior of devel/libtool.
(x11/kdelibs11-i18n, net/kdentwork11-i18n)

PR:		13749
1999-09-17 12:47:53 +00:00

53 lines
1.8 KiB
Plaintext

--- kworldwatch/pics/Makefile.in.orig Tue Aug 24 23:08:20 1999
+++ kworldwatch/pics/Makefile.in Mon Aug 30 23:40:51 1999
@@ -156,7 +156,7 @@
x_includes = @x_includes@
x_libraries = @x_libraries@
-data_DATA = flag-blue.xpm flag-green.xpm flag-yellow.xpm flag-red.xpm world.gif world2.gif world_dark.gif
+data_DATA = flag-blue.xpm flag-green.xpm flag-yellow.xpm flag-red.xpm world.xpm world2.xpm world_dark.xpm
datadir = $(kde_datadir)/kworldwatch/pics
@@ -174,6 +174,7 @@
GZIP_ENV = --best
all: all-redirect
.SUFFIXES:
+.SUFFIXES: .gif .xpm
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
cd $(top_srcdir) && $(AUTOMAKE) --foreign --include-deps kworldwatch/pics/Makefile
@@ -281,6 +282,8 @@
mostlyclean-generic distclean-generic clean-generic \
maintainer-clean-generic clean mostlyclean distclean maintainer-clean
+.gif.xpm:
+ $(LOCALBASE)/bin/convert $< $@
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
--- kworldwatch/world.cpp.orig Fri Aug 27 02:50:27 1999
+++ kworldwatch/world.cpp Fri Aug 27 02:50:41 1999
@@ -37,10 +37,10 @@
QFontMetrics metric(font);
KIconLoader iconLoader;
- cleanMap = iconLoader.loadIcon("world.gif");
+ cleanMap = iconLoader.loadIcon("world.xpm");
if (cleanMap.isNull())
abort();
- darkMap = iconLoader.loadIcon("world_dark.gif");
+ darkMap = iconLoader.loadIcon("world_dark.xpm");
if (darkMap.isNull())
abort();
map = cleanMap;
@@ -259,7 +259,7 @@
button(klocale->translate("Close"), this)
{
KIconLoader iconLoader;
- QPixmap back(iconLoader.loadIcon("world2.gif"));
+ QPixmap back(iconLoader.loadIcon("world2.xpm"));
setCaption(klocale->translate("About KDE World Watch"));
setFixedSize(back.width(), back.height());