summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2016-03-22 09:58:59 +0000
committerPatrice Clement <monsieurp@gentoo.org>2016-03-22 10:46:27 +0000
commit18442b46d92ef15528a84be181712231199ecb25 (patch)
tree12f92008528b8ed61e9d497d35e9ea5c3dd41b01 /app-arch/torrentzip/torrentzip-0.9.ebuild
parentdev-ml/async: bump to 113.33.00 (diff)
downloadgentoo-18442b46d92ef15528a84be181712231199ecb25.tar.gz
gentoo-18442b46d92ef15528a84be181712231199ecb25.tar.bz2
gentoo-18442b46d92ef15528a84be181712231199ecb25.zip
app-arch/torrentzip: Fix SRC_URI. Bump to EAPI 6. Bump to version 0.9
Also assign package to Alexander Miller <alex.miller@gmx.de>. Gentoo-Bug: https://bugs.gentoo.org/575338 Package-Manager: portage-2.2.26
Diffstat (limited to 'app-arch/torrentzip/torrentzip-0.9.ebuild')
-rw-r--r--app-arch/torrentzip/torrentzip-0.9.ebuild31
1 files changed, 31 insertions, 0 deletions
diff --git a/app-arch/torrentzip/torrentzip-0.9.ebuild b/app-arch/torrentzip/torrentzip-0.9.ebuild
new file mode 100644
index 000000000000..9539caded077
--- /dev/null
+++ b/app-arch/torrentzip/torrentzip-0.9.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="Create identical zip archives over multiple systems"
+HOMEPAGE="https://sourceforge.net/projects/trrntzip"
+SRC_URI="http://dev.gentoo.org/~monsieurp/packages/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+ sys-libs/zlib"
+
+DEPEND="
+ ${RDEPEND}
+ app-arch/unzip"
+
+DOCS=(README AUTHORS)
+
+src_prepare() {
+ default
+ export CPPFLAGS+=" -DOF\\(args\\)=args"
+ eautoreconf
+}