diff options
Diffstat (limited to 'x11-misc/xeasyconf/xeasyconf-0.1.2.ebuild')
-rw-r--r-- | x11-misc/xeasyconf/xeasyconf-0.1.2.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
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 + +} |