summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Noberasco <s4t4n@gentoo.org>2004-07-17 21:06:44 +0000
committerMichele Noberasco <s4t4n@gentoo.org>2004-07-17 21:06:44 +0000
commit91a83e379a4a87b3fb253e0bac04c6bc2f8e6217 (patch)
tree8474572d07ab1f5913ae0bb9031361f31774f556 /x11-plugins/wmlaptop
parentChangeLog fixes (Manifest recommit) (diff)
downloadgentoo-2-91a83e379a4a87b3fb253e0bac04c6bc2f8e6217.tar.gz
gentoo-2-91a83e379a4a87b3fb253e0bac04c6bc2f8e6217.tar.bz2
gentoo-2-91a83e379a4a87b3fb253e0bac04c6bc2f8e6217.zip
Initial import of x11-plugins/wmlaptop, version 1.3. Closes #54562
Diffstat (limited to 'x11-plugins/wmlaptop')
-rw-r--r--x11-plugins/wmlaptop/ChangeLog8
-rw-r--r--x11-plugins/wmlaptop/Manifest3
-rw-r--r--x11-plugins/wmlaptop/files/digest-wmlaptop-1.31
-rw-r--r--x11-plugins/wmlaptop/files/wmlaptop.desktop9
-rw-r--r--x11-plugins/wmlaptop/metadata.xml5
-rw-r--r--x11-plugins/wmlaptop/wmlaptop-1.3.ebuild34
6 files changed, 60 insertions, 0 deletions
diff --git a/x11-plugins/wmlaptop/ChangeLog b/x11-plugins/wmlaptop/ChangeLog
new file mode 100644
index 000000000000..ea3ba9617ca7
--- /dev/null
+++ b/x11-plugins/wmlaptop/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for x11-plugins/wmlaptop
+# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmlaptop/ChangeLog,v 1.1 2004/07/17 21:06:44 s4t4n Exp $
+
+*wmlaptop-1.3 (17 Jul 2004)
+
+ 17 Jul 2004; Michele Noberasco <s4t4n@gentoo.org> wmlaptop-1.3.ebuild:
+ Initial import. Thanks to Przemyslaw Maciag. Closes #54562.
diff --git a/x11-plugins/wmlaptop/Manifest b/x11-plugins/wmlaptop/Manifest
new file mode 100644
index 000000000000..bcf3708f1492
--- /dev/null
+++ b/x11-plugins/wmlaptop/Manifest
@@ -0,0 +1,3 @@
+MD5 461da43a87f1f0bcfcf782b0bed45a8c wmlaptop-1.3.ebuild 698
+MD5 52c5fb0171548d186357ef1f1f0e768b files/wmlaptop.desktop 174
+MD5 c823cd1d37e96a8be63985398723429f files/digest-wmlaptop-1.3 64
diff --git a/x11-plugins/wmlaptop/files/digest-wmlaptop-1.3 b/x11-plugins/wmlaptop/files/digest-wmlaptop-1.3
new file mode 100644
index 000000000000..f4821433b700
--- /dev/null
+++ b/x11-plugins/wmlaptop/files/digest-wmlaptop-1.3
@@ -0,0 +1 @@
+MD5 30b21929ecd63aa25227f41099298a4d wmlaptop-1.3.tar.bz2 54575
diff --git a/x11-plugins/wmlaptop/files/wmlaptop.desktop b/x11-plugins/wmlaptop/files/wmlaptop.desktop
new file mode 100644
index 000000000000..0f3c5a46468b
--- /dev/null
+++ b/x11-plugins/wmlaptop/files/wmlaptop.desktop
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Name=WmLaptop
+Comment=Laptop Monitor
+Comment[pl]=Monitor Dla Laptopa
+Exec=wmlaptop
+Type=Application
+Encoding=UTF-8
+Terminal=0
+Categories=Application;Monitor;
diff --git a/x11-plugins/wmlaptop/metadata.xml b/x11-plugins/wmlaptop/metadata.xml
new file mode 100644
index 000000000000..b1a9efc4f2f0
--- /dev/null
+++ b/x11-plugins/wmlaptop/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>desktop-dock</herd>
+</pkgmetadata>
diff --git a/x11-plugins/wmlaptop/wmlaptop-1.3.ebuild b/x11-plugins/wmlaptop/wmlaptop-1.3.ebuild
new file mode 100644
index 000000000000..c6b86f7374f0
--- /dev/null
+++ b/x11-plugins/wmlaptop/wmlaptop-1.3.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmlaptop/wmlaptop-1.3.ebuild,v 1.1 2004/07/17 21:06:44 s4t4n Exp $
+
+IUSE=""
+
+MY_P=${P}
+S=${WORKDIR}/${MY_P}
+
+DESCRIPTION="Dockapp for laptop users"
+SRC_URI="http://www.dockapps.org/download.php/id/474/${P}.tar.bz2"
+HOMEPAGE="http://www.dockapps.org/file.php/id/227"
+
+DEPEND="virtual/x11"
+RDEPEND=""
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~x86"
+
+src_compile() {
+ cd ${S}
+ emake CFLAGS="${CFLAGS} -Wall" || die "Compilation failed"
+}
+
+src_install() {
+ dodir /usr/bin
+ einstall INSTALLDIR="${D}/usr/bin" || die "Installation failed"
+
+ dodoc AUTHORS README README.IT THANKS
+
+ insinto /usr/share/applications
+ doins ${FILESDIR}/${PN}.desktop
+}