diff options
Diffstat (limited to 'x11-misc/idesk/idesk-0.7.5-r1.ebuild')
-rw-r--r-- | x11-misc/idesk/idesk-0.7.5-r1.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/x11-misc/idesk/idesk-0.7.5-r1.ebuild b/x11-misc/idesk/idesk-0.7.5-r1.ebuild new file mode 100644 index 000000000000..ea60ff204c3d --- /dev/null +++ b/x11-misc/idesk/idesk-0.7.5-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/idesk/idesk-0.7.5-r1.ebuild,v 1.1 2005/12/29 20:17:43 nelchael Exp $ + +DESCRIPTION="Utility to place icons on the root window" +HOMEPAGE="http://idesk.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 sparc x86" +IUSE="" + +DEPEND=">=media-libs/imlib2-1.1.2.20040912 + virtual/x11 + media-libs/freetype + >=dev-util/pkgconfig-0.12.0 + dev-libs/libxml2 + =dev-libs/glib-2* + gnome-extra/libgsf + =x11-libs/pango-1* + =x11-libs/gtk+-2* + media-libs/libart_lgpl + x11-libs/startup-notification" + +src_unpack() { + unpack "${A}" + cd "${S}" + sed -i -e 's,/usr/local/,/usr/,' examples/default.lnk +} + +src_compile() { + econf --enable-libsn || die "configuration failed" + emake || die "compilation failed" +} + +src_install() { + make DESTDIR=${D} install || die "make install failed" + dodoc README AUTHORS NEWS TODO +} + +pkg_postinst() { + einfo "Please refer to ${HOMEPAGE} for info on configuring ${PN}" +} |