diff options
author | 2006-06-11 14:02:36 +0000 | |
---|---|---|
committer | 2006-06-11 14:02:36 +0000 | |
commit | 782a05d84c8ac737fa0cf74e7a40898fa3a80e03 (patch) | |
tree | d3e04838523530e7f5a4b9cf751447471627ea3c /rox-base/rox-clib/rox-clib-2.1.8.ebuild | |
parent | make sure we can find the word files #135071 by Torsten Veller (diff) | |
download | historical-782a05d84c8ac737fa0cf74e7a40898fa3a80e03.tar.gz historical-782a05d84c8ac737fa0cf74e7a40898fa3a80e03.tar.bz2 historical-782a05d84c8ac737fa0cf74e7a40898fa3a80e03.zip |
version bump as per bug #126049
Package-Manager: portage-2.1
Diffstat (limited to 'rox-base/rox-clib/rox-clib-2.1.8.ebuild')
-rw-r--r-- | rox-base/rox-clib/rox-clib-2.1.8.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/rox-base/rox-clib/rox-clib-2.1.8.ebuild b/rox-base/rox-clib/rox-clib-2.1.8.ebuild new file mode 100644 index 000000000000..bb1e4f613c3c --- /dev/null +++ b/rox-base/rox-clib/rox-clib-2.1.8.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2006 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.8.ebuild,v 1.1 2006/06/11 14:02:36 dragonheart Exp $ + +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="~x86" +IUSE="" + +DEPEND=">=x11-libs/gtk+-2.0.1 + >=dev-libs/libxml2-2.4.0" + +S=${WORKDIR}/ROX-CLib +APPNAME=${MY_PN} + +src_compile() { + chmod 0755 AppRun + ./AppRun --compile || die "Could not make ROX-CLib. Sorry." +} +src_install() { + # 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 /usr/lib/${APPNAME} + dodir /usr/lib/${APPNAME} + cp -r . ${D}/usr/lib/${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 /usr/lib/${APPNAME}/Help/rox-clib.html rox-clib.html + ln -s /usr/lib/${APPNAME}/Help/libdir.html libdir.html + ln -s /usr/lib/${APPNAME}/Help/html html +} + +pkg_postinst() { + einfo "ROX-CLib has been installed into /usr/lib/ROX-CLib" + einfo "With version 2.1.7, function names have begun to change, but" + einfo "for the time being old function names are preserved and compile" + einfo "time warnings will be issued. Please see the README for" + einfo "detailed information as well as the documentation." +} |