diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-08-15 14:23:50 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-08-15 14:23:50 +0000 |
commit | f32e5cb328c2928895e873a682f69292805b2069 (patch) | |
tree | a908222635d1ed43953818ebfab5df8d792f3714 /app-accessibility | |
parent | Do not check for selinux at all, ever (bug #278169 comment #14). (diff) | |
download | gentoo-2-f32e5cb328c2928895e873a682f69292805b2069.tar.gz gentoo-2-f32e5cb328c2928895e873a682f69292805b2069.tar.bz2 gentoo-2-f32e5cb328c2928895e873a682f69292805b2069.zip |
old
(Portage version: 2.2_rc38/cvs/Linux x86_64)
Diffstat (limited to 'app-accessibility')
-rw-r--r-- | app-accessibility/pidgin-festival/pidgin-festival-2.2-r1.ebuild | 18 | ||||
-rw-r--r-- | app-accessibility/pidgin-festival/pidgin-festival-2.2.ebuild | 35 |
2 files changed, 3 insertions, 50 deletions
diff --git a/app-accessibility/pidgin-festival/pidgin-festival-2.2-r1.ebuild b/app-accessibility/pidgin-festival/pidgin-festival-2.2-r1.ebuild index f9b1d9e867a0..e9eeb18ffbf4 100644 --- a/app-accessibility/pidgin-festival/pidgin-festival-2.2-r1.ebuild +++ b/app-accessibility/pidgin-festival/pidgin-festival-2.2-r1.ebuild @@ -1,37 +1,25 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/pidgin-festival/pidgin-festival-2.2-r1.ebuild,v 1.1 2009/03/07 14:57:31 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/pidgin-festival/pidgin-festival-2.2-r1.ebuild,v 1.2 2009/08/15 14:23:50 ssuominen Exp $ -EAPI="2" - -inherit eutils +EAPI=2 DESCRIPTION="A plugin for pidgin which enables text-to-speech output of conversations using festival." HOMEPAGE="http://pidgin.festival.sourceforge.net" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" - SLOT="0" KEYWORDS="~amd64 ~ppc ~sparc ~x86" - IUSE="" RDEPEND="app-accessibility/festival net-im/pidgin[gtk] >=x11-libs/gtk+-2" - DEPEND="${RDEPEND} dev-util/pkgconfig" -#pkg_setup() { -# if ! built_with_use net-im/pidgin gtk; then -# eerror "You need to compile net-im/pidgin with USE=gtk" -# die "Missing gtk USE flag on net-im/pidgin" -# fi -#} - src_install() { - make DESTDIR="${D}" install || die + emake DESTDIR="${D}" install || die "emake install failed" dodoc README ChangeLog } diff --git a/app-accessibility/pidgin-festival/pidgin-festival-2.2.ebuild b/app-accessibility/pidgin-festival/pidgin-festival-2.2.ebuild deleted file mode 100644 index f0140a4a5deb..000000000000 --- a/app-accessibility/pidgin-festival/pidgin-festival-2.2.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/pidgin-festival/pidgin-festival-2.2.ebuild,v 1.6 2008/03/05 19:34:03 tester Exp $ - -inherit eutils - -DESCRIPTION="A plugin for pidgin which enables text-to-speech output of conversations using festival." -HOMEPAGE="http://pidgin.festival.sourceforge.net" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" - -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" - -IUSE="" - -RDEPEND="app-accessibility/festival - net-im/pidgin - >=x11-libs/gtk+-2" - -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -pkg_setup() { - if ! built_with_use net-im/pidgin gtk; then - eerror "You need to compile net-im/pidgin with USE=gtk" - die "Missing gtk USE flag on net-im/pidgin" - fi -} - -src_install() { - make DESTDIR="${D}" install || die - dodoc README ChangeLog -} |