summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron W. Swenson <titanofold@gentoo.org>2013-04-25 21:02:32 +0000
committerAaron W. Swenson <titanofold@gentoo.org>2013-04-25 21:02:32 +0000
commit40475a779724dcce015095b2c462101ac15dfb27 (patch)
tree2ad619fcde60c6cf5610caf1f31bd9169023a535 /dev-vcs
parentwww-client/httrack: Automake 1.13 (bug #467120) (diff)
downloadgentoo-2-40475a779724dcce015095b2c462101ac15dfb27.tar.gz
gentoo-2-40475a779724dcce015095b2c462101ac15dfb27.tar.bz2
gentoo-2-40475a779724dcce015095b2c462101ac15dfb27.zip
version bump
(Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key D1BBFDA0)
Diffstat (limited to 'dev-vcs')
-rw-r--r--dev-vcs/fossil/ChangeLog10
-rw-r--r--dev-vcs/fossil/fossil-20130216000435.ebuild41
-rw-r--r--dev-vcs/fossil/metadata.xml27
3 files changed, 64 insertions, 14 deletions
diff --git a/dev-vcs/fossil/ChangeLog b/dev-vcs/fossil/ChangeLog
index 80826b14f5d5..1141669857fd 100644
--- a/dev-vcs/fossil/ChangeLog
+++ b/dev-vcs/fossil/ChangeLog
@@ -1,6 +1,12 @@
# 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.12 2012/11/13 01:41:23 titanofold Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/fossil/ChangeLog,v 1.13 2013/04/25 21:02:31 titanofold Exp $
+
+*fossil-20130216000435 (25 Apr 2013)
+
+ 25 Apr 2013; Aaron W. Swenson <titanofold@gentoo.org>
+ +fossil-20130216000435.ebuild, metadata.xml:
+ version bump
*fossil-20121022124804 (13 Nov 2012)
diff --git a/dev-vcs/fossil/fossil-20130216000435.ebuild b/dev-vcs/fossil/fossil-20130216000435.ebuild
new file mode 100644
index 000000000000..5c135f59048d
--- /dev/null
+++ b/dev-vcs/fossil/fossil-20130216000435.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/fossil/fossil-20130216000435.ebuild,v 1.1 2013/04/25 21:02:32 titanofold Exp $
+
+EAPI="4"
+
+MY_P="${PN}-src-${PV}"
+
+DESCRIPTION="Simple, high-reliability, source control management, and more"
+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="json -sqlite +ssl tcl"
+
+DEPEND="sys-libs/zlib
+ ssl? ( dev-libs/openssl )
+ sqlite? ( dev-db/sqlite:3 )
+ tcl? ( dev-lang/tcl )
+"
+
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+ # --with-tcl: works
+ # --without-tcl: dies
+ local myconf='--with-zlib --markdown'
+ use json && myconf+=' --json'
+ use sqlite && myconf+=' --disable-internal-sqlite'
+ use ssl && myconf+=' --with-openssl'
+ use tcl && myconf+=' --with-tcl --with-tcl-stubs'
+ econf ${myconf}
+}
+
+src_install() {
+ dobin fossil
+}
diff --git a/dev-vcs/fossil/metadata.xml b/dev-vcs/fossil/metadata.xml
index c3bfa3349f16..2f2983e43e30 100644
--- a/dev-vcs/fossil/metadata.xml
+++ b/dev-vcs/fossil/metadata.xml
@@ -1,16 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer>
- <email>rafaelmartins@gentoo.org</email>
- <name>Rafael G. Martins</name>
- </maintainer>
- <maintainer>
- <email>titanofold@gentoo.org</email>
- <name>Aaron W. Swenson</name>
- <description>Co-Maintainer</description>
- </maintainer>
- <use>
- <flag name="sqlite">Use the system SQLite instead of the bundled one</flag>
- </use>
+ <maintainer>
+ <email>rafaelmartins@gentoo.org</email>
+ <name>Rafael G. Martins</name>
+ </maintainer>
+ <maintainer>
+ <email>titanofold@gentoo.org</email>
+ <name>Aaron W. Swenson</name>
+ <description>Co-Maintainer</description>
+ </maintainer>
+ <use>
+ <flag name="json">Enable the JSON API of Fossil's wiki</flag>
+ <flag name="sqlite">
+ Use the system SQLite instead of the bundled one
+ </flag>
+ </use>
</pkgmetadata>