diff options
author | 2004-05-09 19:09:28 +0000 | |
---|---|---|
committer | 2004-05-09 19:09:28 +0000 | |
commit | b58a840646bc28c8932a2122afa64a5eda9681be (patch) | |
tree | fcd970eca70a8a6168e661bec4561aa9c8ddf991 /x11-plugins | |
parent | remove multiple IUSEs (diff) | |
download | historical-b58a840646bc28c8932a2122afa64a5eda9681be.tar.gz historical-b58a840646bc28c8932a2122afa64a5eda9681be.tar.bz2 historical-b58a840646bc28c8932a2122afa64a5eda9681be.zip |
revision bump; fixes Bug #46770 (Thanks to Theefer)
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/gai-pager/ChangeLog | 7 | ||||
-rw-r--r-- | x11-plugins/gai-pager/Manifest | 4 | ||||
-rw-r--r-- | x11-plugins/gai-pager/files/digest-gai-pager-0.2-r1 | 1 | ||||
-rw-r--r-- | x11-plugins/gai-pager/gai-pager-0.2-r1.ebuild | 32 |
4 files changed, 41 insertions, 3 deletions
diff --git a/x11-plugins/gai-pager/ChangeLog b/x11-plugins/gai-pager/ChangeLog index 5bce6e20ac0c..4db61f08b42a 100644 --- a/x11-plugins/gai-pager/ChangeLog +++ b/x11-plugins/gai-pager/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-plugins/gai-pager -# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gai-pager/ChangeLog,v 1.1 2003/12/10 12:05:57 lordvan Exp $ +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gai-pager/ChangeLog,v 1.2 2004/05/09 19:09:27 lordvan Exp $ + + 09 May 2004; Thomas Raschbacher <lordvan@gentoo.org> : + revision bump; fixes Bug #46770 (Thanks to Theefer) *gai-pager-0.2 (10 Dec 2003) diff --git a/x11-plugins/gai-pager/Manifest b/x11-plugins/gai-pager/Manifest index f839feda1dc6..c8b86136f164 100644 --- a/x11-plugins/gai-pager/Manifest +++ b/x11-plugins/gai-pager/Manifest @@ -1,4 +1,6 @@ +MD5 26504695e9b40afd977b4295285614ed gai-pager-0.2-r1.ebuild 1036 MD5 88475fe775ce5a08ace4b245906d4679 gai-pager-0.2.ebuild 887 -MD5 29cae906ecc295c7d7d684c7026e9148 ChangeLog 374 +MD5 84904e84e8f76486d43a1c1d020a338c ChangeLog 486 MD5 4de810beafe6af976494dfe29abd5c60 metadata.xml 405 +MD5 e674768842f1983b98ad479c2a8c26be files/digest-gai-pager-0.2-r1 65 MD5 e674768842f1983b98ad479c2a8c26be files/digest-gai-pager-0.2 65 diff --git a/x11-plugins/gai-pager/files/digest-gai-pager-0.2-r1 b/x11-plugins/gai-pager/files/digest-gai-pager-0.2-r1 new file mode 100644 index 000000000000..30974baad7a4 --- /dev/null +++ b/x11-plugins/gai-pager/files/digest-gai-pager-0.2-r1 @@ -0,0 +1 @@ +MD5 6beb5c1c5cec350fd36d9b142a0581b2 gai-pager-0.2.tar.bz2 55750 diff --git a/x11-plugins/gai-pager/gai-pager-0.2-r1.ebuild b/x11-plugins/gai-pager/gai-pager-0.2-r1.ebuild new file mode 100644 index 000000000000..8a8a375b7a81 --- /dev/null +++ b/x11-plugins/gai-pager/gai-pager-0.2-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gai-pager/gai-pager-0.2-r1.ebuild,v 1.1 2004/05/09 19:09:27 lordvan Exp $ + +MY_PV="${PV}" +MY_P="${PN}-${MY_PV}" +DESCRIPTION="This is an Enlightenment and a Waimea pager." +HOMEPAGE="http://gai.sourceforge.net/" +SRC_URI="mirror://sourceforge/gai/${MY_P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND=">=x11-libs/gai-0.5.0_pre6" + +S=${WORKDIR}/${MY_P} + +src_compile() { +# MY_CONF="--prefix=${D}/usr " + econf ${MY_CONF} || die + mv ${S}/Makefile ${S}/Makefile.orig + sed s%"IMAGE_PATH = \"\\\\\"\$.PREFIX./"%"IMAGE_PATH = \"\\\\\"/usr/"% ${S}/Makefile.orig > ${S}/Makefile + emake || die +} + +src_install() { + # small hack so the gnome picture gets installed in place + mv ${S}/Makefile ${S}/Makefile.orig + sed s%"GNOMEDIR = /usr"%"GNOMEDIR = ${D}/usr"% ${S}/Makefile.orig > ${S}/Makefile + einstall || die + dodoc BUGS COPYING CHANGES INSTALL README README.gai TODO +} |