diff options
author | 2007-07-26 03:43:34 +0000 | |
---|---|---|
committer | 2007-07-26 03:43:34 +0000 | |
commit | ceade3bcbc85d0e3e9af3f68620a7c95b869cdfb (patch) | |
tree | e3cbe4f6b003cf4a0f063298581281fe18ed4176 /app-misc/emelfm2 | |
parent | Marked ppc stable for bug #185651, thanks ndansmith. (diff) | |
download | gentoo-2-ceade3bcbc85d0e3e9af3f68620a7c95b869cdfb.tar.gz gentoo-2-ceade3bcbc85d0e3e9af3f68620a7c95b869cdfb.tar.bz2 gentoo-2-ceade3bcbc85d0e3e9af3f68620a7c95b869cdfb.zip |
Restrict test and clean up.
(Portage version: 2.1.3_rc9)
Diffstat (limited to 'app-misc/emelfm2')
-rw-r--r-- | app-misc/emelfm2/ChangeLog | 5 | ||||
-rw-r--r-- | app-misc/emelfm2/emelfm2-0.3.4.ebuild | 28 |
2 files changed, 15 insertions, 18 deletions
diff --git a/app-misc/emelfm2/ChangeLog b/app-misc/emelfm2/ChangeLog index 6437d8db736b..688111bc604f 100644 --- a/app-misc/emelfm2/ChangeLog +++ b/app-misc/emelfm2/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-misc/emelfm2 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/emelfm2/ChangeLog,v 1.14 2007/07/25 20:12:32 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/emelfm2/ChangeLog,v 1.15 2007/07/26 03:43:34 drac Exp $ + + 26 Jul 2007; Samuli Suominen <drac@gentoo.org> emelfm2-0.3.4.ebuild: + Restrict test and clean up. 25 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org> emelfm2-0.3.4.ebuild: Keyworded ~sparc wrt #186562 diff --git a/app-misc/emelfm2/emelfm2-0.3.4.ebuild b/app-misc/emelfm2/emelfm2-0.3.4.ebuild index bb257b7eda2e..41e352803ff5 100644 --- a/app-misc/emelfm2/emelfm2-0.3.4.ebuild +++ b/app-misc/emelfm2/emelfm2-0.3.4.ebuild @@ -1,18 +1,20 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/emelfm2/emelfm2-0.3.4.ebuild,v 1.3 2007/07/25 20:12:32 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/emelfm2/emelfm2-0.3.4.ebuild,v 1.4 2007/07/26 03:43:34 drac Exp $ inherit eutils toolchain-funcs -DESCRIPTION="A file manager that implements the popular two-pane design based on gtk+-2" -HOMEPAGE="http://emelfm2.net/" -SRC_URI="http://emelfm2.net/rel/${P}.tar.gz" +DESCRIPTION="A file manager that implements the popular two-pane design" +HOMEPAGE="http://emelfm2.net" +SRC_URI="http://${PN}.net/rel/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~sparc ~x86" IUSE="unicode fam" +RESTRICT="test" + DEPEND=">=x11-libs/gtk+-2.6 fam? ( virtual/fam )" RDEPEND="${DEPEND}" @@ -34,21 +36,13 @@ src_compile() { myconf="${myconf} USE_FAM=0" fi - # CC= looks bad with CFLAGS, instead the Makefile should be patched - emake \ - ICONDIR="/usr/share/pixmaps" \ - PREFIX="/usr" \ - CC="$(tc-getCC) ${CFLAGS}" \ - ${myconf} || die "emake failed" + emake ICONDIR="/usr/share/pixmaps" \ + PREFIX="/usr" CC="$(tc-getCC) ${CFLAGS}" \ + ${myconf} || die "emake failed." } src_install() { - dodir /usr/bin - - emake \ - ICONDIR="${D}/usr/share/pixmaps" \ - PREFIX="${D}/usr" \ - install || die "emake install failed" - + emake ICONDIR="${D}"/usr/share/pixmaps \ + PREFIX="${D}"/usr install || die "emake install failed." prepalldocs } |