summaryrefslogtreecommitdiff
blob: 9b970f067839a9a9e95c99af2edc5bd20d599ee6 (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-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/squashfs-tools/squashfs-tools-1.3.ebuild,v 1.2 2004/04/15 21:31:51 randy Exp $

DESCRIPTION="Tool for creating compressed filesystem type squashfs"
PNAME="squashfs1.3r3"
SRC_URI="mirror://sourceforge/squashfs/${PNAME}.tar.gz"
HOMEPAGE="http://squashfs.sourceforge.net/"
IUSE=""
KEYWORDS="x86 amd64 ~ppc ~ppc64 ~alpha ~ia64 ~sparc ~mips ~hppa s390"
SLOT="0"
LICENSE="GPL-2"

DEPEND="virtual/glibc"
S="${WORKDIR}/${PNAME}"
DOC="${S}"
S="${S}/squashfs-tools"

src_compile() {
	cd ${S}
	make || die
}

src_install() {
	cd ${S}
	exeinto /usr/bin
	doexe mksquashfs
	cd ${DOC}
	dodoc README
}