2013-06-10 09:50:38 +04:00
|
|
|
# Copyright 1999-2013 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-11 00:17:55 +03:00
|
|
|
# $Id$
|
2013-06-10 09:50:38 +04:00
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
|
|
|
|
inherit eutils
|
|
|
|
|
|
|
|
DESCRIPTION="C library for reading, writing, and modifying Windows bitmap image files"
|
2015-08-25 09:05:57 +03:00
|
|
|
HOMEPAGE="https://code.google.com/p/libbmp/"
|
|
|
|
SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.bz2"
|
2013-06-10 09:50:38 +04:00
|
|
|
|
|
|
|
LICENSE="GPL-3"
|
|
|
|
SLOT="0/2"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
IUSE="static-libs"
|
|
|
|
|
|
|
|
RDEPEND=""
|
|
|
|
RDEPEND=""
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
econf $(use_enable static-libs static)
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
default
|
|
|
|
prune_libtool_files
|
|
|
|
}
|