# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-util/dialogblocks/dialogblocks-4.15.ebuild,v 1.1 2007/09/25 21:39:56 mrness Exp $ inherit eutils DESCRIPTION="GUI builder tool for wxWidgets" HOMEPAGE="http://www.anthemion.co.uk/dialogblocks/" SRC_URI="http://www.anthemion.co.uk/${PN}/DialogBlocks-${PV}-i386-gtk2-unicode.tar.gz" SLOT="0" LICENSE="as-is" KEYWORDS="-* ~amd64 ~x86" IUSE="" DEPEND=">=x11-libs/gtk+-2" # make sure gtk+ is installed before built_with_use test RDEPEND="${DEPEND} >=media-libs/libpng-1.2 media-libs/jpeg >=media-libs/tiff-3 amd64? ( app-emulation/emul-linux-x86-gtklibs )" S="${WORKDIR}" RESTRICT="strip" # the dialogblocks program is already stripped pkg_setup() { if use x86 && ! built_with_use ">=x11-libs/gtk+-2" xinerama ; then echo eerror "In order to emerge this package, you need to re-emerge" eerror "x11-libs/gtk+ with xinerama USE flag enabled." die "gtk+ must have xinerama USE flag enabled" fi } src_install() { dodir /opt/dialogblocks tar -xzf DialogBlocksData.tar.gz -C "${D}/opt/dialogblocks" || die "failed to extract data from tarball" fowners -R root:root /opt/dialogblocks dosym /opt/dialogblocks/dialogblocks32x32.xpm /usr/share/pixmaps/dialogblocks.xpm insinto /usr/share/applications doins "${FILESDIR}/dialogblocks.desktop" newbin "${FILESDIR}/dialogblocks.sh" dialogblocks } pkg_postinst() { # Fix incorrect owner of the directories, created by previous versions chown -R root:root "${ROOT}"/opt/dialogblocks }