diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-15 00:27:04 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-15 00:27:04 +0000 |
commit | 6a69a460e177f043efe37de8c86f25c384b9ef9f (patch) | |
tree | 5de21a7a98172a0c3b1cb0fc422d3cad18dcf515 /x11-libs/xview/xview-3.2.ebuild | |
parent | Move as much global stuff as possible to pkg_setup(), move inherit to top of ... (diff) | |
download | historical-6a69a460e177f043efe37de8c86f25c384b9ef9f.tar.gz historical-6a69a460e177f043efe37de8c86f25c384b9ef9f.tar.bz2 historical-6a69a460e177f043efe37de8c86f25c384b9ef9f.zip |
don't assign to PN; tidy
Diffstat (limited to 'x11-libs/xview/xview-3.2.ebuild')
-rw-r--r-- | x11-libs/xview/xview-3.2.ebuild | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/x11-libs/xview/xview-3.2.ebuild b/x11-libs/xview/xview-3.2.ebuild index b793cd39899a..8086910bfc00 100644 --- a/x11-libs/xview/xview-3.2.ebuild +++ b/x11-libs/xview/xview-3.2.ebuild @@ -1,26 +1,30 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/xview/xview-3.2.ebuild,v 1.4 2004/02/17 08:06:47 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/xview/xview-3.2.ebuild,v 1.5 2004/03/15 00:27:04 mr_bones_ Exp $ + +inherit eutils DESCRIPTION="The X Window-System-based Visual/Integrated Environment for Workstations" HOMEPAGE="http://www.ibiblio.org/pub/Linux/libs/X/xview/" -PN="${P}p1.4" +MY_PN="${P}p1.4" # This is our compound patch derived from debian. We use it because: # * xview is a contribution made to Sun Microsystems (?) to the X community, but # fixes for it don't appear to be around other than in the other free distributions. # * It does little harm, only some defaults are changed which we can redefine anyway -SRC_PATCH="${PN/-/_}-16.diff" +SRC_PATCH="${MY_PN/-/_}-16.diff" # We use the xview tarball available from the X organization, but xfree86 appears # to be up and available more often so we use that (it's their primary mirror). -SRC_URI="http://www.ibiblio.org/pub/Linux/libs/X/xview/${PN}.src.tar.gz +SRC_URI="http://www.ibiblio.org/pub/Linux/libs/X/xview/${MY_PN}.src.tar.gz http://ftp.debian.org/pool/main/x/xview/${SRC_PATCH}.gz" -S=${WORKDIR}/${PN} +S=${WORKDIR}/${MY_PN} LICENSE="sun-openlook" SLOT="0" KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc x86" +IUSE="" + DEPEND="virtual/x11" src_unpack() { @@ -51,8 +55,7 @@ src_install() { # The rest of the docs is already installed cd ${S}/doc - dodoc README xview-info olgx_api.txt olgx_api.ps sel_api.txt dnd_api.txt whats_new.ps - dodoc bugform - dodoc config/usenixws/paper.ps + dodoc README xview-info olgx_api.txt olgx_api.ps sel_api.txt \ + dnd_api.txt whats_new.ps bugform config/usenixws/paper.ps rm -rf ${D}/usr/X11R6/share/doc/xview && rm -rf ${D}/usr/X11R6/share/doc } |