summaryrefslogtreecommitdiff
blob: 5dda51fefe3d9354d8f02f5140dec987fddefd02 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxdg-basedir/libxdg-basedir-0.3.0.ebuild,v 1.4 2009/04/26 14:34:50 ranger Exp $

inherit libtool

DESCRIPTION="Small library to access XDG Base Directories Specification paths"
HOMEPAGE="http://n.ethz.ch/student/nevillm/download/libxdg-basedir/"
SRC_URI="http://n.ethz.ch/student/nevillm/download/libxdg-basedir/${P}.tar.gz"

IUSE="doc"
SLOT="0"
LICENSE="MIT"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"

RDEPEND=""
DEPEND="doc? ( app-doc/doxygen )"

src_unpack() {
	unpack ${A}
	cd "${S}"

	elibtoolize
}

src_compile() {
	econf \
		--disable-dependency-tracking \
		$(use_enable doc doxygen-html) \
		|| die "econf failed"

	emake || die "emake failed"

	if use doc; then
		emake doxygen-doc || die "emake doxygen-doc failed"
	fi
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"

	if use doc; then
		dohtml -r doc/html/*
	fi

	# Remove libtool archives, as the package has no dependencies,
	# and should be used with pkg-config properly.
	find "${D}" -name '*.la' -delete
}