diff options
Diffstat (limited to 'x11-misc/bmpanel/bmpanel-0.9.27-r1.ebuild')
-rw-r--r-- | x11-misc/bmpanel/bmpanel-0.9.27-r1.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/x11-misc/bmpanel/bmpanel-0.9.27-r1.ebuild b/x11-misc/bmpanel/bmpanel-0.9.27-r1.ebuild new file mode 100644 index 000000000000..cce6a31cb75a --- /dev/null +++ b/x11-misc/bmpanel/bmpanel-0.9.27-r1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=2 + +inherit base eutils + +DESCRIPTION="a lightweight, NETWM compliant panel for X11 Window System" +HOMEPAGE="http://nsf.110mb.com/bmpanel" +SRC_URI="http://nsf.110mb.com/${PN}/${P}.tar.gz" + +LICENSE="ZLIB" +SLOT="0" +KEYWORDS="amd64 ~ppc ~x86" +IUSE="debug libev libevent" + +RDEPEND=">=media-libs/imlib2-1.4.0[X] + media-libs/freetype:2 + x11-libs/libX11 + x11-libs/libXrender + x11-libs/libXcomposite + x11-libs/libXfixes + media-libs/fontconfig + libev? ( dev-libs/libev ) + libevent? ( dev-libs/libevent )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}/Makefile.patch" +) + +DOCS=( AUTHORS README ) + +src_configure() { + # the provided configure script is broken. + # it doesn't provide --disable-foo, --host etc. so we can't use econf here. + local myconf="--prefix=/usr --ugly" + + use debug && myconf="${myconf} --debug" + use libev && myconf="${myconf} --with-ev" + use libevent && myconf="${myconf} --with-event" + + einfo "./configure ${myconf}" + ./configure ${myconf} || die "configure failed" +} |