blob: bb43d655af59444d04cabf53814680d52ced0413 (
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-2008 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.2.0.ebuild,v 1.1 2008/11/13 02:05:07 flameeyes 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 ~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 -j1 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
}
|