blob: c0480143bcb5c919486efbfbcf85531fb4b3811e (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/upx/upx-1.24-r1.ebuild,v 1.1 2003/03/26 04:46:45 seemant Exp $
S=${WORKDIR}/${P}-linux
DESCRIPTION="upx is the Ultimate Packer for eXecutables."
SRC_URI="http://upx.sourceforge.net/download/${P}-linux.tar.gz"
HOMEPAGE="http://upx.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
RESTRICT="nostrip"
src_install() {
#the pre-compiled version works on gcc-3.2 systems
# source version won't compile.
into /opt
dobin upx
doman upx.1
dodoc upx.doc upx.html BUGS COPYING LICENSE NEWS README THANKS
}
|