blob: 6851d66dcd372285b7ae68428c31cf194631f80d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/liblzw/liblzw-0.1.1-r1.ebuild,v 1.1 2008/01/06 02:38:35 vapier Exp $
DESCRIPTION="small C library for reading LZW compressed files (.Z)"
HOMEPAGE="http://freestdf.sourceforge.net/liblzw.php"
SRC_URI="mirror://sourceforge/freestdf/${P}.tar.bz2"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 arm ~hppa ~ia64 m68k s390 sh x86"
IUSE=""
DEPEND=""
src_install() {
emake install DESTDIR="${D}" || die
dodoc AUTHORS ChangeLog NEWS README
sed -i 's:@@requirements@::' "${D}"/usr/lib*/pkgconfig/liblzw.pc || die
}
|