blob: cd9cdab386d541e6bca3068f2df2465e964d2b24 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/bodr/bodr-9-r1.ebuild,v 1.2 2010/10/25 06:09:07 grobian Exp $
EAPI=3
inherit base
DESCRIPTION="The Blue Obelisk Data Repository listing element and isotope properties."
HOMEPAGE="http://sourceforge.net/projects/bodr"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~ppc-macos"
IUSE=""
DEPEND="dev-libs/libxslt"
RDEPEND=""
DOCS=( "THANKS" "AUTHORS" "README" "ChangeLog" )
src_prepare(){
sed -i -e "s/COPYING//g" Makefile.* || die
}
src_configure() {
econf --docdir="${EPREFIX}"/usr/share/doc/${PF}
}
|