diff options
author | Carlos Silva <r3pek@gentoo.org> | 2005-08-08 19:40:02 +0000 |
---|---|---|
committer | Carlos Silva <r3pek@gentoo.org> | 2005-08-08 19:40:02 +0000 |
commit | 6ae37b79c68292807efac57bd9af96c1661e364d (patch) | |
tree | fec508c9bd35e6b4e1426750020ca73502ceaa76 | |
parent | Remove x11-libs/libXfont:font-server. (diff) | |
download | gentoo-2-6ae37b79c68292807efac57bd9af96c1661e364d.tar.gz gentoo-2-6ae37b79c68292807efac57bd9af96c1661e364d.tar.bz2 gentoo-2-6ae37b79c68292807efac57bd9af96c1661e364d.zip |
Initial import. thx to Bash in bug #101768
(Portage version: 2.0.51.22-r2)
-rw-r--r-- | app-mobilephone/moto4lin/ChangeLog | 10 | ||||
-rw-r--r-- | app-mobilephone/moto4lin/Manifest | 4 | ||||
-rw-r--r-- | app-mobilephone/moto4lin/files/digest-moto4lin-0.3 | 1 | ||||
-rw-r--r-- | app-mobilephone/moto4lin/metadata.xml | 8 | ||||
-rw-r--r-- | app-mobilephone/moto4lin/moto4lin-0.3.ebuild | 28 |
5 files changed, 51 insertions, 0 deletions
diff --git a/app-mobilephone/moto4lin/ChangeLog b/app-mobilephone/moto4lin/ChangeLog new file mode 100644 index 000000000000..d576e70c4e76 --- /dev/null +++ b/app-mobilephone/moto4lin/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-mobilephone/moto4lin +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/moto4lin/ChangeLog,v 1.1 2005/08/08 19:40:02 r3pek Exp $ + +*moto4lin-0.3 (08 Aug 2005) + + 08 Aug 2005; Carlos Silva <r3pek@gentoo.org> +metadata.xml, + +moto4lin-0.3.ebuild: + Initial import. thx to Bash in bug #101768 + diff --git a/app-mobilephone/moto4lin/Manifest b/app-mobilephone/moto4lin/Manifest new file mode 100644 index 000000000000..e51ff248abc6 --- /dev/null +++ b/app-mobilephone/moto4lin/Manifest @@ -0,0 +1,4 @@ +MD5 10b1b2acf848da4369818d6205d9ea2a ChangeLog 286 +MD5 a89a5701e09651b16f3f3d6246d841ff metadata.xml 226 +MD5 c7e8fcb9cad1b8fca2c8455adbf512e5 moto4lin-0.3.ebuild 663 +MD5 0c01e6e811c6ed425e2553e85bcb5503 files/digest-moto4lin-0.3 64 diff --git a/app-mobilephone/moto4lin/files/digest-moto4lin-0.3 b/app-mobilephone/moto4lin/files/digest-moto4lin-0.3 new file mode 100644 index 000000000000..4346e93c7508 --- /dev/null +++ b/app-mobilephone/moto4lin/files/digest-moto4lin-0.3 @@ -0,0 +1 @@ +MD5 f9e5edbc08a45ac98679e4d34d5e3574 moto4lin-0.3.tar.bz2 59392 diff --git a/app-mobilephone/moto4lin/metadata.xml b/app-mobilephone/moto4lin/metadata.xml new file mode 100644 index 000000000000..5d50a4b920b9 --- /dev/null +++ b/app-mobilephone/moto4lin/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>mobile-phone</herd> +<maintainer> + <email>r3pek@gentoo.org</email> +</maintainer> +</pkgmetadata> diff --git a/app-mobilephone/moto4lin/moto4lin-0.3.ebuild b/app-mobilephone/moto4lin/moto4lin-0.3.ebuild new file mode 100644 index 000000000000..eff1597ef527 --- /dev/null +++ b/app-mobilephone/moto4lin/moto4lin-0.3.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/moto4lin/moto4lin-0.3.ebuild,v 1.1 2005/08/08 19:40:02 r3pek Exp $ + +DESCRIPTION="Moto4lin is file manager and seem editor for Motorola P2K phones" +HOMEPAGE="http://moto4lin.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="dev-libs/libusb + x11-libs/qt" + +src_compile() { + # We need this addwrite since the uic program tries to create + # locks in there :/ + addwrite "${ROOT}/usr/qt/3/etc/settings" + + qmake + make || die "make failed" +} + +src_install() { + make INSTALL_ROOT=${D} install || die "install failed" + dodoc ChangeLog README INSTALL +} |