blob: 2eee5e7c4598c2c15fb7142d380563506ceab0bd (
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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/quazip/quazip-0.2.3.ebuild,v 1.4 2010/10/18 10:19:57 jlec Exp $
EAPI=2
inherit multilib qt4
DESCRIPTION="A simple C++ wrapper over Gilles Vollant's ZIP/UNZIP package"
HOMEPAGE="http://quazip.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="sys-libs/zlib
x11-libs/qt-gui:4"
S=${WORKDIR}/${P}/${PN}
src_prepare() {
sed -i \
-e "s:/usr/local:/usr:" \
-e "s:/lib:/$(get_libdir):" \
${PN}.pro || die
}
src_configure() {
eqmake4
}
src_install() {
emake INSTALL_ROOT="${D}" install || die
dodoc ../{NEWS,README}
}
|