diff options
author | 2002-07-23 00:12:55 +0000 | |
---|---|---|
committer | 2002-07-23 00:12:55 +0000 | |
commit | a906f21249bb6d3632db660153a3fd2aab308898 (patch) | |
tree | df426856cb9027dac65236d29a255f73c811dc0b /media-libs/ofbis/ofbis-0.1.1.ebuild | |
parent | removed older versions of mplayer and avifile (diff) | |
download | historical-a906f21249bb6d3632db660153a3fd2aab308898.tar.gz historical-a906f21249bb6d3632db660153a3fd2aab308898.tar.bz2 historical-a906f21249bb6d3632db660153a3fd2aab308898.zip |
repoman'd
Diffstat (limited to 'media-libs/ofbis/ofbis-0.1.1.ebuild')
-rw-r--r-- | media-libs/ofbis/ofbis-0.1.1.ebuild | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/media-libs/ofbis/ofbis-0.1.1.ebuild b/media-libs/ofbis/ofbis-0.1.1.ebuild index 9f0d03cb6dd6..d63a2a289039 100644 --- a/media-libs/ofbis/ofbis-0.1.1.ebuild +++ b/media-libs/ofbis/ofbis-0.1.1.ebuild @@ -1,23 +1,27 @@ -# Copyright 1999-2001 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/media-libs/ofbis/ofbis-0.1.1.ebuild,v 1.3 2002/07/11 06:30:39 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/ofbis/ofbis-0.1.1.ebuild,v 1.4 2002/07/23 00:12:55 seemant Exp $ -A=${P}.tar.gz S=${WORKDIR}/${P} DESCRIPTION="Framebuffer graphical library" -SRC_URI="ftp://ftp.nocrew.org/pub/osis/ofbis/"${A} +SRC_URI="ftp://ftp.nocrew.org/pub/osis/ofbis/${P}.tar.gz" HOMEPAGE="http://www.nocrew.org/pub/ofbis" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" + DEPEND="virtual/glibc" src_compile() { - try ./configure --prefix=/usr - try make CFLAGS="${CFLAGS}" all + ./configure --prefix=/usr || die + make CFLAGS="${CFLAGS}" all || die } src_install() { - try make DESTDIR=${D} install - dodoc AUTHORS CREDITS DESIGN NEW OFBIS-VERSION README TODO ChangeLog doc/ofbis.doc + make DESTDIR=${D} install || die + dodoc AUTHORS CREDITS DESIGN NEW OFBIS-VERSION README TODO \ + ChangeLog doc/ofbis.doc } |