diff options
author | Jeroen Roovers <jer@gentoo.org> | 2011-12-28 16:44:25 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2011-12-28 16:44:25 +0000 |
commit | 0bb17ea12134ee074383286adcac831b6640a394 (patch) | |
tree | 2a5da10cdb9c4df77a66ea001f18b59dd010a771 /dev-util | |
parent | Drop old. (diff) | |
download | gentoo-2-0bb17ea12134ee074383286adcac831b6640a394.tar.gz gentoo-2-0bb17ea12134ee074383286adcac831b6640a394.tar.bz2 gentoo-2-0bb17ea12134ee074383286adcac831b6640a394.zip |
Install examples properly by Ago (bug #396195).
(Portage version: 2.2.0_alpha83/cvs/Linux x86_64)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/dialog/ChangeLog | 8 | ||||
-rw-r--r-- | dev-util/dialog/dialog-1.1.20111020-r1.ebuild (renamed from dev-util/dialog/dialog-1.1.20111020.ebuild) | 14 |
2 files changed, 16 insertions, 6 deletions
diff --git a/dev-util/dialog/ChangeLog b/dev-util/dialog/ChangeLog index fb6dcb30a49a..18220073add0 100644 --- a/dev-util/dialog/ChangeLog +++ b/dev-util/dialog/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-util/dialog # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.141 2011/12/28 10:09:35 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.142 2011/12/28 16:44:25 jer Exp $ + +*dialog-1.1.20111020-r1 (28 Dec 2011) + + 28 Dec 2011; Jeroen Roovers <jer@gentoo.org> -dialog-1.1.20111020.ebuild, + +dialog-1.1.20111020-r1.ebuild: + Install samples properly by Ago (bug #396195). 28 Dec 2011; Agostino Sarubbo <ago@gentoo.org> dialog-1.1.20110707-r1.ebuild: Stable for AMD64, wrt bug #396161 diff --git a/dev-util/dialog/dialog-1.1.20111020.ebuild b/dev-util/dialog/dialog-1.1.20111020-r1.ebuild index aa28e59f80b3..32221368d4f5 100644 --- a/dev-util/dialog/dialog-1.1.20111020.ebuild +++ b/dev-util/dialog/dialog-1.1.20111020-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.1.20111020.ebuild,v 1.1 2011/12/27 03:19:51 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.1.20111020-r1.ebuild,v 1.1 2011/12/28 16:44:25 jer Exp $ -EAPI="2" +EAPI="4" inherit multilib @@ -44,16 +44,20 @@ src_configure() { src_install() { if use minimal; then - emake DESTDIR="${D}" install || die "install failed" + emake DESTDIR="${D}" install else - emake DESTDIR="${D}" install-full || die "install failed" + emake DESTDIR="${D}" install-full fi dodoc CHANGES README VERSION if use examples; then docinto samples - dodoc samples/* + dodoc $( find samples -maxdepth 1 -type f ) + docinto samples/copifuncs + dodoc $( find samples/copifuncs -maxdepth 1 -type f ) + docinto samples/install + dodoc $( find samples/install -type f ) fi if ! use static-libs; then |