diff options
author | David Chamberlain <daybird@gentoo.org> | 2002-06-01 00:17:11 +0000 |
---|---|---|
committer | David Chamberlain <daybird@gentoo.org> | 2002-06-01 00:17:11 +0000 |
commit | 3b292faca227563d26c452801571f7b408be4c29 (patch) | |
tree | 2e2a06ebda2f7113640bfced52400de5b7b9bbf2 | |
parent | comment added (diff) | |
download | historical-3b292faca227563d26c452801571f7b408be4c29.tar.gz historical-3b292faca227563d26c452801571f7b408be4c29.tar.bz2 historical-3b292faca227563d26c452801571f7b408be4c29.zip |
added ppc-only xeasyconf
-rw-r--r-- | x11-misc/xeasyconf/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/xeasyconf/files/digest-xeasyconf-0.1.2 | 1 | ||||
-rw-r--r-- | x11-misc/xeasyconf/xeasyconf-0.1.2.ebuild | 39 |
3 files changed, 48 insertions, 0 deletions
diff --git a/x11-misc/xeasyconf/ChangeLog b/x11-misc/xeasyconf/ChangeLog new file mode 100644 index 000000000000..f0851e45ecbe --- /dev/null +++ b/x11-misc/xeasyconf/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for x11-misc/Xeasyconf +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL + +*Xeasyconf-0.1.2-(May 30 2002) + + 30 May 2002; M. Guertin <gerk@imaclinux.net> ChangeLog : + + Initial ebuild for xeasyconf diff --git a/x11-misc/xeasyconf/files/digest-xeasyconf-0.1.2 b/x11-misc/xeasyconf/files/digest-xeasyconf-0.1.2 new file mode 100644 index 000000000000..7ab712b24c2f --- /dev/null +++ b/x11-misc/xeasyconf/files/digest-xeasyconf-0.1.2 @@ -0,0 +1 @@ +MD5 b3af16b2b1a2817efa9d76cae9041542 xeasyconf-0.1.2.tar.gz 14444 diff --git a/x11-misc/xeasyconf/xeasyconf-0.1.2.ebuild b/x11-misc/xeasyconf/xeasyconf-0.1.2.ebuild new file mode 100644 index 000000000000..00a512aa6250 --- /dev/null +++ b/x11-misc/xeasyconf/xeasyconf-0.1.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Mark Guertin <gerk@imaclinux.net> +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xeasyconf/xeasyconf-0.1.2.ebuild,v 1.1 2002/06/01 00:17:11 daybird Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Xeasyconf is a PPC only tool to assist in xfree 4.x configs" +SRC_URI="http://tuxppc.org/projects/xeasyconf/${P}.tar.gz" +HOMEPAGE="http://tuxppc.org/projects/xeasyconf/" + + +DEPEND="virtual/glibc x11-base/xfree sys-apps/pciutils dev-util/dialog" + +if [ ${ARCH} != ppc ] +then + die "This is a PPC-only package, sorry" +fi + +src_unpack() { + + 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 + +} |