summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2007-11-19 16:42:47 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2007-11-19 16:42:47 +0000
commita5e4967b3837f379388c05c74e1246d50f19229e (patch)
treea2dbc62afec42e7459af2850df8add31bbcd7509 /net-irc/rbot
parentVersion bump, bug #196795. Replaced udev rules, bug #197726. (diff)
downloadgentoo-2-a5e4967b3837f379388c05c74e1246d50f19229e.tar.gz
gentoo-2-a5e4967b3837f379388c05c74e1246d50f19229e.tar.bz2
gentoo-2-a5e4967b3837f379388c05c74e1246d50f19229e.zip
Make the spell USE flag work, add an aspell USE flag and make tzinfo optional by mean of timezone USE flag. Also allow to disable the languages.
(Portage version: 2.1.3.19)
Diffstat (limited to 'net-irc/rbot')
-rw-r--r--net-irc/rbot/ChangeLog9
-rw-r--r--net-irc/rbot/files/digest-rbot-9999-r4 (renamed from net-irc/rbot/files/digest-rbot-9999-r3)0
-rw-r--r--net-irc/rbot/rbot-9999-r3.ebuild81
-rw-r--r--net-irc/rbot/rbot-9999-r4.ebuild142
4 files changed, 150 insertions, 82 deletions
diff --git a/net-irc/rbot/ChangeLog b/net-irc/rbot/ChangeLog
index 38e4a110c211..662319e37f5a 100644
--- a/net-irc/rbot/ChangeLog
+++ b/net-irc/rbot/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for net-irc/rbot
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/rbot/ChangeLog,v 1.21 2007/11/19 13:56:54 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/rbot/ChangeLog,v 1.22 2007/11/19 16:42:46 flameeyes Exp $
+
+*rbot-9999-r4 (19 Nov 2007)
+
+ 19 Nov 2007; Diego Pettenò <flameeyes@gentoo.org> -rbot-9999-r3.ebuild,
+ +rbot-9999-r4.ebuild:
+ Make the spell USE flag work, add an aspell USE flag and make tzinfo
+ optional by mean of timezone USE flag. Also allow to disable the languages.
19 Nov 2007; Diego Pettenò <flameeyes@gentoo.org> ChangeLog:
Take maintainership again, and add the live SVN ebuild I had in my overlay.
diff --git a/net-irc/rbot/files/digest-rbot-9999-r3 b/net-irc/rbot/files/digest-rbot-9999-r4
index e69de29bb2d1..e69de29bb2d1 100644
--- a/net-irc/rbot/files/digest-rbot-9999-r3
+++ b/net-irc/rbot/files/digest-rbot-9999-r4
diff --git a/net-irc/rbot/rbot-9999-r3.ebuild b/net-irc/rbot/rbot-9999-r3.ebuild
deleted file mode 100644
index 0c78f63442c7..000000000000
--- a/net-irc/rbot/rbot-9999-r3.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/rbot/rbot-9999-r3.ebuild,v 1.1 2007/11/19 13:56:54 flameeyes Exp $
-
-inherit ruby gems
-
-[[ ${PV} == "9999" ]] && inherit subversion
-
-DESCRIPTION="rbot is a ruby IRC bot"
-HOMEPAGE="http://www.linuxbrit.co.uk/rbot/"
-
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS=""
-IUSE="spell"
-
-RDEPEND=">=virtual/ruby-1.8
- dev-ruby/ruby-bdb
- dev-ruby/tzinfo"
-DEPEND=""
-
-if [[ ${PV} == "9999" ]]; then
- SRC_URI=""
- ESVN_REPO_URI="svn://linuxbrit.co.uk/giblet/rbot/trunk"
-
- DEPEND="${DEPEND}
- dev-ruby/rake
- app-arch/zip"
-
- IUSE="${IUSE} snapshot"
-else
- SRC_URI="http://www.linuxbrit.co.uk/downloads/${P}.gem"
-fi
-
-pkg_setup() {
- enewuser rbot -1 -1 /var/lib/rbot nobody
-}
-
-svn_gem_version() {
- use snapshot && \
- echo 9998.${ESVN_WC_REVISION} || \
- echo 9999
-}
-
-src_unpack() {
- [[ ${PV} == "9999" ]] || return 0
- subversion_src_unpack
-
- cd "${S}"
- sed -i -e "/s.version =/s:'.\+':'$(svn_gem_version)':" Rakefile \
- || die "Unable to fix Rakefile version."
- sed -i -e '/\$version=/s:".\+":"'$(svn_gem_version)'":' bin/rbot \
- || die "Unable to fix rbot script version."
-}
-
-src_compile() {
- [[ ${PV} == "9999" ]] || return 0
- rake || die "Gem generation failed"
-}
-
-src_install() {
- if [[ ${PV} == "9999" ]]; then
- GEM_SRC="${S}/pkg/rbot-$(svn_gem_version).gem"
- MY_P="${PN}-$(svn_gem_version)"
- fi
- gems_src_install
-
- diropts -o rbot -g nobody -m 0700
- keepdir /var/lib/rbot
-
- newinitd "${FILESDIR}/rbot.init" rbot
- newconfd "${FILESDIR}/rbot.conf" rbot
-}
-
-pkg_postinst() {
- einfo
- elog "rbot now can be started as a normal service."
- elog "Check /etc/conf.d/rbot file for more information"
- elog "about using this feature."
- einfo
-}
diff --git a/net-irc/rbot/rbot-9999-r4.ebuild b/net-irc/rbot/rbot-9999-r4.ebuild
new file mode 100644
index 000000000000..b8e0edaaa473
--- /dev/null
+++ b/net-irc/rbot/rbot-9999-r4.ebuild
@@ -0,0 +1,142 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/rbot/rbot-9999-r4.ebuild,v 1.1 2007/11/19 16:42:46 flameeyes Exp $
+
+inherit ruby gems eutils
+
+[[ ${PV} == "9999" ]] && inherit subversion
+
+DESCRIPTION="rbot is a ruby IRC bot"
+HOMEPAGE="http://www.linuxbrit.co.uk/rbot/"
+
+LICENSE="as-is"
+SLOT="0"
+KEYWORDS=""
+IUSE="spell aspell timezone"
+ILINGUAS="zh ru nl de fr it en ja"
+
+for lang in $ILINGUAS; do
+ IUSE="${IUSE} linguas_${lang}"
+done
+
+RDEPEND=">=virtual/ruby-1.8
+ dev-ruby/ruby-bdb
+ timezone? ( dev-ruby/tzinfo )
+ spell? (
+ aspell? ( app-text/aspell )
+ !aspell? ( app-text/ispell )
+ )"
+DEPEND=""
+
+if [[ ${PV} == "9999" ]]; then
+ SRC_URI=""
+ ESVN_REPO_URI="svn://linuxbrit.co.uk/giblet/rbot/trunk"
+
+ DEPEND="${DEPEND}
+ dev-ruby/rake
+ app-arch/zip"
+
+ IUSE="${IUSE} snapshot"
+else
+ SRC_URI="http://www.linuxbrit.co.uk/downloads/${P}.gem"
+fi
+
+pkg_setup() {
+ enewuser rbot -1 -1 /var/lib/rbot nobody
+}
+
+svn_gem_version() {
+ use snapshot && \
+ echo 9998.${ESVN_WC_REVISION} || \
+ echo 9999
+}
+
+src_unpack() {
+ [[ ${PV} == "9999" ]] || return 0
+ subversion_src_unpack
+
+ cd "${S}"
+ sed -i -e "/s.version =/s:'.\+':'$(svn_gem_version)':" Rakefile \
+ || die "Unable to fix Rakefile version."
+ sed -i -e '/\$version=/s:".\+":"'$(svn_gem_version)'":' bin/rbot \
+ || die "Unable to fix rbot script version."
+}
+
+src_compile() {
+ [[ ${PV} == "9999" ]] || return 0
+ rake || die "Gem generation failed"
+}
+
+src_install() {
+ if [[ ${PV} == "9999" ]]; then
+ GEM_SRC="${S}/pkg/rbot-$(svn_gem_version).gem"
+ MY_P="${PN}-$(svn_gem_version)"
+ else
+ MY_P="${P}"
+ fi
+ gems_src_install
+
+ diropts -o rbot -g nobody -m 0700
+ keepdir /var/lib/rbot
+
+ newinitd "${FILESDIR}/rbot.init" rbot
+ newconfd "${FILESDIR}/rbot.conf" rbot
+
+ local rbot_datadir="${D}/${GEMSDIR}"/gems/${MY_P}/data/rbot
+
+ disable_rbot_plugin() {
+ mv "${rbot_datadir}"/plugins/$1.rb{,.disabled}
+ }
+
+ if ! use spell; then
+ disable_rbot_plugin spell || die "Unable to disable spell plugin"
+ elif use aspell; then
+ # This is not officially supported, but as ispell is quite a
+ # bad piece of code, at least give an opportunity to use
+ # something that works a bit better.
+ sed -i -e 's:ispell:ispell-aspell:' \
+ "${rbot_datadir}"/plugins/spell.rb \
+ || die "Unable to replace ispell with aspell."
+ fi
+
+ # This is unfortunately pretty manual at the moment, but it's just
+ # to avoid having to run special scripts to package new versions
+ # of rbot. The default if new languages are added that are not
+ # considered for an opt-out here is to install them, so you just
+ # need to add them later.
+ strip-linguas ${ILINGUAS}
+ if [[ -n ${LINGUAS} ]]; then
+ # As the the language name used by the rbot data files does
+ # not correspond to the ISO codes we usually use for LINGUAS,
+ # the following list of local varables will work as a
+ # dictionary to get the name used by rbot from the ISO code.
+ local lang_rbot_zh="traditional_chinese"
+ local lang_rbot_ru="russian"
+ local lang_rbot_nl="dutch"
+ local lang_rbot_de="german"
+ local lang_rbot_fr="french"
+ local lang_rbot_it="italian"
+ local lang_rbot_en="english"
+ local lang_rbot_ja="japanese"
+
+ for lang in ${ILINGUAS}; do
+ use linguas_${lang} && continue
+
+ lang="lang_rbot_${lang}"
+ lang_rbot=${!lang}
+
+ rm \
+ ${rbot_datadir}/languages/${lang_rbot}.lang \
+ ${rbot_datadir}/templates/lart/larts-${lang_rbot} \
+ ${rbot_datadir}/templates/lart/praises-${lang_rbot} \
+ ${rbot_datadir}/templates/salut/salut-${lang_rbot}
+ done
+ fi
+}
+
+pkg_postinst() {
+ einfo
+ elog "rbot now can be started as a normal service."
+ elog "Check /etc/conf.d/rbot file for more information about this feature."
+ einfo
+}