diff options
author | Troy Dack <tad@gentoo.org> | 2003-08-17 04:56:27 +0000 |
---|---|---|
committer | Troy Dack <tad@gentoo.org> | 2003-08-17 04:56:27 +0000 |
commit | e4e0519516269a949f6bc60db6787b2be36465e7 (patch) | |
tree | e334bc26fc14b7f5ae9f3bb01954285a31cc29eb /media-gfx/fblogo/fblogo-0.5.0.ebuild | |
parent | Initial import. Closes Bug #19450. (diff) | |
download | gentoo-2-e4e0519516269a949f6bc60db6787b2be36465e7.tar.gz gentoo-2-e4e0519516269a949f6bc60db6787b2be36465e7.tar.bz2 gentoo-2-e4e0519516269a949f6bc60db6787b2be36465e7.zip |
Initial import. Closes Bug #19450.
Diffstat (limited to 'media-gfx/fblogo/fblogo-0.5.0.ebuild')
-rw-r--r-- | media-gfx/fblogo/fblogo-0.5.0.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/media-gfx/fblogo/fblogo-0.5.0.ebuild b/media-gfx/fblogo/fblogo-0.5.0.ebuild new file mode 100644 index 000000000000..d9a5ce8a34c9 --- /dev/null +++ b/media-gfx/fblogo/fblogo-0.5.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/fblogo/fblogo-0.5.0.ebuild,v 1.1 2003/08/17 04:56:15 tad Exp $ + +DESCRIPTION="Creates images to substitute Linux boot logo" +HOMEPAGE="http://freakzone.net/gordon/#fblogo" +SRC_URI="http://freakzone.net/gordon/src/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" + +# The only architecture I tested. +# Since it is a 0.* version, may it be ~x86? +KEYWORDS="x86" + +IUSE="" +DEPEND="media-libs/libpng + sys-libs/zlib" +RDEPEND="sys-apps/sed" +S=${WORKDIR}/${P} + +src_unpack() { + unpack ${A} + cd ${S} + mv -f Makefile Makefile.orig + sed -e "s:/usr/local:/usr:g" -e "s:^install\:$:install\:\n\ + mkdir -p \${DESTDIR}\${PREFIX}\n\ + mkdir -p \${DESTDIR}\${BINDIR}\n\ + mkdir -p \${DESTDIR}\${MANDIR}/man1:" Makefile.orig > Makefile + rm -f Makefile.orig +} + +src_compile() { + emake || die +} + +src_install() { + make install DESTDIR=${D} || die + dodoc README CHANGES COPYING +} |