blob: 3aed53ec852f9d00b2edd57a2cc8243786b2de66 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="1"
inherit eutils qt3 toolchain-funcs
MY_P=${P/mypasswords/MyPasswordS}
DESCRIPTION="A password manager compatible with Password Safe."
HOMEPAGE="http://www.semanticgap.com/myps/"
SRC_URI="http://www.semanticgap.com/myps/release/${MY_P}.src.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=">=x11-libs/qt-3.3:3"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PF}-qtdir.patch"
}
src_compile() {
emake CXX=$(tc-getCXX) PREFIX="/usr" all || die "emake failed"
}
src_install() {
emake PREFIX="${D}/usr" install || die "emake install failed"
}
|