summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Ramsay <lack@gentoo.org>2007-06-12 20:38:11 +0000
committerJim Ramsay <lack@gentoo.org>2007-06-12 20:38:11 +0000
commitb03ea77c4398353c3774682d5a52820208bfe898 (patch)
treef68ece09c2f62c10c0065bd3507ccc8e41bf5ed2 /rox-base/rox-clib
parentRe-masking packages the /right/ way (diff)
downloadrox-b03ea77c4398353c3774682d5a52820208bfe898.tar.gz
rox-b03ea77c4398353c3774682d5a52820208bfe898.tar.bz2
rox-b03ea77c4398353c3774682d5a52820208bfe898.zip
Package cleanup - Some have gone to the main tree, some new versions added from the main tree.
svn path=/trunk/overlay/; revision=7
Diffstat (limited to 'rox-base/rox-clib')
-rw-r--r--rox-base/rox-clib/Manifest1
-rw-r--r--rox-base/rox-clib/rox-clib-2.1.9-r1.ebuild60
2 files changed, 0 insertions, 61 deletions
diff --git a/rox-base/rox-clib/Manifest b/rox-base/rox-clib/Manifest
index 155750d..0bf25a6 100644
--- a/rox-base/rox-clib/Manifest
+++ b/rox-base/rox-clib/Manifest
@@ -1,3 +1,2 @@
DIST ROX-CLib-2.1.9.tar.gz 569820 RMD160 d88f9e35924b8921cd199c7f645cf50925e0a36e SHA1 cd6b528d00643adac76e5e97f4c705633091aa8f SHA256 7cd8aea53948552d940d2a6d9a24b9e65798371e99ea50cb77f7eecd65b1c33c
-EBUILD rox-clib-2.1.9-r1.ebuild 1584 RMD160 fcd7d5e4374a9cde2efa6b026f998b2f1182e07b SHA1 7ddda371b0981f948273a4bb172ba71a2ac8c21d SHA256 859f6b5fa6774782230aad196a6e415b901d7117d108d42f8509fa7ace6826e3
EBUILD rox-clib-2.1.9-r2.ebuild 1688 RMD160 75fc55c9b8407c7bbf8a258dcdd6092d6142ad92 SHA1 376bcb8d31546fda066d86ae4d550f460119ef1b SHA256 3217569955a14feae4fc93479235580eb0c894fc5816a3ed7d955657b766bd27
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 b7ff00c..0000000
--- a/rox-base/rox-clib/rox-clib-2.1.9-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2007 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.ebuild,v 1.2 2007/02/09 22:02:10 opfer 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 ~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 COPYING README Versions
- )
-
- #finally link the html and latex dirs
- #cd ${D}/usr/share/doc/${P}
- #ln -s ${baselibdir}/${APPNAME}/Help/rox-clib.html rox-clib.html
- #ln -s ${baselibdir}/${APPNAME}/Help/libdir.html libdir.html
- #ln -s ${baselibdir}/${APPNAME}/Help/html html
-}