summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2011-10-23 13:10:10 +0000
committerPatrick Lauer <patrick@gentoo.org>2011-10-23 13:10:10 +0000
commitc4c5511e4fcde610c07d354056b6c01f3edb4b9f (patch)
tree746ac8d3a6a8b7e693f51330ecfeb51fde2af7e2 /app-arch
parentalpha/ia64/m68k/s390/sh/sparc stable wrt #383361 (diff)
downloadgentoo-2-c4c5511e4fcde610c07d354056b6c01f3edb4b9f.tar.gz
gentoo-2-c4c5511e4fcde610c07d354056b6c01f3edb4b9f.tar.bz2
gentoo-2-c4c5511e4fcde610c07d354056b6c01f3edb4b9f.zip
Adding makeself symlink to makeself.sh to make stupid build systems happy
(Portage version: 2.2.0_alpha70/cvs/Linux x86_64)
Diffstat (limited to 'app-arch')
-rw-r--r--app-arch/makeself/ChangeLog9
-rw-r--r--app-arch/makeself/makeself-2.1.5-r1.ebuild27
2 files changed, 34 insertions, 2 deletions
diff --git a/app-arch/makeself/ChangeLog b/app-arch/makeself/ChangeLog
index 7b1ca71d09e5..8bfad2411acc 100644
--- a/app-arch/makeself/ChangeLog
+++ b/app-arch/makeself/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-arch/makeself
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/makeself/ChangeLog,v 1.23 2010/03/28 03:56:18 darkside Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-arch/makeself/ChangeLog,v 1.24 2011/10/23 13:10:10 patrick Exp $
+
+*makeself-2.1.5-r1 (23 Oct 2011)
+
+ 23 Oct 2011; Patrick Lauer <patrick@gentoo.org> +makeself-2.1.5-r1.ebuild:
+ Adding makeself symlink to makeself.sh to make stupid build systems happy
28 Mar 2010; Jeremy Olexa <darkside@gentoo.org> metadata.xml:
Drop myself from metadata, add maintainer-needed
diff --git a/app-arch/makeself/makeself-2.1.5-r1.ebuild b/app-arch/makeself/makeself-2.1.5-r1.ebuild
new file mode 100644
index 000000000000..02ec1ff36516
--- /dev/null
+++ b/app-arch/makeself/makeself-2.1.5-r1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-arch/makeself/makeself-2.1.5-r1.ebuild,v 1.1 2011/10/23 13:10:10 patrick Exp $
+
+inherit eutils
+
+DESCRIPTION="shell script that generates a self-extractible tar.gz"
+HOMEPAGE="http://www.megastep.org/makeself/"
+SRC_URI="http://www.megastep.org/makeself/${P}.run"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~s390 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+S=${WORKDIR}
+
+src_unpack() {
+ unpack_makeself
+}
+
+src_install() {
+ dobin makeself-header.sh makeself.sh "${FILESDIR}"/makeself-unpack || die
+ dosym makeself.sh /usr/bin/makeself
+ doman makeself.1
+ dodoc README TODO makeself.lsm
+}