diff options
author | 2010-08-27 15:48:46 +0000 | |
---|---|---|
committer | 2010-08-27 15:48:46 +0000 | |
commit | 1befeea0f5ecba2d2a332d1360e7a40c84bb3905 (patch) | |
tree | fcd5b89ded0ea7a1bb1cf7a18558ad16284784c4 /x11-misc/suxpanel/suxpanel-0.4b-r3.ebuild | |
parent | Masking dev-libs/pcl for QA removal. (diff) | |
download | historical-1befeea0f5ecba2d2a332d1360e7a40c84bb3905.tar.gz historical-1befeea0f5ecba2d2a332d1360e7a40c84bb3905.tar.bz2 historical-1befeea0f5ecba2d2a332d1360e7a40c84bb3905.zip |
Respect LDFLAGS wrt bug 333979. Thanks to Diego for the report.
Package-Manager: portage-2.1.8.3/cvs/Linux x86_64
Diffstat (limited to 'x11-misc/suxpanel/suxpanel-0.4b-r3.ebuild')
-rw-r--r-- | x11-misc/suxpanel/suxpanel-0.4b-r3.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/x11-misc/suxpanel/suxpanel-0.4b-r3.ebuild b/x11-misc/suxpanel/suxpanel-0.4b-r3.ebuild new file mode 100644 index 000000000000..3c7136feabb3 --- /dev/null +++ b/x11-misc/suxpanel/suxpanel-0.4b-r3.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/suxpanel/suxpanel-0.4b-r3.ebuild,v 1.1 2010/08/27 15:48:45 xarthisius Exp $ + +EAPI=2 +inherit eutils flag-o-matic multilib toolchain-funcs + +DESCRIPTION="SuxPanel is a complete rewrite of MacOS Style Panel, a light-weight X11 desktop panel" +HOMEPAGE="http://suxpanel.berlios.de" +SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="x11-libs/gtk+:2 + x11-libs/libwnck" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_prepare() { + epatch "${FILESDIR}"/${P}-stdlib.patch \ + "${FILESDIR}"/${P}-makefile.patch + + sed -i \ + -e "s:share/${PN}/plugins:$(get_libdir)/${PN}/plugins:" \ + Makefile.in suxpanel-install.sh || die +} + +src_configure() { + use amd64 && append-flags -O0 + tc-export CC + econf +} + +src_install () { + emake DESTDIR="${D}" install || die + dobin suxpanel-install.sh || die + dodoc README || die +} |