diff options
Diffstat (limited to 'app-misc/bbkeysconf/bbkeysconf-1.3.ebuild')
-rw-r--r-- | app-misc/bbkeysconf/bbkeysconf-1.3.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app-misc/bbkeysconf/bbkeysconf-1.3.ebuild b/app-misc/bbkeysconf/bbkeysconf-1.3.ebuild new file mode 100644 index 000000000000..0f012f7a40e3 --- /dev/null +++ b/app-misc/bbkeysconf/bbkeysconf-1.3.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Joe Bormolini <lordjoe@gentoo.org> + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="Configure bbkeys" +SRC_URI="http://movingparts.thelinuxcommunity.org/bbkeys/${A}" +HOMEPAGE="http://movingparts.thelinuxcommunity.org" + +DEPEND=">=x11-libs/qt-x11-2.3.0 + >=x11-wm/blackbox-0.61 + >=x11-wm/bbkeys-0.8.2" + +src_compile() { + + local qtdir=${QTDIR} + try make MOC=${qtdir}/bin/moc CXXFLAGS="-g -I${qtdir}/include ${CXXFLAGS}" LIBS="-L${qtdir}/lib -L/usr/X11R6/lib -lqt -lX11" +} + +src_install () { + + into /usr/X11R6 + dobin bbkeysconf +} + |