blob: 2b8609dc0fd65efdcc54b0e44e3e1f61e62d2bcd (
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/orange/orange-0.4.ebuild,v 1.7 2012/06/15 09:08:58 ssuominen Exp $
EAPI=4
MY_P=lib${P}
DESCRIPTION="A tool and library for extracting cabs from executable installers."
HOMEPAGE="http://sourceforge.net/projects/synce/"
SRC_URI="mirror://sourceforge/synce/${MY_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="static-libs"
RDEPEND="app-pda/synce-core
>=app-pda/dynamite-0.1.1
>=app-arch/unshield-0.6
sys-apps/file
sys-libs/zlib"
DEPEND="${RDEPEND}
virtual/pkgconfig"
S=${WORKDIR}/${MY_P}
DOCS="ChangeLog TODO"
src_configure() {
econf $(use_enable static-libs static)
}
src_install() {
default
find "${ED}" -name '*.la' -exec rm -f {} +
}
|