| 1 |
# Copyright 1999-2013 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/media-libs/libdmtx/libdmtx-0.7.4.ebuild,v 1.8 2013/02/07 01:01:09 naota Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
|
| 7 |
DESCRIPTION="Barcode data matrix reading and writing library"
|
| 8 |
HOMEPAGE="http://www.libdmtx.org/"
|
| 9 |
SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${PV}/${P}.tar.gz"
|
| 10 |
|
| 11 |
LICENSE="LGPL-2.1"
|
| 12 |
SLOT="0"
|
| 13 |
KEYWORDS="amd64 ~arm ppc ppc64 x86 ~x86-fbsd"
|
| 14 |
IUSE="static-libs"
|
| 15 |
|
| 16 |
DEPEND=""
|
| 17 |
RDEPEND="${DEPEND}"
|
| 18 |
|
| 19 |
src_configure() {
|
| 20 |
econf \
|
| 21 |
$(use_enable static-libs static)
|
| 22 |
}
|
| 23 |
|
| 24 |
src_install() {
|
| 25 |
default
|
| 26 |
find "${ED}" -name '*.la' -exec rm -f {} +
|
| 27 |
}
|