diff options
author | Brandon Low <lostlogic@gentoo.org> | 2003-12-17 14:06:40 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2003-12-17 14:06:40 +0000 |
commit | 75d5b5446fe40ab7c23da260728dd63ae7ebb277 (patch) | |
tree | 5b69649e3650d09a695998ace89a61a0c25efb46 /x11-misc/pogo/pogo-2.2.ebuild | |
parent | Initial import of pogo, launcher program for X (diff) | |
download | gentoo-2-75d5b5446fe40ab7c23da260728dd63ae7ebb277.tar.gz gentoo-2-75d5b5446fe40ab7c23da260728dd63ae7ebb277.tar.bz2 gentoo-2-75d5b5446fe40ab7c23da260728dd63ae7ebb277.zip |
Initial import of pogo, launcher program for X
Diffstat (limited to 'x11-misc/pogo/pogo-2.2.ebuild')
-rw-r--r-- | x11-misc/pogo/pogo-2.2.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/x11-misc/pogo/pogo-2.2.ebuild b/x11-misc/pogo/pogo-2.2.ebuild new file mode 100644 index 000000000000..1ee112e094c1 --- /dev/null +++ b/x11-misc/pogo/pogo-2.2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/pogo/pogo-2.2.ebuild,v 1.1 2003/12/17 14:06:22 lostlogic Exp $ + +S="${WORKDIR}/Epplets-${PV}" + +DESCRIPTION="Pogo is a neat launcher program for X" +SRC_URI="http://www.ibiblio.org/propaganda/${PN}/${P}.tar.gz" + +HOMEPAGE="http://www.ibiblio.org/propaganda/pogo/" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +S=${WORKDIR}/${P} + +DEPEND="virtual/x11 + media-libs/imlib + media-libs/jpeg" + +src_compile() { + cp ${FILESDIR}/Makefile . + make clean || die "Clean failed" + for file in `grep -r /usr/local/ *|cut -f1 -d":"|sort|uniq`;do + sed -i -e "s:/usr/local:/usr/share:g" ${file} + done + make all || "Make failed" +} + +src_install () { + dodoc README + make DESTDIR="${D}" install || die "Install failed" +} |