summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-01-17 20:23:12 +0000
committerMike Frysinger <vapier@gentoo.org>2010-01-17 20:23:12 +0000
commit5a91cab10c247e08e86346cd1a6a267d082e7386 (patch)
tree6949b70bd6509a3b7d62480753fb079baad83470 /x11-wm/enlightenment
parentsync with latest 1.0.1 ebuild (diff)
downloadgentoo-2-5a91cab10c247e08e86346cd1a6a267d082e7386.tar.gz
gentoo-2-5a91cab10c247e08e86346cd1a6a267d082e7386.tar.bz2
gentoo-2-5a91cab10c247e08e86346cd1a6a267d082e7386.zip
Switch to eautotools and trim empty doc dir #294456 by Diego E. Pettenò.
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'x11-wm/enlightenment')
-rw-r--r--x11-wm/enlightenment/ChangeLog8
-rw-r--r--x11-wm/enlightenment/enlightenment-1.0.1.ebuild18
2 files changed, 14 insertions, 12 deletions
diff --git a/x11-wm/enlightenment/ChangeLog b/x11-wm/enlightenment/ChangeLog
index e6fbca1ed033..05f9fd2ada9b 100644
--- a/x11-wm/enlightenment/ChangeLog
+++ b/x11-wm/enlightenment/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-wm/enlightenment
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/enlightenment/ChangeLog,v 1.119 2009/11/08 21:26:18 halcy0n Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/enlightenment/ChangeLog,v 1.120 2010/01/17 20:23:12 vapier Exp $
+
+ 17 Jan 2010; Mike Frysinger <vapier@gentoo.org>
+ enlightenment-1.0.1.ebuild:
+ Switch to eautotools and trim empty doc dir #294456 by Diego E. Pettenò.
08 Nov 2009; Mark Loeser <halcy0n@gentoo.org>
enlightenment-0.16.8.15.ebuild:
diff --git a/x11-wm/enlightenment/enlightenment-1.0.1.ebuild b/x11-wm/enlightenment/enlightenment-1.0.1.ebuild
index b6754c120603..e640572c3532 100644
--- a/x11-wm/enlightenment/enlightenment-1.0.1.ebuild
+++ b/x11-wm/enlightenment/enlightenment-1.0.1.ebuild
@@ -1,13 +1,13 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/enlightenment/enlightenment-1.0.1.ebuild,v 1.1 2009/09/30 02:15:35 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/enlightenment/enlightenment-1.0.1.ebuild,v 1.2 2010/01/17 20:23:12 vapier Exp $
EAPI="2"
if [[ ${PV} == *9999 ]] ; then
ESVN_REPO_URI="http://svn.enlightenment.org/svn/e/trunk/E16/e"
inherit subversion
SRC_URI=""
- KEYWORDS=""
+ #KEYWORDS=""
S=${WORKDIR}/e16/e
else
SRC_URI="mirror://sourceforge/enlightenment/e16-${PV/_/-}.tar.gz"
@@ -54,13 +54,10 @@ DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
PDEPEND="doc? ( app-doc/edox-data )"
-src_unpack() {
- if [[ ${PV} == *9999 ]] ; then
- subversion_src_unpack
- cd "${S}"
- NOCONFIGURE=blah ./autogen.sh
- else
- unpack ${A}
+src_prepare() {
+ if [[ ! -e configure ]] ; then
+ eautopoint
+ eautoreconf
fi
}
@@ -80,5 +77,6 @@ src_configure() {
src_install() {
emake install DESTDIR="${D}" || die
+ rmdir "${D}"/usr/share/doc/e16 || die #294456
dodoc AUTHORS ChangeLog COMPLIANCE README* docs/README* TODO
}