summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Chamberlain <daybird@gentoo.org>2002-06-01 00:17:11 +0000
committerDavid Chamberlain <daybird@gentoo.org>2002-06-01 00:17:11 +0000
commit21197756e8d2126adbe9f580c847f408d1f996de (patch)
tree460b00e4cd7ccdc56f6e35b4e382e9699257d64c /x11-misc/xeasyconf
parentcomment added (diff)
downloadgentoo-2-21197756e8d2126adbe9f580c847f408d1f996de.tar.gz
gentoo-2-21197756e8d2126adbe9f580c847f408d1f996de.tar.bz2
gentoo-2-21197756e8d2126adbe9f580c847f408d1f996de.zip
added ppc-only xeasyconf
Diffstat (limited to 'x11-misc/xeasyconf')
-rw-r--r--x11-misc/xeasyconf/ChangeLog8
-rw-r--r--x11-misc/xeasyconf/files/digest-xeasyconf-0.1.21
-rw-r--r--x11-misc/xeasyconf/xeasyconf-0.1.2.ebuild39
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
+
+}