diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-09-09 06:46:51 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-09-09 06:46:51 +0000 |
commit | 5dd8856aa61292fe32600fe30456e61b699428fb (patch) | |
tree | c01be1cea45f3611d973412e696c691bba65ac54 /x11-misc/xdialog | |
parent | taking out obsolete openoffice-ximian mask (diff) | |
download | historical-5dd8856aa61292fe32600fe30456e61b699428fb.tar.gz historical-5dd8856aa61292fe32600fe30456e61b699428fb.tar.bz2 historical-5dd8856aa61292fe32600fe30456e61b699428fb.zip |
clean up doc install; tidy
Diffstat (limited to 'x11-misc/xdialog')
-rw-r--r-- | x11-misc/xdialog/ChangeLog | 5 | ||||
-rw-r--r-- | x11-misc/xdialog/Manifest | 4 | ||||
-rw-r--r-- | x11-misc/xdialog/xdialog-2.1.1.ebuild | 19 |
3 files changed, 15 insertions, 13 deletions
diff --git a/x11-misc/xdialog/ChangeLog b/x11-misc/xdialog/ChangeLog index e6d723264606..85c1e4bd2787 100644 --- a/x11-misc/xdialog/ChangeLog +++ b/x11-misc/xdialog/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/xdialog # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdialog/ChangeLog,v 1.8 2004/09/09 06:39:47 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdialog/ChangeLog,v 1.9 2004/09/09 06:46:51 mr_bones_ Exp $ + + 08 Sep 2004; Michael Sterrett <mr_bones_@gentoo.org> xdialog-2.1.1.ebuild: + clean up doc install; tidy 08 Sep 2004; Michael Sterrett <mr_bones_@gentoo.org> -xdialog-2.0.6.ebuild: clean older ebuild diff --git a/x11-misc/xdialog/Manifest b/x11-misc/xdialog/Manifest index 553bec03877c..f9cd45b2b32a 100644 --- a/x11-misc/xdialog/Manifest +++ b/x11-misc/xdialog/Manifest @@ -1,3 +1,3 @@ -MD5 0eb830cee93b3ade686ecd61b9cb269f ChangeLog 1099 -MD5 f04624e7aead73c323c091a85a2ff577 xdialog-2.1.1.ebuild 745 +MD5 f7678233fdadbff77b02be8c8a141b3c ChangeLog 1206 +MD5 bd91592f8896d005012185313af7de05 xdialog-2.1.1.ebuild 805 MD5 d2d74da1ddf6cadf262ea4608ebcbbde files/digest-xdialog-2.1.1 66 diff --git a/x11-misc/xdialog/xdialog-2.1.1.ebuild b/x11-misc/xdialog/xdialog-2.1.1.ebuild index b75f4dd7df87..58074a946748 100644 --- a/x11-misc/xdialog/xdialog-2.1.1.ebuild +++ b/x11-misc/xdialog/xdialog-2.1.1.ebuild @@ -1,8 +1,7 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdialog/xdialog-2.1.1.ebuild,v 1.5 2004/09/07 16:25:59 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdialog/xdialog-2.1.1.ebuild,v 1.6 2004/09/09 06:46:51 mr_bones_ Exp $ -S=${WORKDIR}/${P/x/X} DESCRIPTION="drop-in replacement for cdialog using GTK" HOMEPAGE="http://xdialog.dyns.net/" SRC_URI="http://freshmeat.net/redir/xdialog/11876/url_bz2/Xdialog-${PV}.tar.bz2" @@ -16,16 +15,16 @@ DEPEND="virtual/x11 =x11-libs/gtk+-1.2* nls? ( >=sys-devel/gettext-0.10.38 )" +S="${WORKDIR}/${P/x/X}" + src_compile() { - econf `use_enable nls` || die - emake || die + econf $(use_enable nls) || die + emake || die "emake failed" } src_install() { - einstall || die - - dodoc ChangeLog AUTHORS COPYING INSTALL README* TODO ABOUT-NLS - - cd doc - dohtml -r . + make DESTDIR="${D}" install || die "make install failed" + rm -rf "${D}/usr/share/doc" + dodoc ChangeLog AUTHORS README* TODO + dohtml -r doc/ } |