summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Ramsay <lack@gentoo.org>2008-03-16 15:36:07 +0000
committerJim Ramsay <lack@gentoo.org>2008-03-16 15:36:07 +0000
commitf9ed9067c2f94f6c5c4ed46ff11a015ad737c488 (patch)
tree5e5d2648d62734314051d038b46768a92cc72566 /rox-extra
parentamd64 stable wrt #208934, thanks to Jon and Matthias. (diff)
downloadgentoo-2-f9ed9067c2f94f6c5c4ed46ff11a015ad737c488.tar.gz
gentoo-2-f9ed9067c2f94f6c5c4ed46ff11a015ad737c488.tar.bz2
gentoo-2-f9ed9067c2f94f6c5c4ed46ff11a015ad737c488.zip
Version cleanup, and fixing small syntax issues
(Portage version: 2.1.4.1)
Diffstat (limited to 'rox-extra')
-rw-r--r--rox-extra/edit/ChangeLog6
-rw-r--r--rox-extra/edit/edit-2.0-r1.ebuild12
-rw-r--r--rox-extra/edit/edit-2.0.ebuild24
3 files changed, 12 insertions, 30 deletions
diff --git a/rox-extra/edit/ChangeLog b/rox-extra/edit/ChangeLog
index c4f6c2f03510..788d6414c2ae 100644
--- a/rox-extra/edit/ChangeLog
+++ b/rox-extra/edit/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for rox-extra/edit
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/rox-extra/edit/ChangeLog,v 1.11 2008/03/16 15:29:49 lack Exp $
+# $Header: /var/cvsroot/gentoo-x86/rox-extra/edit/ChangeLog,v 1.12 2008/03/16 15:36:07 lack Exp $
+
+ 16 Mar 2008; Jim Ramsay <lack@gentoo.org> -edit-2.0.ebuild,
+ edit-2.0-r1.ebuild:
+ Version cleanup, and fixing small syntax issues
16 Mar 2008; Jim Ramsay <lack@gentoo.org> edit-2.0.ebuild,
edit-2.0-r1.ebuild:
diff --git a/rox-extra/edit/edit-2.0-r1.ebuild b/rox-extra/edit/edit-2.0-r1.ebuild
index 72c5972ace3a..493211653931 100644
--- a/rox-extra/edit/edit-2.0-r1.ebuild
+++ b/rox-extra/edit/edit-2.0-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/rox-extra/edit/edit-2.0-r1.ebuild,v 1.2 2008/03/16 15:29:49 lack Exp $
+# $Header: /var/cvsroot/gentoo-x86/rox-extra/edit/edit-2.0-r1.ebuild,v 1.3 2008/03/16 15:36:07 lack Exp $
ROX_LIB_VER=1.9.14
inherit rox
@@ -18,8 +18,10 @@ KEYWORDS="~amd64 x86"
IUSE=""
# do some cleanup. Edit 2.0 has CVS dirs included
-pkg_preinst() {
- find ${D}/usr/lib/rox/${APPNAME} -name 'CVS' | xargs rm -fr
- rm -f ${D}/usr/lib/rox/${APPNAME}/.cvsignore
- rm -fr ${D}/usr/lib/rox/${APPNAME}/tests
+src_unpack() {
+ unpack ${A}
+ cd "${S}/${APPNAME}"
+ find . -name 'CVS' | xargs rm -fr
+ rm -f .cvsignore
+ rm -fr tests
}
diff --git a/rox-extra/edit/edit-2.0.ebuild b/rox-extra/edit/edit-2.0.ebuild
deleted file mode 100644
index 9ab8885fd7b7..000000000000
--- a/rox-extra/edit/edit-2.0.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/rox-extra/edit/edit-2.0.ebuild,v 1.6 2008/03/16 15:29:49 lack Exp $
-
-ROX_LIB_VER=1.9.14
-inherit rox
-
-APPNAME=Edit
-
-DESCRIPTION="Edit is a simple text editor for ROX Desktop"
-HOMEPAGE="http://rox.sourceforge.net/"
-SRC_URI="mirror://sourceforge/rox/${P}.tgz"
-LICENSE="GPL-2"
-
-SLOT="0"
-KEYWORDS="~amd64 x86"
-IUSE=""
-
-# do some cleanup. Edit 2.0 has CVS dirs included
-pkg_preinst() {
- find ${D}/usr/lib/rox/${APPNAME} -name 'CVS' | xargs rm -fr
- rm -f ${D}/usr/lib/rox/${APPNAME}/.cvsignore
- rm -fr ${D}/usr/lib/rox/${APPNAME}/tests
-}