blob: 0775fba4ab9746f49e5182b8a9bc8ce8d36e701f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils multilib toolchain-funcs
DESCRIPTION="Generates images from arbitrary formatted two-dimensional ascii or binary data"
HOMEPAGE="http://zimg.sourceforge.net//"
SRC_URI="mirror://sourceforge/zimg/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="x86 amd64"
DEPEND="media-libs/gd"
src_install() {
cd ${S}
dobin zimg
doman zimg.1
dodoc README COPYING AUTHORS
}
|