blob: c175a67e2e0e53b379d3a76dfd8490ef58ea4821 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/karchiver/karchiver-3.1.1-r1.ebuild,v 1.5 2005/08/09 23:21:04 metalgod Exp $
inherit kde
DESCRIPTION="Utility to ease working with compressed files such as tar.gz/tar.bz2"
HOMEPAGE="http://perso.wanadoo.fr/coquelle/karchiver/"
SRC_URI="http://perso.wanadoo.fr/coquelle/karchiver/${P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="~amd64 ppc sparc x86"
SLOT="0"
IUSE=""
need-kde 3.1
# Nasty packaging...
src_unpack() {
kde_src_unpack
rm -rf karchiver/.libs
rm -f karchiver/*.l[ao] karchiver/*.o
rm -f config.log config.status
}
# ...continued.
src_install() {
kde_src_install
rm -rf ${D}/usr/share/applnk-mdk
}
|