Portage is a package management system used by Gentoo Linux
# ChangeLog for dev-util/csup
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/csup/ChangeLog,v 1.6 2008/04/14 12:09:03 flameeyes Exp $
14 Apr 2008; Diego Pettenò
+files/csup-20060318-respectflags.patch, csup-20060318.ebuild:
Respect CFLAGS and LDFLAGS.
03 Nov 2006; Timothy Redaelli
Added ~ppc keyword.
17 Oct 2006; Diego Pettenò
Add missing dependencies over zlib and openssl.
07 Oct 2006; Andrej Kacian
Added ~x86 keyword. Bug #150323, reported by Timothy Redaelli
22 Sep 2006; Diego Pettenò
Block newer freebsd-ubin that provides a newer version of csup.
*csup-20060318 (05 Jul 2006)
05 Jul 2006; Diego Pettenò
+csup-20060318.ebuild:
Initial import, based on the work of Robert Sebastian Gerus and David Somers
in bug #132058.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
AUX csup-20060318-respectflags.patch 1374 RMD160 8eb19f7d38ddf001b93f0f3c440931ccbc4ca0ec SHA1 9385120537ed902a0d2620607a1927e5b13c3d5e SHA256 abae4744ccd06a4ad312c2bd359dcdb8299c2bbc091c8d1097613616631ca320
DIST csup-snap-20060318.tgz 78968 RMD160 57009b0bdb4c8af9bd534429486982cceadbb066 SHA1 209c53137245e3e5e2cea98151115043d993ce35 SHA256 81a9695be6cf989de6fb2e4fe53d6efadb003cd842cf6993844a52fc8190a7fc
EBUILD csup-20060318.ebuild 1128 RMD160 ab41b94a8021f6630d041d348ce1876ed34cd15f SHA1 d9e10fdb3b52147577aa15a481c1657d04bc36d6 SHA256 2b5aa3e87475f88a6c8f5a24712d56723af460ce28e4668fc3696d62686098ff
MISC ChangeLog 1096 RMD160 2d0b2409263a9eca78aef337b0778908a422a8c4 SHA1 fb3fca4ea3e8762a3ab84a868aac6103c270b92d SHA256 86c318bf6a3899715798d2f245156bf750ae9a7b42c6c2653e3ad81111c3b291
MISC metadata.xml 157 RMD160 967f9b3fddf409be08620ee390863ae8a44ea2fb SHA1 fd33a22d95ca46b8ea8f27be48d0b0f10914a638 SHA256 1dd5589fe62f08037ccf5e6a3c90d449e4e4766b50aeaad316de5de17ae6b86b
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.9 (GNU/Linux)
iEYEARECAAYFAkgDSWUACgkQAiZjviIA2Xit1gCg433eA3jl3/c4oR5cDf7sbBQm
nsUAoOHq098L4YSeXI74HhkKhNsmGcZ4
=B4Pe
-----END PGP SIGNATURE-----
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/csup/csup-20060318.ebuild,v 1.6 2008/04/14 12:09:03 flameeyes Exp $
inherit toolchain-funcs eutils
DESCRIPTION="C-based rewrite of CVSup (software for distributing and updating collections of files accross a network)"
HOMEPAGE="http://www.mu.org/~mux/csup.html"
SRC_URI="http://mu.org/~mux/csup-snap-${PV}.tgz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
IUSE=""
DEPEND="dev-libs/openssl
sys-libs/zlib"
RDEPEND="${DEPEND}
!>=sys-freebsd/freebsd-ubin-6.2_beta1"
DEPEND="${DEPEND}
>=sys-devel/bison-2.1"
S="${WORKDIR}/${PN}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-respectflags.patch"
}
src_compile() {
# unable to work with yacc, but bison is ok.
emake \
CC="$(tc-getCC)" \
PREFIX=/usr YACC=bison || die "emake failed"
}
src_install() {
# instead of using make install, just copy the stuff directly
dobin csup || die "failed to install executable"
doman csup.1 || die "failed to install man page"
dodoc README
}