diff options
author | Martin Väth <martin@mvath.de> | 2012-01-29 13:13:55 +0100 |
---|---|---|
committer | Martin Väth <martin@mvath.de> | 2015-10-11 10:47:10 +0200 |
commit | d1e434286597b819933ffb17fea92d9b521c752b (patch) | |
tree | 6da1ad993a1514df8660fef5926e3b73d90f639e /app-arch | |
parent | Bump noscript, stylish. Update stardict checksum (diff) | |
download | mv-d1e434286597b819933ffb17fea92d9b521c752b.tar.gz mv-d1e434286597b819933ffb17fea92d9b521c752b.tar.bz2 mv-d1e434286597b819933ffb17fea92d9b521c752b.zip |
Add archwrap, bump kernel, form-history-control. Cleanup old
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/archwrap/ChangeLog | 8 | ||||
-rw-r--r-- | app-arch/archwrap/Manifest | 1 | ||||
-rw-r--r-- | app-arch/archwrap/archwrap-1.1.ebuild | 37 | ||||
-rw-r--r-- | app-arch/archwrap/metadata.xml | 12 |
4 files changed, 58 insertions, 0 deletions
diff --git a/app-arch/archwrap/ChangeLog b/app-arch/archwrap/ChangeLog new file mode 100644 index 00000000..ca8aa755 --- /dev/null +++ b/app-arch/archwrap/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for app-arch/archwrap +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header $ + +archwrap-1.1 (29 Jan 2012) + + 29 Jan 2011; Martin Väth <martin@mvath.de> + New ebuild from scratch. diff --git a/app-arch/archwrap/Manifest b/app-arch/archwrap/Manifest new file mode 100644 index 00000000..6601b38f --- /dev/null +++ b/app-arch/archwrap/Manifest @@ -0,0 +1 @@ +DIST archwrap-1.1.tar.gz 13239 RMD160 42bb350a9d82504283d1197867e656c1428d7f0a SHA1 0ad777f292effb9eea585f2032a54ec14194847f SHA256 835f988d66ef59f11a9cbbdec36039d6a5409e0c5ff8adbd644b812b0cad1305 diff --git a/app-arch/archwrap/archwrap-1.1.ebuild b/app-arch/archwrap/archwrap-1.1.ebuild new file mode 100644 index 00000000..5f9565b8 --- /dev/null +++ b/app-arch/archwrap/archwrap-1.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header $ + +EAPI="4" +RESTRICT="mirror" + +DESCRIPTION="A POSIX shell script to invoke archiver programs" +HOMEPAGE="https://github.com/vaeth/${PN}" +SRC_URI="http://github.com/vaeth/${PN}/tarball/release-${PV} -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="zsh-completion" + +src_unpack() { + default + cd *"${PN}"-* + S="${PWD}" +} + +src_install() { + local i + insinto /usr/bin + for i in bin/* + do if test -h "${i}" || ! test -x "${i}" + then doins "${i}" + else dobin "${i}" + fi + done + if use zsh-completion + then insinto /usr/share/zsh/site-functions + doins zsh/* + fi + dodoc README +} diff --git a/app-arch/archwrap/metadata.xml b/app-arch/archwrap/metadata.xml new file mode 100644 index 00000000..76c2334e --- /dev/null +++ b/app-arch/archwrap/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer> + <email>martin@mvath.de</email> + <name>Martin Väth</name> +</maintainer> +<use> + <flag name="eix">Pull in eix for quicker execution</flag> +</use> +</pkgmetadata> |