blob: c68815a86ce8f6d5f52bf27229e6f8f2df046f58 (
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-2013 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.5.ebuild,v 1.1 2013/10/20 08:47:03 ssuominen Exp $
EAPI=5
inherit autotools
DESCRIPTION="A tool to associate udisks events to user-defined actions"
HOMEPAGE="http://github.com/fernandotcl/udisks-glue"
SRC_URI="http://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.100.2
>=dev-libs/glib-2
dev-libs/confuse"
RDEPEND="${COMMON_DEPEND}
>=sys-fs/udisks-1.0.4-r5:0"
DEPEND="${COMMON_DEPEND}
virtual/pkgconfig"
DOCS=( ChangeLog README )
src_unpack() {
unpack ${A}
mv *-${PN}-* "${S}"
}
src_prepare() {
eautoreconf
}
|