summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael G. Martins <rafaelmartins@gentoo.org>2017-11-19 02:25:12 +0100
committerRafael G. Martins <rafaelmartins@gentoo.org>2017-11-19 02:25:12 +0100
commit12b520885b7d554650f0b6f6a2abee45e52eec6d (patch)
tree075549ffb948b645c1409487f3ba080d552d82a8 /app-text/blogc/blogc-0.12.0.ebuild
parentx11-themes/constantine-backgrounds: remove 12.1.1.4-r0 (diff)
downloadgentoo-12b520885b7d554650f0b6f6a2abee45e52eec6d.tar.gz
gentoo-12b520885b7d554650f0b6f6a2abee45e52eec6d.tar.bz2
gentoo-12b520885b7d554650f0b6f6a2abee45e52eec6d.zip
app-text/blogc: Version bump
Package-Manager: Portage-2.3.13, Repoman-2.3.3
Diffstat (limited to 'app-text/blogc/blogc-0.12.0.ebuild')
-rw-r--r--app-text/blogc/blogc-0.12.0.ebuild57
1 files changed, 0 insertions, 57 deletions
diff --git a/app-text/blogc/blogc-0.12.0.ebuild b/app-text/blogc/blogc-0.12.0.ebuild
deleted file mode 100644
index 8dfe5bbee967..000000000000
--- a/app-text/blogc/blogc-0.12.0.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-if [[ ${PV} = *9999* ]]; then
- EGIT_REPO_URI="https://github.com/blogc/blogc.git"
- inherit git-r3 autotools
-fi
-
-DESCRIPTION="A blog compiler"
-HOMEPAGE="https://blogc.rgm.io/"
-
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.xz"
-KEYWORDS="~amd64 ~x86"
-if [[ ${PV} = *9999* ]]; then
- SRC_URI=""
- KEYWORDS=""
- DEPEND="app-text/ronn"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="git httpd test"
-
-RDEPEND="
- git? (
- dev-vcs/git )
- !dev-vcs/blogc-git-receiver
- !www-servers/blogc-runserver"
-
-DEPEND="${DEPEND}
- virtual/pkgconfig
- test? (
- git? ( dev-vcs/git )
- dev-util/cmocka )"
-
-src_prepare() {
- [[ ${PV} = *9999* ]] && eautoreconf
- eapply_user
- default
-}
-
-src_configure() {
- local myconf=""
- if [[ ${PV} = *9999* ]]; then
- myconf+="--enable-ronn"
- else
- myconf+="--disable-ronn"
- fi
- econf \
- $(use_enable test tests) \
- $(use_enable git git-receiver) \
- $(use_enable httpd runserver) \
- --disable-valgrind \
- ${myconf}
-}