diff options
author | Raymond Danks <raymond@edanks.com> | 2006-07-24 16:08:32 +0000 |
---|---|---|
committer | Raymond Danks <raymond@edanks.com> | 2006-07-24 16:08:32 +0000 |
commit | 1e6438c6cb5d855c836018d621be963eed44ae11 (patch) | |
tree | c4f3db8c2366133c9fffd0bc23d9f1eddd7d99a7 /packages/icewm/icewm_1.2.26.bb | |
parent | cbe58c1e1ca9714d8dd7fcd6391a4dd45ced0936 (diff) |
icewm - configure patch for using pkgconfig to find libxft.
- point to correct X includes, libs, and mkfontdir-native.
- upgrade to icewm version 1.2.26.
Diffstat (limited to 'packages/icewm/icewm_1.2.26.bb')
-rw-r--r-- | packages/icewm/icewm_1.2.26.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/packages/icewm/icewm_1.2.26.bb b/packages/icewm/icewm_1.2.26.bb new file mode 100644 index 0000000000..7c1e2a2bf7 --- /dev/null +++ b/packages/icewm/icewm_1.2.26.bb @@ -0,0 +1,25 @@ +SECTION = "x11/wm" +DESCRIPTION = "IceWM Window Manager" +LICENSE = "GPL" +DEPENDS = "libx11 libxext libxcomposite libxfixes libxdamage libxrender libxinerama libxpm xrandr xft mkfontdir-native" +PR = "r0" + +SRC_URI = "${SOURCEFORGE_MIRROR}/icewm/icewm-${PV}.tar.gz \ + file://makefile.patch;patch=1 \ + file://configure.patch;patch=1" + +S = "${WORKDIR}/icewm-${PV}" + +inherit autotools pkgconfig + +EXTRA_OECONF = "--disable-i18n --without-imlib --with-xpm --with-gnome-menus \ + --x-includes=${STAGING_INCDIR} --x-libraries=${STAGING_LIBDIR} \ + --with-mkfontdir=${STAGING_DIR}/${BUILD_SYS}/bin/mkfontdir" + +pkg_postinst() { +update-alternatives --install /usr/bin/x-window-manager x-window-manager /usr/bin/icewm-session 10 +} + +pkg_postrm() { +update-alternatives --remove x-window-manager /usr/bin/icewm-session +} |