summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Robbins <drobbins@gentoo.org>2002-09-21 22:55:05 +0000
committerDaniel Robbins <drobbins@gentoo.org>2002-09-21 22:55:05 +0000
commitcccda2e60c1934adc01aa688aea5680e0cfbbea2 (patch)
tree7a023afadebcf5bb46e9e34a5238518a7237cd29 /app-arch/upx
parentLICENSE was GPL, should have been GPL-2 (diff)
downloadhistorical-cccda2e60c1934adc01aa688aea5680e0cfbbea2.tar.gz
historical-cccda2e60c1934adc01aa688aea5680e0cfbbea2.tar.bz2
historical-cccda2e60c1934adc01aa688aea5680e0cfbbea2.zip
upx in its new home in app-arch
Diffstat (limited to 'app-arch/upx')
-rw-r--r--app-arch/upx/ChangeLog20
-rw-r--r--app-arch/upx/files/digest-upx-1.231
-rw-r--r--app-arch/upx/upx-1.23.ebuild18
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
+}