summaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato/sato-icon-theme
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-sato/sato-icon-theme')
-rw-r--r--meta/recipes-sato/sato-icon-theme/sato-icon-theme.inc24
-rw-r--r--meta/recipes-sato/sato-icon-theme/sato-icon-theme/iconpath-option.patch51
-rw-r--r--meta/recipes-sato/sato-icon-theme/sato-icon-theme_0.4.1.bb6
3 files changed, 81 insertions, 0 deletions
diff --git a/meta/recipes-sato/sato-icon-theme/sato-icon-theme.inc b/meta/recipes-sato/sato-icon-theme/sato-icon-theme.inc
new file mode 100644
index 0000000000..a1669c6f2e
--- /dev/null
+++ b/meta/recipes-sato/sato-icon-theme/sato-icon-theme.inc
@@ -0,0 +1,24 @@
1DESCRIPTION = "Sato Icon Theme"
2HOMEPAGE = "http://www.o-hand.com"
3BUGTRACKER = "http://bugzilla.openedhand.com/"
4
5LICENSE = "CCPL"
6LIC_FILES_CHKSUM = "file://COPYING;md5=56a830bbe6e4697fe6cbbae01bb7c2b2"
7
8SECTION = "x11"
9DEPENDS = ""
10
11inherit autotools pkgconfig
12
13FILES_${PN} += "${datadir}"
14
15PACKAGE_ARCH = "all"
16
17EXTRA_OECONF += "--with-iconmap=${STAGING_LIBDIR_NATIVE}/../libexec/icon-name-mapping"
18
19pkg_postinst_${PN} () {
20 if [ "x$D" != "x" ]; then
21 exit 1
22 fi
23 gtk-update-icon-cache -q /usr/share/icons/Sato
24}
diff --git a/meta/recipes-sato/sato-icon-theme/sato-icon-theme/iconpath-option.patch b/meta/recipes-sato/sato-icon-theme/sato-icon-theme/iconpath-option.patch
new file mode 100644
index 0000000000..cfa6a0dd18
--- /dev/null
+++ b/meta/recipes-sato/sato-icon-theme/sato-icon-theme/iconpath-option.patch
@@ -0,0 +1,51 @@
1pkg-config will only search the target sysroot and we want the native script. This
2patch adds an option to allow the path to the tool to be specified.
3
4RP - 12/8/10
5
6Index: sato-icon-theme-0.4.1/configure.ac
7===================================================================
8--- sato-icon-theme-0.4.1.orig/configure.ac 2010-08-12 12:23:25.000000000 +0100
9+++ sato-icon-theme-0.4.1/configure.ac 2010-08-12 12:48:14.000000000 +0100
10@@ -11,20 +11,29 @@
11
12 UTILS_REQUIRED=0.8.2
13
14-AC_MSG_CHECKING([icon-naming-utils >= $UTILS_REQUIRED])
15-PKG_CHECK_EXISTS(icon-naming-utils >= $UTILS_REQUIRED,
16- have_utils=yes, have_utils=no)
17-if test "x$have_utils" = "xyes"; then
18- UTILS_PATH="`$PKG_CONFIG --variable=program_path icon-naming-utils`"
19- ICONMAP="$UTILS_PATH/icon-name-mapping"
20- AC_SUBST(ICONMAP)
21- AC_MSG_RESULT([yes])
22-else
23- AC_MSG_RESULT([no])
24- AC_MSG_ERROR([icon-naming-utils >= $UTILS_REQUIRED is required to build
25- and install sato-icon-theme])
26+PKG_PROG_PKG_CONFIG()
27+
28+AC_ARG_WITH(iconmap,
29+ AC_HELP_STRING([--with-iconmap=<dir>], [The location of the icon-name-mapping script to use]),
30+ ICONMAP=$withval, ICONMAP="")
31+
32+if test "x$ICONMAP" = "x"; then
33+ AC_MSG_CHECKING([icon-naming-utils >= $UTILS_REQUIRED])
34+ PKG_CHECK_EXISTS(icon-naming-utils >= $UTILS_REQUIRED,
35+ have_utils=yes, have_utils=no)
36+ if test "x$have_utils" = "xyes"; then
37+ UTILS_PATH="`$PKG_CONFIG --variable=program_path icon-naming-utils`"
38+ ICONMAP="$UTILS_PATH/icon-name-mapping"
39+
40+ AC_MSG_RESULT([yes])
41+ else
42+ AC_MSG_RESULT([no])
43+ AC_MSG_ERROR([icon-naming-utils >= $UTILS_REQUIRED is required to build
44+ and install sato-icon-theme])
45+ fi
46 fi
47
48+AC_SUBST(ICONMAP)
49
50 AC_CONFIG_FILES([
51 Makefile
diff --git a/meta/recipes-sato/sato-icon-theme/sato-icon-theme_0.4.1.bb b/meta/recipes-sato/sato-icon-theme/sato-icon-theme_0.4.1.bb
new file mode 100644
index 0000000000..aa976b1022
--- /dev/null
+++ b/meta/recipes-sato/sato-icon-theme/sato-icon-theme_0.4.1.bb
@@ -0,0 +1,6 @@
1require sato-icon-theme.inc
2
3DEPENDS += "icon-naming-utils-native"
4
5SRC_URI = "http://pokylinux.org/releases/sato/${PN}-${PV}.tar.gz \
6 file://iconpath-option.patch"