diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2007-11-03 23:21:50 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2007-11-03 23:21:50 +0000 |
commit | 38dd3bd4e40b2accd3f2a45764fb6ff91ab8bc3b (patch) | |
tree | ab0fa86a60f586415f2f6b01bce678664c2506ea /games-misc/fortune-mod-slackware | |
parent | Version bump to 1.3 rc6 (diff) | |
download | gentoo-2-38dd3bd4e40b2accd3f2a45764fb6ff91ab8bc3b.tar.gz gentoo-2-38dd3bd4e40b2accd3f2a45764fb6ff91ab8bc3b.tar.bz2 gentoo-2-38dd3bd4e40b2accd3f2a45764fb6ff91ab8bc3b.zip |
Version bump to 1.15
(Portage version: 2.1.3.16)
Diffstat (limited to 'games-misc/fortune-mod-slackware')
3 files changed, 50 insertions, 1 deletions
diff --git a/games-misc/fortune-mod-slackware/ChangeLog b/games-misc/fortune-mod-slackware/ChangeLog index 157e2fa9fca9..8b15daa9a0c7 100644 --- a/games-misc/fortune-mod-slackware/ChangeLog +++ b/games-misc/fortune-mod-slackware/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-misc/fortune-mod-slackware # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-misc/fortune-mod-slackware/ChangeLog,v 1.5 2007/03/12 15:52:47 genone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-misc/fortune-mod-slackware/ChangeLog,v 1.6 2007/11/03 23:21:49 tupone Exp $ + +*fortune-mod-slackware-1.15 (03 Nov 2007) + + 03 Nov 2007; Tupone Alfredo <tupone@gentoo.org> + +fortune-mod-slackware-1.15.ebuild: + Version bump 12 Mar 2007; Marius Mauch <genone@gentoo.org> fortune-mod-slackware-1.13.ebuild: diff --git a/games-misc/fortune-mod-slackware/files/digest-fortune-mod-slackware-1.15 b/games-misc/fortune-mod-slackware/files/digest-fortune-mod-slackware-1.15 new file mode 100644 index 000000000000..6d5e8eb3fcb4 --- /dev/null +++ b/games-misc/fortune-mod-slackware/files/digest-fortune-mod-slackware-1.15 @@ -0,0 +1,3 @@ +MD5 8fbf56ffc9ebceda518f02b3a8d0e55e slack-fortunes-all-1.15.tgz 122880 +RMD160 ea6c438375ff56ceb9000a70a2dd00d74379d3dd slack-fortunes-all-1.15.tgz 122880 +SHA256 37dcfcf5c536b3aecc8f40363d36fec0fd188d31917980075b27d1790a6afff9 slack-fortunes-all-1.15.tgz 122880 diff --git a/games-misc/fortune-mod-slackware/fortune-mod-slackware-1.15.ebuild b/games-misc/fortune-mod-slackware/fortune-mod-slackware-1.15.ebuild new file mode 100644 index 000000000000..7bab8839c092 --- /dev/null +++ b/games-misc/fortune-mod-slackware/fortune-mod-slackware-1.15.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-misc/fortune-mod-slackware/fortune-mod-slackware-1.15.ebuild,v 1.1 2007/11/03 23:21:49 tupone Exp $ + +# this ebuild now uses the offensive flag since AOLS +# is not exactly 'G' rated :) + +MY_PN=slack-fortunes-all +DESCRIPTION="This fortune mod is a collection of quotes seen on AOLS (Slackware)" +HOMEPAGE="http://fauxascii.com/linux/mod_quotes.html" +SRC_URI="http://fauxascii.com/linux/data/${MY_PN}-${PV}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="offensive" + +RDEPEND="games-misc/fortune-mod" + +S=${WORKDIR} + +pkg_setup() { + if ! use offensive ; then + elog "These fortunes have offensive content. Enable offensive USE Flag" + elog "ex: USE=\"offensive\" emerge ${PN}" + elog " or add to package.use file: games-misc/fortune-mod-slackware offensive" + exit 1 + fi +} + +src_unpack() { + unpack ${A} + # get rid of md5 checks and extraneous files and backups + rm -f index.* *.md5 *~ +} + +src_install() { + insinto /usr/share/fortune + doins * || die "doins failed" +} |