diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-05-25 10:56:00 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-05-25 10:56:00 +0000 |
commit | c6d10537ba537a8688112ef55a7cb4d0c830168d (patch) | |
tree | 1fadb9f7d99c5c3184db7bbe8cd18be44207b351 /dev-db/gmyclient | |
parent | ChangeLog fix. (diff) | |
download | gentoo-2-c6d10537ba537a8688112ef55a7cb4d0c830168d.tar.gz gentoo-2-c6d10537ba537a8688112ef55a7cb4d0c830168d.tar.bz2 gentoo-2-c6d10537ba537a8688112ef55a7cb4d0c830168d.zip |
fixed gnome desktop shortcut and added x86 keyword
Diffstat (limited to 'dev-db/gmyclient')
-rw-r--r-- | dev-db/gmyclient/ChangeLog | 5 | ||||
-rw-r--r-- | dev-db/gmyclient/Manifest | 3 | ||||
-rw-r--r-- | dev-db/gmyclient/gmyclient-0.3.ebuild | 13 |
3 files changed, 14 insertions, 7 deletions
diff --git a/dev-db/gmyclient/ChangeLog b/dev-db/gmyclient/ChangeLog index 71343150bc3c..9b9f1da4b085 100644 --- a/dev-db/gmyclient/ChangeLog +++ b/dev-db/gmyclient/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-db/gmyclient # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/gmyclient/ChangeLog,v 1.2 2003/02/12 05:48:28 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/gmyclient/ChangeLog,v 1.3 2003/05/25 10:55:51 liquidx Exp $ + + 25 May 2003; Alastair Tse <liquidx@gentoo.org> gmyclient-0.3.ebuild: + fixed gnome desktop shortcut installation (#13932) *gmyclient-0.3 (03 Nov 2002) diff --git a/dev-db/gmyclient/Manifest b/dev-db/gmyclient/Manifest new file mode 100644 index 000000000000..846ee468b892 --- /dev/null +++ b/dev-db/gmyclient/Manifest @@ -0,0 +1,3 @@ +MD5 0164a44e7d96175054ada97b2523cb6e ChangeLog 495 +MD5 7da83329e9f865e3c6bcd97a46728576 gmyclient-0.3.ebuild 733 +MD5 9ce548600f5d9e1ffeb2347725a40bd9 files/digest-gmyclient-0.3 66 diff --git a/dev-db/gmyclient/gmyclient-0.3.ebuild b/dev-db/gmyclient/gmyclient-0.3.ebuild index 1507007b1563..8fdbbf921907 100644 --- a/dev-db/gmyclient/gmyclient-0.3.ebuild +++ b/dev-db/gmyclient/gmyclient-0.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/gmyclient/gmyclient-0.3.ebuild,v 1.3 2003/02/13 10:02:35 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/gmyclient/gmyclient-0.3.ebuild,v 1.4 2003/05/25 10:55:51 liquidx Exp $ DESCRIPTION="Gnome based mysql client" SRC_URI="http://${PN}.sourceforge.net/download/${P}.tar.gz" @@ -8,12 +8,11 @@ HOMEPAGE="http://gmyclient.sourceforge.net/" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~ppc" +KEYWORDS="~ppc ~x86" IUSE="nls" -DEPEND="( >=gnome-base/gnome-libs-1.2* - dev-db/mysql )" -RDEPEND="( >=gnome-base/gnome-libs-1.2* )" +DEPEND=">=gnome-base/gnome-libs-1.2 + >=dev-db/mysql-3 " src_compile() { econf `use_enable nls` @@ -21,6 +20,8 @@ src_compile() { } src_install() { - einstall + make DESTDIR=${D} install || die "installed failed" dodoc AUTHORS COPYING ChangeLog NEWS README TODO + mv ${D}/usr/share/gmyclient/doc ${D}/usr/share/doc/${PF}/html + } |