diff options
author | Thomas Raschbacher <lordvan@gentoo.org> | 2004-05-09 19:09:28 +0000 |
---|---|---|
committer | Thomas Raschbacher <lordvan@gentoo.org> | 2004-05-09 19:09:28 +0000 |
commit | dd213ad8e6d753a02cc1959bde199f33a7c0cdb4 (patch) | |
tree | c0283e8ddf920667352df53476e0c1f6369c3ac1 /x11-plugins | |
parent | remove multiple IUSEs (Manifest recommit) (diff) | |
download | gentoo-2-dd213ad8e6d753a02cc1959bde199f33a7c0cdb4.tar.gz gentoo-2-dd213ad8e6d753a02cc1959bde199f33a7c0cdb4.tar.bz2 gentoo-2-dd213ad8e6d753a02cc1959bde199f33a7c0cdb4.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 | 3 | ||||
-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, 40 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..68860ea16437 100644 --- a/x11-plugins/gai-pager/Manifest +++ b/x11-plugins/gai-pager/Manifest @@ -1,4 +1,5 @@ -MD5 88475fe775ce5a08ace4b245906d4679 gai-pager-0.2.ebuild 887 +MD5 784fbef82abf9fe90f1ae89825dbf1d3 gai-pager-0.2-r1.ebuild 1033 MD5 29cae906ecc295c7d7d684c7026e9148 ChangeLog 374 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 +} |