diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2002-09-21 22:55:05 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2002-09-21 22:55:05 +0000 |
commit | 96d81ce90513542936be885b04ceb6ca5ea5d037 (patch) | |
tree | 03bb87117d6236bce6af3d65baa505d19c785d2f /app-arch | |
parent | LICENSE was GPL, should have been GPL-2 (diff) | |
download | gentoo-2-96d81ce90513542936be885b04ceb6ca5ea5d037.tar.gz gentoo-2-96d81ce90513542936be885b04ceb6ca5ea5d037.tar.bz2 gentoo-2-96d81ce90513542936be885b04ceb6ca5ea5d037.zip |
upx in its new home in app-arch
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/upx/ChangeLog | 20 | ||||
-rw-r--r-- | app-arch/upx/files/digest-upx-1.23 | 1 | ||||
-rw-r--r-- | app-arch/upx/upx-1.23.ebuild | 18 |
3 files changed, 39 insertions, 0 deletions
diff --git a/app-arch/upx/ChangeLog b/app-arch/upx/ChangeLog new file mode 100644 index 000000000000..a80c6f31d7c7 --- /dev/null +++ b/app-arch/upx/ChangeLog @@ -0,0 +1,20 @@ +# ChangeLog for app-misc/upx +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/app-arch/upx/ChangeLog,v 1.1 2002/09/21 22:55:05 drobbins Exp $ + +*upx-1.23 (21 Sep 2002) + + 21 Sep 2002; Daniel Robbins <drobbins@gentoo.org> upx-1.23.ebuild: New + pre-compiled version of upx for better compression and gcc-3.2-compatibility. + Also moved from app-misc to app-arch. + +*upx-1.22 (09 Jul 2002) + + 09 Jul 2002; Phil Bordelon <sunflare@gentoo.org> upx-1.21.ebuild + upx-1.22.ebuild : Version bump. Cleaned up the ebuild a bit; added SLOT and + KEYWORD to the older ebuild as well. The new ebuild also does documentation. + +*upx-1.21 (21 Jun 2002) + + 21 Jun 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : Initial + release. diff --git a/app-arch/upx/files/digest-upx-1.23 b/app-arch/upx/files/digest-upx-1.23 new file mode 100644 index 000000000000..82b60310f051 --- /dev/null +++ b/app-arch/upx/files/digest-upx-1.23 @@ -0,0 +1 @@ +MD5 cacc77e506ed91cab2b51f8fb1c8ddd8 upx-1.23-linux.tar.gz 154151 diff --git a/app-arch/upx/upx-1.23.ebuild b/app-arch/upx/upx-1.23.ebuild new file mode 100644 index 000000000000..395fb8b4bfb0 --- /dev/null +++ b/app-arch/upx/upx-1.23.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later + +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" + +src_install() { + #the pre-compiled version works on gcc-3.2 systems; source version won't compile. + dobin upx + doman upx.1 + dodoc upx.doc upx.html BUGS COPYING LICENSE NEWS README THANKS +} |