mirror of
https://github.com/gryf/gryf-overlay.git
synced 2026-04-18 23:43:33 +02:00
26 lines
806 B
Bash
26 lines
806 B
Bash
# ==========================================================================
|
|
# This ebuild come from erazor-zone repository. Zugaina.org only host a copy.
|
|
# For more info go to http://gentoo.zugaina.org/
|
|
# ***************** General Portage Overlay (11/20/06) *****************
|
|
# ==========================================================================
|
|
# Copyright 1999-2006 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
DESCRIPTION="tiny svg2png convert tool"
|
|
HOMEPAGE="http://cairographics.org"
|
|
SRC_URI="http://cairographics.org/snapshots/${P}.tar.gz"
|
|
|
|
LICENSE="LGPL"
|
|
SLOT="0"
|
|
KEYWORDS="~x86"
|
|
|
|
DEPEND="media-fonts/corefonts \
|
|
x11-libs/cairo
|
|
>=x11-libs/libsvg-cairo-0.1.6"
|
|
|
|
src_install() {
|
|
cd src/
|
|
dobin svg2png || die "Could not install binary."
|
|
}
|