blob: 22a9c54227730860996b45079d55e17d74625573 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgdgeda/libgdgeda-2.0.15.ebuild,v 1.9 2007/07/22 07:06:59 dberkholz Exp $
HOMEPAGE="http://www.geda.seul.org"
DESCRIPTION="libgdgeda - a PNG creation library for gEDA"
SRC_URI="http://www.geda.seul.org/dist/${P}.tar.gz"
IUSE=""
LICENSE="GPL-2"
KEYWORDS="amd64 ppc sparc x86"
SLOT="0"
DEPEND=">=media-libs/libpng-1.2.1
>=sys-libs/zlib-1.1.4
x11-libs/libXt
x11-libs/libXpm"
src_compile() {
econf || die
emake || die
}
src_install () {
einstall || die
dodoc COPYING README.1ST
}
|