blob: e43bb34fb1ae02f8ecfe7c0fc986aefcb10ae17d (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
if [ ${PV} = 9999* ]; then
EGIT_REPO_URI="git://git.tdb.fi/pmount-gui"
inherit git-2
else
SRC_URI="https://dev.gentoo.org/~ssuominen/${P}.tar.xz"
KEYWORDS="~amd64 ~x86"
fi
inherit toolchain-funcs
DESCRIPTION="A simple graphical frontend for pmount"
HOMEPAGE="http://git.tdb.fi/?p=pmount-gui.git;a=summary"
LICENSE="BSD-2"
SLOT="0"
IUSE=""
COMMON_DEPEND="x11-libs/gtk+:2"
RDEPEND="${COMMON_DEPEND}
sys-apps/pmount
virtual/udev"
DEPEND="${COMMON_DEPEND}
virtual/pkgconfig"
src_compile() {
emake CC="$(tc-getCC) ${CFLAGS} ${LDFLAGS}"
}
src_install() {
dobin ${PN}
dodoc README.txt
}
|