summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Ramsay <lack@gentoo.org>2009-05-21 17:50:27 +0000
committerJim Ramsay <lack@gentoo.org>2009-05-21 17:50:27 +0000
commitaa7e7e84892a5f3e63d9d052e6f2b0423079c706 (patch)
tree8a13598eb6c6edab46416f70f2d549c2372f0110 /rox-base
parentSparc stable, part of Bug #270738. (diff)
downloadgentoo-2-aa7e7e84892a5f3e63d9d052e6f2b0423079c706.tar.gz
gentoo-2-aa7e7e84892a5f3e63d9d052e6f2b0423079c706.tar.bz2
gentoo-2-aa7e7e84892a5f3e63d9d052e6f2b0423079c706.zip
Version cleanup
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'rox-base')
-rw-r--r--rox-base/rox-clib/ChangeLog7
-rw-r--r--rox-base/rox-clib/rox-clib-2.1.9-r1.ebuild55
2 files changed, 5 insertions, 57 deletions
diff --git a/rox-base/rox-clib/ChangeLog b/rox-base/rox-clib/ChangeLog
index fabb7bf51533..0bbf3f36df66 100644
--- a/rox-base/rox-clib/ChangeLog
+++ b/rox-base/rox-clib/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for rox-base/rox-clib
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/rox-base/rox-clib/ChangeLog,v 1.32 2008/09/01 09:36:33 armin76 Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/rox-base/rox-clib/ChangeLog,v 1.33 2009/05/21 17:50:27 lack Exp $
+
+ 21 May 2009; Jim Ramsay <lack@gentoo.org> -rox-clib-2.1.9-r1.ebuild:
+ Version cleanup
01 Sep 2008; Raúl Porcel <armin76@gentoo.org> rox-clib-2.1.10.ebuild:
sparc stable wrt #236057
diff --git a/rox-base/rox-clib/rox-clib-2.1.9-r1.ebuild b/rox-base/rox-clib/rox-clib-2.1.9-r1.ebuild
deleted file mode 100644
index 1ed3dc6eb2a0..000000000000
--- a/rox-base/rox-clib/rox-clib-2.1.9-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/rox-base/rox-clib/rox-clib-2.1.9-r1.ebuild,v 1.6 2008/05/12 01:11:38 lack Exp $
-
-inherit multilib
-
-MY_PN="ROX-CLib"
-DESCRIPTION="A library for ROX applications written in C."
-HOMEPAGE="http://rox.sourceforge.net/"
-SRC_URI="http://www.kerofin.demon.co.uk/rox/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ~sparc x86"
-IUSE=""
-
-RDEPEND=">=x11-libs/gtk+-2.0.1
- >=dev-libs/libxml2-2.4.0"
-
-DEPEND="$RDEPEND
- >=dev-util/pkgconfig-0.20"
-
-S=${WORKDIR}/ROX-CLib
-APPNAME=${MY_PN}
-
-src_compile() {
- chmod 0755 AppRun
-
- # Most rox self-compiles have a 'read' call to wait for the user to
- # press return if the compile fails.
- # Find and remove this:
- sed -i.bak -e 's/\<read WAIT\>/#read/' AppRun
-
- ./AppRun --compile || die "Could not make ROX-CLib. Sorry."
-
- # Restore the original AppRun
- mv AppRun.bak AppRun
-}
-
-src_install() {
- local baselibdir="/usr/$(get_libdir)"
-
- # clean up source instead of remove it!
- ( cd src && make clean )
-
- # remove silly .cvs files
- find . -name '.cvs*' | xargs rm -f >/dev/null 2>&1
- dodoc ${baselibdir}/${APPNAME}
- dodir ${baselibdir}/${APPNAME}
- cp -r . "${D}${baselibdir}/${APPNAME}"
- (
- cd Help
- dodoc Authors Changes ToDo README Versions
- )
-}