diff options
author | Steve Arnold <nerdboy@gentoo.org> | 2003-11-23 04:37:59 +0000 |
---|---|---|
committer | Steve Arnold <nerdboy@gentoo.org> | 2003-11-23 04:37:59 +0000 |
commit | 2bd526cd8ccd742baf7b9336f2e8de4cdf64ad01 (patch) | |
tree | 190b460542e7d4c20363cc91dfc9ee08151b5abc /app-pda/qtopia-desktop-bin | |
parent | switched to rpm eclass, updated changelog and metadata (diff) | |
download | historical-2bd526cd8ccd742baf7b9336f2e8de4cdf64ad01.tar.gz historical-2bd526cd8ccd742baf7b9336f2e8de4cdf64ad01.tar.bz2 historical-2bd526cd8ccd742baf7b9336f2e8de4cdf64ad01.zip |
switched to rpm eclass, updated changelog and metadata
Diffstat (limited to 'app-pda/qtopia-desktop-bin')
4 files changed, 57 insertions, 3 deletions
diff --git a/app-pda/qtopia-desktop-bin/Manifest b/app-pda/qtopia-desktop-bin/Manifest index 6b52b75ef0d4..348c86b1e4a3 100644 --- a/app-pda/qtopia-desktop-bin/Manifest +++ b/app-pda/qtopia-desktop-bin/Manifest @@ -1,6 +1,6 @@ MD5 a6525dea7c4200cb319655ed06468a9e metadata.xml 376 MD5 19bfa1ef6d6499691c24a7cec28a1417 qtopia-desktop-bin-1.6.2.ebuild 1800 -MD5 c58300cc8cea480f758f421d7c31eccf ChangeLog 589 -MD5 e5cf00596ca226f76b11050069939246 qtopia-desktop-bin-1.6.2-r1.ebuild 1499 -MD5 e47d4ed2b1a7b1876057de337ae540a4 files/digest-qtopia-desktop-bin-1.6.2 80 +MD5 626c932d7ce1106ab454dd8e098531a4 ChangeLog 589 +MD5 cf9d915bd24fcbdb85c16dba3d60fac2 qtopia-desktop-bin-1.6.2-r1.ebuild 1624 MD5 e47d4ed2b1a7b1876057de337ae540a4 files/digest-qtopia-desktop-bin-1.6.2-r1 80 +MD5 e47d4ed2b1a7b1876057de337ae540a4 files/digest-qtopia-desktop-bin-1.6.2 80 diff --git a/app-pda/qtopia-desktop-bin/files/digest-qtopia-desktop-bin-1.6.2-r1 b/app-pda/qtopia-desktop-bin/files/digest-qtopia-desktop-bin-1.6.2-r1 new file mode 100644 index 000000000000..5c4775f2f5b5 --- /dev/null +++ b/app-pda/qtopia-desktop-bin/files/digest-qtopia-desktop-bin-1.6.2-r1 @@ -0,0 +1 @@ +MD5 71bda30ff3a5a87e079b1ff127958039 qtopia-desktop-1.6.2-1rh9.i386.rpm 5899739 diff --git a/app-pda/qtopia-desktop-bin/metadata.xml b/app-pda/qtopia-desktop-bin/metadata.xml index ead50e518d70..8654a45b1eaa 100644 --- a/app-pda/qtopia-desktop-bin/metadata.xml +++ b/app-pda/qtopia-desktop-bin/metadata.xml @@ -2,5 +2,9 @@ <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> <herd>pda</herd> +<maintainer> + <email>nerdboy@gentoo.org</email> + <name>Steve Arnold</name> +</maintainer> <longdescription>Qtopia Desktop is the sync app for qtopia on the Zaurus. It is not available in source form.</longdescription> </pkgmetadata> diff --git a/app-pda/qtopia-desktop-bin/qtopia-desktop-bin-1.6.2-r1.ebuild b/app-pda/qtopia-desktop-bin/qtopia-desktop-bin-1.6.2-r1.ebuild new file mode 100644 index 000000000000..2e693e1e9e67 --- /dev/null +++ b/app-pda/qtopia-desktop-bin/qtopia-desktop-bin-1.6.2-r1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/qtopia-desktop-bin/qtopia-desktop-bin-1.6.2-r1.ebuild,v 1.1 2003/11/23 04:37:57 nerdboy Exp $ + +IUSE="X" + +inherit rpm + +BV=1.6.2-1 +QD="/opt/Qtopia" +S="${WORKDIR}" + +DESCRIPTION="Qtopia Deskyop sync application for Zaurus PDA's" +SRC_URI="ftp://ftp.trolltech.com/qtopia/desktop/RedHat9.0/qtopia-desktop-${BV}rh9.i386.rpm" +HOMEPAGE="http://www.trolltech.com/download/qtopia/" + +DEPEND="virtual/glibc" +RDEPEND="virtual/x11" + +LICENSE="QPL" +SLOT="0" +KEYWORDS="~x86" +RESTRICT="nomirror nostrip" + +src_install() { + dodir ${QD} + insinto ${QD}/qtopiadesktop/bin ; doins opt/Qtopia/qtopiadesktop/bin/* + insinto ${QD}/qtopiadesktop/doc ; doins opt/Qtopia/qtopiadesktop/doc/* + insinto ${QD}/qtopiadesktop/doc/en ; doins opt/Qtopia/qtopiadesktop/doc/en/* + insinto ${QD}/qtopiadesktop/doc/de ; doins opt/Qtopia/qtopiadesktop/doc/de/* + insinto ${QD}/qtopiadesktop/etc ; doins opt/Qtopia/qtopiadesktop/etc/* + insinto ${QD}/qtopiadesktop/plugins ; doins opt/Qtopia/qtopiadesktop/plugins/* + insinto ${QD}/lib ; doins opt/Qtopia/lib/* + exeinto ${QD}/bin ; doexe opt/Qtopia/bin/qtopiadesktop + dodir /etc/env.d + echo "PATH=${QD}/bin" > ${D}/etc/env.d/37qtopia-desktop-bin +} + +pkg_postinst() { + + einfo "******************************************************************" + einfo " Finished installing Qtopia Desktop into ${QD}" + einfo + einfo " To start Qtopia Desktop, run:" + einfo + einfo " $ qtopiadesktop" + einfo + einfo "******************************************************************" +} |