diff options
author | Samuli Suominen <drac@gentoo.org> | 2008-01-12 10:13:55 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2008-01-12 10:13:55 +0000 |
commit | 00d9460aa1134a9bfd8967b5eb9c2a4f2ee39d6f (patch) | |
tree | 8118d75949c7dc3110b2504abb8c8093d68d5768 /x11-plugins/wmmaiload/wmmaiload-2.2.1-r1.ebuild | |
parent | version bump (diff) | |
download | gentoo-2-00d9460aa1134a9bfd8967b5eb9c2a4f2ee39d6f.tar.gz gentoo-2-00d9460aa1134a9bfd8967b5eb9c2a4f2ee39d6f.tar.bz2 gentoo-2-00d9460aa1134a9bfd8967b5eb9c2a4f2ee39d6f.zip |
Use GTK+-2.
(Portage version: 2.1.4_rc14, RepoMan options: --force)
Diffstat (limited to 'x11-plugins/wmmaiload/wmmaiload-2.2.1-r1.ebuild')
-rw-r--r-- | x11-plugins/wmmaiload/wmmaiload-2.2.1-r1.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/x11-plugins/wmmaiload/wmmaiload-2.2.1-r1.ebuild b/x11-plugins/wmmaiload/wmmaiload-2.2.1-r1.ebuild new file mode 100644 index 000000000000..fe15724ed1c9 --- /dev/null +++ b/x11-plugins/wmmaiload/wmmaiload-2.2.1-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmmaiload/wmmaiload-2.2.1-r1.ebuild,v 1.1 2008/01/12 10:13:54 drac Exp $ + +inherit eutils toolchain-funcs + +DESCRIPTION="dockapp that monitors one or more mailboxes." +SRC_URI="http://tnemeth.free.fr/projets/programmes/${P}.tar.gz" +HOMEPAGE="http://tnemeth.free.fr/projets/dockapps.html" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND=">=x11-libs/gtk+-2 + x11-libs/libXpm" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-gtk.patch +} + +src_compile() { + ./configure -p /usr || die "configure failed." + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" \ + DEBUG_LDFLAGS="" LDFLAGS="${LDFLAGS}" \ + DEBUG_CFLAGS="" || die "emake failed." +} + +src_install () { + dobin ${PN}/${PN} ${PN}-config/${PN}-config + doman doc/*.1 + dodoc AUTHORS ChangeLog FAQ NEWS README THANKS TODO doc/sample.${PN}rc +} |