diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-08-01 16:07:18 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-08-01 16:07:18 +0000 |
commit | a9c6057cdf4933ad56f8750244a20ca65c2d45b6 (patch) | |
tree | 7e4bad3c8ba4cd715215067856541e6768ef1e28 /dev-libs/KXL | |
parent | repoman'd directory (diff) | |
download | gentoo-2-a9c6057cdf4933ad56f8750244a20ca65c2d45b6.tar.gz gentoo-2-a9c6057cdf4933ad56f8750244a20ca65c2d45b6.tar.bz2 gentoo-2-a9c6057cdf4933ad56f8750244a20ca65c2d45b6.zip |
repoman'd
Diffstat (limited to 'dev-libs/KXL')
-rw-r--r-- | dev-libs/KXL/KXL-1.1.5.ebuild | 32 |
1 files changed, 8 insertions, 24 deletions
diff --git a/dev-libs/KXL/KXL-1.1.5.ebuild b/dev-libs/KXL/KXL-1.1.5.ebuild index cbf4a773378d..637d3b6345ce 100644 --- a/dev-libs/KXL/KXL-1.1.5.ebuild +++ b/dev-libs/KXL/KXL-1.1.5.ebuild @@ -1,40 +1,24 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-libs/KXL/KXL-1.1.5.ebuild,v 1.2 2002/07/11 06:30:20 drobbins Exp $ - -# This ebuild was generated by Ebuilder v0.4. +# $Header: /var/cvsroot/gentoo-x86/dev-libs/KXL/KXL-1.1.5.ebuild,v 1.3 2002/08/01 16:07:16 seemant Exp $ S="${WORKDIR}/${P}" -DESCRIPTION="Development Library for making games and stuff, I think" +DESCRIPTION="Development Library for making games for X" SRC_URI="http://kxl.hn.org/download/${P}.tar.gz" HOMEPAGE="http://kxl.hn.org/" -LICENSE="as-is" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" + DEPEND="" src_compile() { - ./configure \ - --host=${CHOST} \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man || die "./configure failed" - # emake (previously known as pmake) is a script that calls the - # standard GNU make with parallel building options for speedier - # builds (especially on SMP systems). Try emake first. It might - # not work for some packages, in which case you'll have to resort - # to normal "make". + econf || die "./configure failed" emake || die - #make || die } src_install () { make DESTDIR=${D} install || die - # If the above installs anything outside of DESTDIR, try the following. - #make \ - # prefix=${D}/usr \ - # mandir=${D}/usr/share/man \ - # infodir=${D}/usr/share/info \ - # install || die - - # Install documentation. dodoc ChangeLog COPYING README } |