Ebuild
November 01, 2011, 01:38
simple, high-reliability, distributed software configuration management
| alpha | amd64 | arm | hppa | ia64 | m68k | mips | ppc | ppc64 | s390 | sh | sparc | x86 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 20111021125253 | – | ~ | – | – | – | – | – | – | – | – | – | – | ~ |
PACKAGE DESCRIPTION:
simple, high-reliability, distributed software configuration management
Category:
CHANGELOG
# ChangeLog for dev-vcs/fossil # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/fossil/ChangeLog,v 1.11 2012/03/04 20:29:37 titanofold Exp $ *fossil-20111213135356 (04 Mar 2012) 04 Mar 2012; Aaron W. Swenson (titanofold) +fossil-20111213135356.ebuild: Version bump. 20 Feb 2012; Mike Gilbert (floppym) metadata.xml: Drop no-herd. *fossil-20111021125253 (01 Nov 2011) 01 Nov 2011; Aaron W. Swenson (titanofold) +fossil-20111021125253.ebuild, metadata.xml: Version bump. Moved to EAPI4. Add myself as co-maintainer. *fossil-20110301190432 (08 Mar 2011) 08 Mar 2011; Rafael G. Martins (rafaelmartins) -files/20100318142033-gentoo.patch, -fossil-20100918155143.ebuild, -fossil-20101005035549.ebuild, -fossil-20101101142335.ebuild, +fossil-20110301190432.ebuild: Version bump. Clean up old versions. *fossil-20101111133638 (11 Nov 2010) 11 Nov 2010; Rafael G. Martins (rafaelmartins) +fossil-20101111133638.ebuild: Version bump. *fossil-20101101142335 (02 Nov 2010) 02 Nov 2010; Rafael G. Martins (rafaelmartins) +files/20101101142335-gentoo.patch, +fossil-20101101142335.ebuild: Version bump. 20 Oct 2010; Rafael G. Martins (rafaelmartins) fossil-20100918155143.ebuild, fossil-20101005035549.ebuild: Fixed sqlite dependency. Thanks to Domen Kožar (bug #340245). *fossil-20101005035549 (19 Oct 2010) 19 Oct 2010; Rafael G. Martins (rafaelmartins) -fossil-20100318142033.ebuild, +fossil-20101005035549.ebuild: Version bump. Removed old ebuild. *fossil-20100918155143 (27 Sep 2010) 27 Sep 2010; Rafael G. Martins (rafaelmartins) -fossil-20100124175507.ebuild, +fossil-20100918155143.ebuild, metadata.xml: Version bump. Removed old version. *fossil-20100318142033 (19 May 2010) 19 May 2010; Justin Lecher (jlec) +files/20100318142033-gentoo.patch, +fossil-20100318142033.ebuild: Version Bump #319503; unbundle sqlite; link as-needed conform 07 May 2010; Ulrich Mueller (ulm) +fossil-20100124175507.ebuild, +metadata.xml: Move package from dev-util to dev-vcs, bug 56967. *fossil-20100124175507 (24 Jan 2010) 24 Jan 2010; Mike Frysinger (vapier) +fossil-20100124175507.ebuild, +metadata.xml: Initial ebuild.
BUGS
No bugs found
Notes: This list is taken from a snapshot, and is not a reliable reference. Search bugzilla for accurate results.
USE FLAGS
| sqlite | Use the system SQLite instead of the bundled one |
| ssl | Adds support for Secure Socket Layer connections |
BUILD DEPENDENCIES
| dev-db/sqlite | A SQL Database Engine in a C Library |
| dev-libs/openssl | full-strength general purpose cryptography library (including SSL v2/v3 and TLS v1) |
| sys-libs/zlib | Standard (de)compression library |
RUNTIME DEPENDENCIES
| dev-db/sqlite | A SQL Database Engine in a C Library |
| dev-libs/openssl | full-strength general purpose cryptography library (including SSL v2/v3 and TLS v1) |
| sys-libs/zlib | Standard (de)compression library |
SOURCE CODE
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/fossil/fossil-20111021125253.ebuild,v
1.1 2011/11/01 01:38:13 titanofold Exp $
EAPI="4"
MY_P="${PN}-src-${PV}"
DESCRIPTION="Simple, high-reliability, distributed software configuration
management"
HOMEPAGE="http://www.fossil-scm.org/"
SRC_URI="http://www.fossil-scm.org/download/${MY_P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="sqlite +ssl"
DEPEND="sys-libs/zlib
ssl? ( dev-libs/openssl )
sqlite? ( dev-db/sqlite:3 )
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
src_configure() {
local myconf=' --with-openssl='
use ssl && myconf+='auto' || myconf+='none'
use sqlite && myconf+=' --disable-internal-sqlite'
econf ${myconf}
}
src_install() {
dobin fossil
}