summaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorDavid Zeuthen <davidz@redhat.com>2007-05-08 00:20:39 -0400
committerDavid Zeuthen <davidz@redhat.com>2007-05-08 00:20:39 -0400
commit2c46760544b4f6336ea94267b957fb729845d7c9 (patch)
tree1228c2159eb00d64d167978e9716147dcee2ea28 /data
downloadgnome-disk-utility-2c46760544b4f6336ea94267b957fb729845d7c9.tar.gz
gnome-disk-utility-2c46760544b4f6336ea94267b957fb729845d7c9.tar.xz
gnome-disk-utility-2c46760544b4f6336ea94267b957fb729845d7c9.zip
initial commit
Diffstat (limited to 'data')
-rw-r--r--data/Makefile.am18
-rw-r--r--data/gnome-disk-utility.desktop.in11
-rw-r--r--data/icons/16x16/Makefile.am8
-rw-r--r--data/icons/22x22/Makefile.am8
-rw-r--r--data/icons/48x48/Makefile.am12
-rw-r--r--data/icons/48x48/gdu-eject.pngbin0 -> 1312 bytes
-rw-r--r--data/icons/48x48/gdu-mount.pngbin0 -> 1322 bytes
-rw-r--r--data/icons/48x48/gdu-unmount.pngbin0 -> 1494 bytes
-rw-r--r--data/icons/48x48/gnome-disk-utility.pngbin0 -> 2536 bytes
-rw-r--r--data/icons/Makefile.am16
-rw-r--r--data/icons/scalable/Makefile.am8
11 files changed, 81 insertions, 0 deletions
diff --git a/data/Makefile.am b/data/Makefile.am
new file mode 100644
index 0000000..cfd59c7
--- /dev/null
+++ b/data/Makefile.am
@@ -0,0 +1,18 @@
+SUBDIRS = icons
+
+desktopdir = $(datadir)/applications
+desktop_in_files = gnome-disk-utility.desktop.in
+desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
+
+@INTLTOOL_DESKTOP_RULE@
+
+distuninstallcheck_listfiles = find . -type f -print | grep -v scrollkeeper
+
+EXTRA_DIST = \
+ $(desktop_in_files)
+
+CLEANFILES = \
+ $(desktop_DATA)
+
+clean-local :
+ rm -f *~
diff --git a/data/gnome-disk-utility.desktop.in b/data/gnome-disk-utility.desktop.in
new file mode 100644
index 0000000..cd79410
--- /dev/null
+++ b/data/gnome-disk-utility.desktop.in
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Encoding=UTF-8
+_Name=Disk Utility
+_Comment=Manage Drives and Media
+Exec=gnome-disk-utility
+Icon=gnome-disk-utility
+Terminal=false
+Type=Application
+X-GNOME-DocPath=gnome-disk-utility/gnome-disk-utility.xml
+Categories=GNOME;GTK;System;
+
diff --git a/data/icons/16x16/Makefile.am b/data/icons/16x16/Makefile.am
new file mode 100644
index 0000000..a84085b
--- /dev/null
+++ b/data/icons/16x16/Makefile.am
@@ -0,0 +1,8 @@
+icondir = $(datadir)/icons/hicolor/16x16/apps
+icon_DATA =
+
+EXTRA_DIST = \
+ $(icon_DATA)
+
+clean-local :
+ rm -f *~
diff --git a/data/icons/22x22/Makefile.am b/data/icons/22x22/Makefile.am
new file mode 100644
index 0000000..0a90a45
--- /dev/null
+++ b/data/icons/22x22/Makefile.am
@@ -0,0 +1,8 @@
+icondir = $(datadir)/icons/hicolor/22x22/apps
+icon_DATA =
+
+EXTRA_DIST = \
+ $(icon_DATA)
+
+clean-local :
+ rm -f *~
diff --git a/data/icons/48x48/Makefile.am b/data/icons/48x48/Makefile.am
new file mode 100644
index 0000000..f275ac1
--- /dev/null
+++ b/data/icons/48x48/Makefile.am
@@ -0,0 +1,12 @@
+icondir = $(datadir)/icons/hicolor/48x48/apps
+icon_DATA = \
+ gdu-eject.png \
+ gdu-mount.png \
+ gdu-unmount.png \
+ gnome-disk-utility.png
+
+EXTRA_DIST = \
+ $(icon_DATA)
+
+clean-local :
+ rm -f *~
diff --git a/data/icons/48x48/gdu-eject.png b/data/icons/48x48/gdu-eject.png
new file mode 100644
index 0000000..bd24422
--- /dev/null
+++ b/data/icons/48x48/gdu-eject.png
Binary files differ
diff --git a/data/icons/48x48/gdu-mount.png b/data/icons/48x48/gdu-mount.png
new file mode 100644
index 0000000..307bb8a
--- /dev/null
+++ b/data/icons/48x48/gdu-mount.png
Binary files differ
diff --git a/data/icons/48x48/gdu-unmount.png b/data/icons/48x48/gdu-unmount.png
new file mode 100644
index 0000000..949cb4f
--- /dev/null
+++ b/data/icons/48x48/gdu-unmount.png
Binary files differ
diff --git a/data/icons/48x48/gnome-disk-utility.png b/data/icons/48x48/gnome-disk-utility.png
new file mode 100644
index 0000000..0ea126c
--- /dev/null
+++ b/data/icons/48x48/gnome-disk-utility.png
Binary files differ
diff --git a/data/icons/Makefile.am b/data/icons/Makefile.am
new file mode 100644
index 0000000..eb28721
--- /dev/null
+++ b/data/icons/Makefile.am
@@ -0,0 +1,16 @@
+
+SUBDIRS = 16x16 22x22 48x48 scalable
+
+gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
+
+install-data-hook:
+ @-if test -z "$(DESTDIR)"; then \
+ echo "Updating Gtk icon cache."; \
+ $(gtk_update_icon_cache); \
+ else \
+ echo "*** Icon cache not updated. After install, run this:"; \
+ echo "*** $(gtk_update_icon_cache)"; \
+ fi
+
+clean-local :
+ rm -f *~
diff --git a/data/icons/scalable/Makefile.am b/data/icons/scalable/Makefile.am
new file mode 100644
index 0000000..d4a919b
--- /dev/null
+++ b/data/icons/scalable/Makefile.am
@@ -0,0 +1,8 @@
+icondir = $(datadir)/icons/hicolor/scalable/apps
+icon_DATA =
+
+EXTRA_DIST = \
+ $(icon_DATA)
+
+clean-local :
+ rm -f *~