diff options
author | Mark Guertin <gerk@gentoo.org> | 2002-08-25 02:49:21 +0000 |
---|---|---|
committer | Mark Guertin <gerk@gentoo.org> | 2002-08-25 02:49:21 +0000 |
commit | f63240ddd66bbef459bae19efa93ff492d86a227 (patch) | |
tree | 677936c1b4b4cb807c9bf33fb2085d22c5923c8b /x11-misc | |
parent | new snapshot (diff) | |
download | gentoo-2-f63240ddd66bbef459bae19efa93ff492d86a227.tar.gz gentoo-2-f63240ddd66bbef459bae19efa93ff492d86a227.tar.bz2 gentoo-2-f63240ddd66bbef459bae19efa93ff492d86a227.zip |
new release version for bugfixes
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/xeasyconf/ChangeLog | 5 | ||||
-rw-r--r-- | x11-misc/xeasyconf/files/digest-xeasyconf-0.1.3 | 1 | ||||
-rw-r--r-- | x11-misc/xeasyconf/xeasyconf-0.1.3.ebuild | 41 |
3 files changed, 47 insertions, 0 deletions
diff --git a/x11-misc/xeasyconf/ChangeLog b/x11-misc/xeasyconf/ChangeLog index f0851e45ecbe..182fc9971414 100644 --- a/x11-misc/xeasyconf/ChangeLog +++ b/x11-misc/xeasyconf/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/Xeasyconf # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +xeasyconf-0.1.3 (Aug 28, 2002) + 25 Aug 2002; Mark Guertin <gerk@gentoo.org> xeasyconf-0.1.3.ebuild : + Added new version (updated for bugfix), should work fine with radeon + users now + *Xeasyconf-0.1.2-(May 30 2002) 30 May 2002; M. Guertin <gerk@imaclinux.net> ChangeLog : diff --git a/x11-misc/xeasyconf/files/digest-xeasyconf-0.1.3 b/x11-misc/xeasyconf/files/digest-xeasyconf-0.1.3 new file mode 100644 index 000000000000..6ca9a6b3bd51 --- /dev/null +++ b/x11-misc/xeasyconf/files/digest-xeasyconf-0.1.3 @@ -0,0 +1 @@ +MD5 cb556bc70b64a0746badd6f18f1c2df1 xeasyconf-0.1.3.tar.gz 14572 diff --git a/x11-misc/xeasyconf/xeasyconf-0.1.3.ebuild b/x11-misc/xeasyconf/xeasyconf-0.1.3.ebuild new file mode 100644 index 000000000000..ff2cafc225b0 --- /dev/null +++ b/x11-misc/xeasyconf/xeasyconf-0.1.3.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xeasyconf/xeasyconf-0.1.3.ebuild,v 1.1 2002/08/25 02:49:21 gerk Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Xeasyconf is a PPC only tool to assist in xfree 4.x configs" +SRC_URI="http://gentoo.org/~gerk/xeasyconf/${P}.tar.gz" +HOMEPAGE="http://gentoo.org/~gerk/xeasyconf/" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="ppc -x86 -sparc -sparc64" + +DEPEND="virtual/glibc x11-base/xfree sys-apps/pciutils dev-util/dialog" + + +src_unpack() { + + if [ ${ARCH} != ppc ] + then + die "This is a PPC-only package, sorry" + fi + + unpack ${A} + cd ${S} +} + +src_compile() { + + make || die "sorry, failed to compile" +} + +src_install() { + + dodir /usr/bin/ + dodir /usr/sbin/ + into /usr/ + dobin fbcheck + into /usr/ + dosbin Xeasyconf + +} |