OLD | NEW |
(Empty) | |
| 1 # Copyright 1999-2011 Gentoo Foundation |
| 2 # Distributed under the terms of the GNU General Public License v2 |
| 3 # $Header: /var/cvsroot/gentoo-x86/dev-db/m17n-contrib/m17n-contrib-1.1.12.ebuil
d,v 1.1 2011/04/04 01:12:21 flameeyes Exp $ |
| 4 |
| 5 EAPI=4 |
| 6 |
| 7 DESCRIPTION="Contribution database for the m17n library" |
| 8 HOMEPAGE="http://www.m17n.org/m17n-lib/" |
| 9 SRC_URI="http://www.m17n.org/m17n-lib-download/${P}.tar.gz" |
| 10 |
| 11 LICENSE="LGPL-2.1" |
| 12 SLOT="0" |
| 13 KEYWORDS="~amd64 ~x86" |
| 14 IUSE="" |
| 15 |
| 16 DEPEND="" |
| 17 RDEPEND="dev-db/m17n-db" |
| 18 |
| 19 src_configure() { |
| 20 # force the script not to test for m17n presence, trust Portage |
| 21 # dependency handling. |
| 22 export HAVE_M17N_DB=yes |
| 23 |
| 24 econf |
| 25 } |
| 26 |
| 27 src_install() { |
| 28 emake DESTDIR="${D}" install || die |
| 29 |
| 30 dodoc AUTHORS ChangeLog NEWS README |
| 31 } |
OLD | NEW |