public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Benedikt Boehm (hollow)" <hollow@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in www-apps/drraw: drraw-2.0.1.ebuild drraw-2.1.3.ebuild ChangeLog
Date: Fri, 22 Feb 2008 17:06:44 +0000	[thread overview]
Message-ID: <E1JSbMC-0006P6-6e@stork.gentoo.org> (raw)

hollow      08/02/22 17:06:44

  Modified:             drraw-2.0.1.ebuild drraw-2.1.3.ebuild ChangeLog
  Log:
  ebuild cleanup wrt #208584
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.5                  www-apps/drraw/drraw-2.0.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/drraw/drraw-2.0.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/drraw/drraw-2.0.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/drraw/drraw-2.0.1.ebuild?r1=1.4&r2=1.5

Index: drraw-2.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/drraw/drraw-2.0.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- drraw-2.0.1.ebuild	3 Sep 2004 17:17:20 -0000	1.4
+++ drraw-2.0.1.ebuild	22 Feb 2008 17:06:43 -0000	1.5
@@ -1,38 +1,50 @@
-# Copyright 1999-2004 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/drraw/drraw-2.0.1.ebuild,v 1.4 2004/09/03 17:17:20 pvdabeel Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/drraw/drraw-2.0.1.ebuild,v 1.5 2008/02/22 17:06:43 hollow Exp $
 
 inherit webapp
 
-IUSE=""
-
-DESCRIPTION="drraw is a simple web based presentation front-end for RRDtool that allows you to interactively build graphs of your own design"
+DESCRIPTION="drraw is a simple web based presentation front-end for RRDtool"
 HOMEPAGE="http://web.taranis.org/drraw"
 SRC_URI="http://web.taranis.org/${PN}/dist/${P}.tgz"
 
+LICENSE="GPL-2"
 KEYWORDS="~x86 ppc"
+IUSE=""
 
-RDEPEND="
-	>=dev-lang/perl-5.6
-	>=net-analyzer/rrdtool-1.0.47
-"
+RDEPEND=">=dev-lang/perl-5.6
+	virtual/perl-CGI
+	>=net-analyzer/rrdtool-1.0.47"
 
-LICENSE="GPL-2"
+need_httpd_cgi
 
 src_unpack() {
 	unpack ${A}
-	cd ${S}
-	sed -e "s|/usr/local/bin/perl|/usr/bin/perl|
-		s|/drraw.conf|/../drraw.conf|" -i drraw.cgi
-	sed -e "s|/somewhere/drraw/saved|/tmp|
-		s|/somewhere/drraw/tmp|/tmp|" -i drraw.conf
+	cd "${S}"
+	sed -i -e "s|/usr/local/bin/perl|/usr/bin/perl|" drraw.cgi
+	sed -i \
+		-e "s|/somewhere/drraw/saved|/tmp|" \
+		-e "s|/somewhere/drraw/tmp|/tmp|" \
+		drraw.conf
 }
 
 src_install() {
 	webapp_src_preinst
+
 	dodoc CHANGES INSTALL README.EVENTS WISHLIST
-	cp drraw.cgi ${D}/${MY_CGIBINDIR} && chmod +x ${D}/${MY_CGIBINDIR}/drraw.cgi
-	cp drraw.conf ${D}/${MY_HOSTROOTDIR}
-	webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt
+	rm CHANGES INSTALL README.EVENTS WISHLIST
+
+	insinto "${MY_CGIBINDIR}"
+	doins drraw.conf
+
+	exeinto "${MY_CGIBINDIR}"
+	doexe drraw.cgi
+
+	insinto "${MY_ICONSDIR}"
+	doins icons/*.gif
+
+	webapp_configfile "${MY_CGIBINDIR}"/drraw.conf
+
+	webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
 	webapp_src_install
 }



1.4                  www-apps/drraw/drraw-2.1.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/drraw/drraw-2.1.3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/drraw/drraw-2.1.3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/drraw/drraw-2.1.3.ebuild?r1=1.3&r2=1.4

Index: drraw-2.1.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/drraw/drraw-2.1.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- drraw-2.1.3.ebuild	3 Jan 2007 00:40:55 -0000	1.3
+++ drraw-2.1.3.ebuild	22 Feb 2008 17:06:43 -0000	1.4
@@ -1,42 +1,50 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/drraw/drraw-2.1.3.ebuild,v 1.3 2007/01/03 00:40:55 rl03 Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/drraw/drraw-2.1.3.ebuild,v 1.4 2008/02/22 17:06:43 hollow Exp $
 
 inherit webapp
 
-IUSE=""
-
-DESCRIPTION="drraw is a simple web based presentation front-end for RRDtool that allows you to interactively build graphs of your own design"
+DESCRIPTION="drraw is a simple web based presentation front-end for RRDtool"
 HOMEPAGE="http://web.taranis.org/drraw"
 SRC_URI="http://web.taranis.org/${PN}/dist/${P}.tgz"
 
-KEYWORDS="~x86 ~ppc"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
 
-RDEPEND="
-	>=dev-lang/perl-5.6
+RDEPEND=">=dev-lang/perl-5.6
 	virtual/perl-CGI
-	>=net-analyzer/rrdtool-1.2.1
-"
+	>=net-analyzer/rrdtool-1.2.1"
 
-LICENSE="GPL-2"
+need_httpd_cgi
 
 src_unpack() {
 	unpack ${A}
-	cd ${S}
-	sed -e "s|/usr/local/bin/perl|/usr/bin/perl|" -i drraw.cgi
-	sed -e "s|/somewhere/drraw/saved|/tmp|
-		s|/somewhere/drraw/tmp|/tmp|" -i drraw.conf
+	cd "${S}"
+	sed -i -e "s|/usr/local/bin/perl|/usr/bin/perl|" drraw.cgi
+	sed -i \
+		-e "s|/somewhere/drraw/saved|/tmp|" \
+		-e "s|/somewhere/drraw/tmp|/tmp|" \
+		drraw.conf
 }
 
 src_install() {
 	webapp_src_preinst
+
 	dodoc CHANGES INSTALL README.EVENTS WISHLIST
-	cp drraw.{cgi,conf} ${D}/${MY_CGIBINDIR}
-	cp icons/* ${MY_ICONSDIR}
+	rm CHANGES INSTALL README.EVENTS WISHLIST
+
+	insinto "${MY_CGIBINDIR}"
+	doins drraw.conf
+
+	exeinto "${MY_CGIBINDIR}"
+	doexe drraw.cgi
+
+	insinto "${MY_ICONSDIR}"
+	doins icons/*.gif
 
-	webapp_configfile ${MY_CGIBINDIR}/drraw.conf
+	webapp_configfile "${MY_CGIBINDIR}"/drraw.conf
 
-	webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt
+	webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
 	webapp_src_install
-	chmod +x ${D}/${MY_CGIBINDIR}/drraw.cgi
 }



1.9                  www-apps/drraw/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/drraw/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/drraw/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/drraw/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/drraw/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	22 Feb 2007 00:29:45 -0000	1.8
+++ ChangeLog	22 Feb 2008 17:06:43 -0000	1.9
@@ -1,6 +1,10 @@
 # ChangeLog for www-apps/drraw
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/drraw/ChangeLog,v 1.8 2007/02/22 00:29:45 jokey Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/www-apps/drraw/ChangeLog,v 1.9 2008/02/22 17:06:43 hollow Exp $
+
+  22 Feb 2008; Benedikt Böhm <hollow@gentoo.org> drraw-2.0.1.ebuild,
+  drraw-2.1.3.ebuild:
+  ebuild cleanup wrt #208584
 
   22 Feb 2007; Markus Ullmann <jokey@gentoo.org> ChangeLog:
   Redigest for Manifest2



-- 
gentoo-commits@lists.gentoo.org mailing list



                 reply	other threads:[~2008-02-22 17:06 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1JSbMC-0006P6-6e@stork.gentoo.org \
    --to=hollow@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox