diff options
author | Michele Noberasco <s4t4n@gentoo.org> | 2010-09-06 09:39:08 +0000 |
---|---|---|
committer | Michele Noberasco <s4t4n@gentoo.org> | 2010-09-06 09:39:08 +0000 |
commit | a4a174cd47e947f345bfba497478ad6a2bbfc2cf (patch) | |
tree | 2e31ade7e71106d96025f0e83b255ef848a7b590 /x11-plugins/monto | |
parent | Respect LDFLAGS. Bug #336112 (diff) | |
download | historical-a4a174cd47e947f345bfba497478ad6a2bbfc2cf.tar.gz historical-a4a174cd47e947f345bfba497478ad6a2bbfc2cf.tar.bz2 historical-a4a174cd47e947f345bfba497478ad6a2bbfc2cf.zip |
Initial import. Closes bug #123307.
Package-Manager: portage-2.1.8.3/cvs/Linux i686
Diffstat (limited to 'x11-plugins/monto')
-rw-r--r-- | x11-plugins/monto/ChangeLog | 8 | ||||
-rw-r--r-- | x11-plugins/monto/Manifest | 4 | ||||
-rw-r--r-- | x11-plugins/monto/metadata.xml | 5 | ||||
-rw-r--r-- | x11-plugins/monto/monto-0.1.1.ebuild | 35 |
4 files changed, 52 insertions, 0 deletions
diff --git a/x11-plugins/monto/ChangeLog b/x11-plugins/monto/ChangeLog new file mode 100644 index 000000000000..aef7b361a7d0 --- /dev/null +++ b/x11-plugins/monto/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for x11-plugins/monto +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/monto/ChangeLog,v 1.1 2010/09/06 09:39:08 s4t4n Exp $ + +*monto-0.1.1 (06 Sep 2010) + + 06 Sep 2010; Michele Noberasco <s4t4n@gentoo.org>; +monto-0.1.1.ebuild: + Initial import. Closes bug #123307. diff --git a/x11-plugins/monto/Manifest b/x11-plugins/monto/Manifest new file mode 100644 index 000000000000..eaf1c299c292 --- /dev/null +++ b/x11-plugins/monto/Manifest @@ -0,0 +1,4 @@ +DIST monto-0.1.1.tar.gz 18033 RMD160 b6e7171ad473603b16e0611e637583283ad37483 SHA1 dcf9ca1662975602892f6136d53171d409716ce2 SHA256 64a4550e285b97addc7dad93ee7ff3dff97cf5ca0ad089440073362e2ba1ff3b +EBUILD monto-0.1.1.ebuild 841 RMD160 7a9b6f7b17a1eef82157c1332f314ce2648e2039 SHA1 2f5e156ebb818205888cda171df113debe6fc96e SHA256 4cbf56c43c3ea76f4cefb781651ad3d95e1c611eda0762844446af01c4ce15ee +MISC ChangeLog 346 RMD160 f58144c92efbb3c411a4dcb82994bc6a653787cf SHA1 521ef2f5923b567353d0badda9a49cf5732bddfd SHA256 4de38836673fb71a285fa98af0722a344991995adfce7a8cba86b77aadb00bee +MISC metadata.xml 165 RMD160 a554e96dc33b1fb4b3518f27a21bf3f59dc21b1c SHA1 674655a4f0fc35c7b3b2e05aab1910c0ebafade1 SHA256 c2f8a0b30c83dba56f0c36a4ba1cb002621ae58dfc13fae94b9db6eb67fb9f1b diff --git a/x11-plugins/monto/metadata.xml b/x11-plugins/monto/metadata.xml new file mode 100644 index 000000000000..b1a9efc4f2f0 --- /dev/null +++ b/x11-plugins/monto/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/monto/monto-0.1.1.ebuild b/x11-plugins/monto/monto-0.1.1.ebuild new file mode 100644 index 000000000000..be5c90957cd6 --- /dev/null +++ b/x11-plugins/monto/monto-0.1.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/monto/monto-0.1.1.ebuild,v 1.1 2010/09/06 09:39:08 s4t4n Exp $ + +EAPI=2 +inherit eutils + +DESCRIPTION="This WindowMaker dockapp is a simple manual device mounter (up to four devices)." +HOMEPAGE="http://dockapps.org/file.php/id/274" +SRC_URI="http://dockapps.org/download.php/id/274/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +IUSE="" +KEYWORDS="~x86" +RDEPEND="x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm" +DEPEND="${RDEPEND} + x11-proto/xproto + x11-proto/xextproto" + +S="${S}/src" + +src_prepare() { + sed -ie "s/-o monto/\$(LDFLAGS) -o monto/" Makefile +} + +src_compile() { + emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" || die +} + +src_install() { + dodoc ../AUTHORS ../NEWS ../README + dobin ${PN} +} |