diff options
author | Michele Noberasco <s4t4n@gentoo.org> | 2004-07-17 21:06:44 +0000 |
---|---|---|
committer | Michele Noberasco <s4t4n@gentoo.org> | 2004-07-17 21:06:44 +0000 |
commit | 8cb35eb50efa1da977b5c9d28f2f07a2cf0805cd (patch) | |
tree | ac2c7c2616f1196b5d9862c5db053ab1b611384c /x11-plugins/wmlaptop | |
parent | ChangeLog fixes (diff) | |
download | historical-8cb35eb50efa1da977b5c9d28f2f07a2cf0805cd.tar.gz historical-8cb35eb50efa1da977b5c9d28f2f07a2cf0805cd.tar.bz2 historical-8cb35eb50efa1da977b5c9d28f2f07a2cf0805cd.zip |
Initial import of x11-plugins/wmlaptop, version 1.3. Closes #54562
Diffstat (limited to 'x11-plugins/wmlaptop')
-rw-r--r-- | x11-plugins/wmlaptop/ChangeLog | 8 | ||||
-rw-r--r-- | x11-plugins/wmlaptop/Manifest | 5 | ||||
-rw-r--r-- | x11-plugins/wmlaptop/files/digest-wmlaptop-1.3 | 1 | ||||
-rw-r--r-- | x11-plugins/wmlaptop/files/wmlaptop.desktop | 9 | ||||
-rw-r--r-- | x11-plugins/wmlaptop/metadata.xml | 5 | ||||
-rw-r--r-- | x11-plugins/wmlaptop/wmlaptop-1.3.ebuild | 34 |
6 files changed, 62 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..20e0d299a7d9 --- /dev/null +++ b/x11-plugins/wmlaptop/Manifest @@ -0,0 +1,5 @@ +MD5 43747b0921e5975590b20d0f439d0352 wmlaptop-1.3.ebuild 790 +MD5 226bd8633f08ecc775d12d4c253bf4a8 ChangeLog 376 +MD5 62ba71d3b2fa785a4cbd5d47fdbd0eb6 metadata.xml 165 +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 +} |