diff options
author | Tony Vroon <chainsaw@gentoo.org> | 2008-02-21 17:14:14 +0000 |
---|---|---|
committer | Tony Vroon <chainsaw@gentoo.org> | 2008-02-21 17:14:14 +0000 |
commit | 31e0e3a000f84e3f7184f152e94fee8f17b4cb02 (patch) | |
tree | 07fb6e0b12c2d31e91e2bb8a89ce3150e62ba2b1 /app-misc/g15composer/g15composer-3.2.ebuild | |
parent | Add eutils inherit (diff) | |
download | gentoo-2-31e0e3a000f84e3f7184f152e94fee8f17b4cb02.tar.gz gentoo-2-31e0e3a000f84e3f7184f152e94fee8f17b4cb02.tar.bz2 gentoo-2-31e0e3a000f84e3f7184f152e94fee8f17b4cb02.zip |
Version bump as requested by Efimov Vadim <evadim@evadim.ru>, closes bug #208775.
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-misc/g15composer/g15composer-3.2.ebuild')
-rw-r--r-- | app-misc/g15composer/g15composer-3.2.ebuild | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/app-misc/g15composer/g15composer-3.2.ebuild b/app-misc/g15composer/g15composer-3.2.ebuild new file mode 100644 index 000000000000..366d69b660c8 --- /dev/null +++ b/app-misc/g15composer/g15composer-3.2.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/g15composer/g15composer-3.2.ebuild,v 1.1 2008/02/21 17:14:13 chainsaw Exp $ + +inherit eutils + +DESCRIPTION="A library to render text and shapes into a buffer usable by the Logitech G15 keyboard" +HOMEPAGE="http://g15tools.sourceforge.net/" +SRC_URI="mirror://sourceforge/g15tools/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86" +IUSE="amarok truetype examples" + +DEPEND="app-misc/g15daemon + >=dev-libs/libg15render-1.2 + truetype? ( media-libs/freetype ) + amarok? ( kde-base/kdelibs )" + +RDEPEND="${DEPEND} + amarok? ( dev-perl/DCOP-Amarok-Player )" + +pkg_setup() { + local failure=false + echo + if use amarok && ! built_with_use dev-lang/perl ithreads ; then + eerror "dev-lang/perl must be built with USE=\"ithreads\" for the Amarok display to work." + failure=true + fi + if use truetype && ! built_with_use dev-libs/libg15render truetype ; then + eerror "dev-libs/libg15render must be built with USE=\"truetype\" for truetype to work." + failure=true + fi + if ${failure}; then + die "Please rebuild the packages with corrected USE flags." + fi +} + +src_compile() { + econf \ + $(use_enable truetype ttf ) \ + || die "configure failed" + + emake || die "make failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + + newinitd "${FILESDIR}/${P}.initd" ${PN} + newconfd "${FILESDIR}/${P}.confd" ${PN} + + dodoc AUTHORS README ChangeLog + + if use examples ; then + exeinto "/usr/share/${PN}" + doexe examples/* + fi + + if use amarok ; then + exeinto "/usr/share/apps/amarok/scripts" + newexe examples/amarok-g15-perl.pl g15-display.pl + fi +} + +pkg_postinst() { + elog "Set the user to run g15composer in /etc/conf.d/g15composer before starting the service." + + if use amarok; then + echo + elog "g15-display.pl was installed into your Amarok script directory." + elog "To start it, have a look at Tools -> Script Manager in the Amarok menu." + fi +} |