blob: bbbf2cb3783df67d50767557c70d9df7e782cb56 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/udisks-glue/udisks-glue-1.3.1.ebuild,v 1.1 2011/07/17 07:15:47 ssuominen Exp $
EAPI=4
inherit autotools
DESCRIPTION="A tool to associate udisks events to user-defined actions"
HOMEPAGE="http://github.com/fernandotcl/udisks-glue"
SRC_URI="https://github.com/fernandotcl/udisks-glue/tarball/release-${PV} -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
COMMON_DEPEND=">=dev-libs/dbus-glib-0.92
dev-libs/glib:2
dev-libs/confuse"
RDEPEND="${COMMON_DEPEND}
sys-fs/udisks"
DEPEND="${COMMON_DEPEND}
dev-util/pkgconfig"
DOCS=( ChangeLog README )
src_unpack() {
unpack ${A}
mv *-${PN}-* "${S}"
}
src_prepare() {
eautoreconf
}
|