Portage is a package management system used by Gentoo Linux
# ChangeLog for app-arch/torrentzip
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/torrentzip/ChangeLog,v 1.3 2008/06/04 18:02:29 flameeyes Exp $
04 Jun 2008; Diego Pettenò
torrentzip-0.2-r1.ebuild:
Use eautoreconf, not the bootstrap script.
*torrentzip-0.2-r1 (23 Jul 2007)
23 Jul 2007; Raúl Porcel
-torrentzip-0.2.ebuild, +torrentzip-0.2-r1.ebuild:
Fix permissions, bug #182628
*torrentzip-0.2 (18 Jun 2006)
18 Jun 2006; Jon Hood
+torrentzip-0.2.ebuild:
Initial import. Thanks to Avuton Olrich
Redaelli
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
AUX fix-perms.patch 335 RMD160 7ca8ccdce41107a747e1495a66f0c36ef657881f SHA1 386a58de3c2ab7412155f49a572eb356591c044f SHA256 1af2255ecaead2c2b287693febd6cfe41b035e12295b239db7435aa5fed7a4ae
DIST trrntzip_v02_src.tar.gz 46971 RMD160 1a6718babc3cfb42e99fadbb53360ecb4f15b5b9 SHA1 ad2487d7e9edc6608358104df8367da3d535fd2b SHA256 9e55f378ef5c75c452b3f52728a7503ca76e147e0ab2395b8c41de8c20995efd
EBUILD torrentzip-0.2-r1.ebuild 960 RMD160 1f37a5d08a6a40e0c527ec54a6e55c6190221270 SHA1 521daeec78660396fe39397ba6f1af3c9151b09c SHA256 e8e76be09edb483167eb5f28fb890f05ed79ad0afa93b3f3a0f2ccf2b3635fcd
MISC ChangeLog 781 RMD160 0713aa3c3ded1f8d0fc94b29d35fb6243bc92a38 SHA1 ce000ba518cbce9f347193f02019d073a007b8b3 SHA256 da7f65f6fa85a1696dde063c1233d39d573027be5328ccb322a0abafea3ed45e
MISC metadata.xml 160 RMD160 828887200387b28c37fc97111fc6bc3a0a2fcccd SHA1 813ef5bc57f6a8d95e7cab7a745a2a824858f49c SHA256 fe06593409e7f28665c032001005e94cb650299711a0af7f1a558bdb56c4004f
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.9 (GNU/Linux)
iEYEARECAAYFAkhG2LwACgkQAiZjviIA2XjLMACeOvjZrfSjlBHiyFmWY7qVfrq+
/MsAoJYdWeK3rDNpzDOTPNsq3Xo3KOHa
=f3rS
-----END PGP SIGNATURE-----
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/torrentzip/torrentzip-0.2-r1.ebuild,v 1.2 2008/06/04 18:02:29 flameeyes Exp $
inherit versionator eutils autotools
DESCRIPTION="archiving program that uses standard values when creating zips to create identical files over multiple systems with the ability to create a torrentzip format from a zip file"
HOMEPAGE="https://sourceforge.net/projects/trrntzip"
MY_PN=trrntzip
MY_PV="$(replace_version_separator 1 '')"
MY_P=${MY_PN}_v${MY_PV}
S=${WORKDIR}/${MY_PN}
SRC_URI="mirror://sourceforge/trrntzip/${MY_P}_src.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="sys-libs/zlib"
S=${WORKDIR}/trrntzip
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/fix-perms.patch
eautoreconf
}
src_install() {
make DESTDIR="${D}" install || die "install failed"
dodoc README AUTHORS
}