# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Gifsicle is a UNIX command-line tool for creating, editing, and getting information about GIF images and animations. Making a GIF animation with gifsicle is easy" # Homepage, not used by Portage directly but handy for developer reference HOMEPAGE="http://www.lcdf.org/~eddietwo/gifsicle/" # Point to any required sources; these will be automatically downloaded by # Portage. SRC_URI="http://www.lcdf.org/~eddietwo/gifsicle/${P}.tar.gz" # License of the package. This must match the name of file(s) in # /usr/portage/licenses/. For complex license combination see the developer # docs on gentoo.org for details. LICENSE="GPL2" SLOT="0" KEYWORDS="x86" DEPEND="" #RDEPEND="" S=${WORKDIR}/${P} src_compile() { local myconf use X || myconf="${myconf} --disable-gifview" econf \ ${myconf} || die "bad ./configure" emake || die "compile problem" } src_install() { make DESTDIR=${D} install || die }