diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-18 23:59:02 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-18 23:59:02 +0000 |
commit | fa4df0f4fb1db39f14d7640ff280e0974413b3e2 (patch) | |
tree | 0d15234c82b0d48b340f2bd259f6ce0cc44a8929 /x11-misc | |
parent | remove older ebuild (Manifest recommit) (diff) | |
download | gentoo-2-fa4df0f4fb1db39f14d7640ff280e0974413b3e2.tar.gz gentoo-2-fa4df0f4fb1db39f14d7640ff280e0974413b3e2.tar.bz2 gentoo-2-fa4df0f4fb1db39f14d7640ff280e0974413b3e2.zip |
virtual/x11; use emake; use dobin; error check; tidy
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/xsimpsons/ChangeLog | 5 | ||||
-rw-r--r-- | x11-misc/xsimpsons/xsimpsons-0.1.ebuild | 13 |
2 files changed, 10 insertions, 8 deletions
diff --git a/x11-misc/xsimpsons/ChangeLog b/x11-misc/xsimpsons/ChangeLog index 97cb0601c615..a1caa0880c89 100644 --- a/x11-misc/xsimpsons/ChangeLog +++ b/x11-misc/xsimpsons/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/xsimpsons # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsimpsons/ChangeLog,v 1.3 2004/04/11 17:46:30 pyrania Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsimpsons/ChangeLog,v 1.4 2004/04/18 23:59:02 mr_bones_ Exp $ + + 18 Apr 2004; Michael Sterrett <mr_bones_@gentoo.org> xsimpsons-0.1.ebuild: + virtual/x11; use emake; use dobin; error check; tidy 11 Apr 2004; Markus Nigbur <pyrania@gentoo.org> xsimpsons-0.1.ebuild: Marked stable. Ebuild fixups. diff --git a/x11-misc/xsimpsons/xsimpsons-0.1.ebuild b/x11-misc/xsimpsons/xsimpsons-0.1.ebuild index d6434847ac00..47e02c059647 100644 --- a/x11-misc/xsimpsons/xsimpsons-0.1.ebuild +++ b/x11-misc/xsimpsons/xsimpsons-0.1.ebuild @@ -1,23 +1,22 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsimpsons/xsimpsons-0.1.ebuild,v 1.2 2004/04/11 17:46:30 pyrania Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsimpsons/xsimpsons-0.1.ebuild,v 1.3 2004/04/18 23:59:02 mr_bones_ Exp $ DESCRIPTION="The Simpsons walking along the tops of your windows." HOMEPAGE="http://lightning.prohosting.com/~sbeyer/" SRC_URI="http://lightning.prohosting.com/~sbeyer/${P}.tar.gz" + LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" IUSE="" -DEPEND="x11-base/xfree" -RDEPEND="" + +DEPEND="virtual/x11" src_compile() { - make || die + emake || die "emake failed" } src_install() { - mkdir -p ${D}/usr/bin - cp xsimpsons ${D}/usr/bin + dobin xsimpsons || die "dobin failed" } - |