diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-01-29 21:00:15 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-01-29 21:00:15 +0000 |
commit | 4e6dae8b5b56c944cdbd4230a12d8c03866927db (patch) | |
tree | 0e946ae28339039d68b3205dc75584dea6423728 /xfce-extra/xfce4-mount-plugin | |
parent | Version bump thanks to LABBE Corentin (Montjoie) (diff) | |
download | historical-4e6dae8b5b56c944cdbd4230a12d8c03866927db.tar.gz historical-4e6dae8b5b56c944cdbd4230a12d8c03866927db.tar.bz2 historical-4e6dae8b5b56c944cdbd4230a12d8c03866927db.zip |
bump to eapi3, use arrays etc
Package-Manager: portage-2.2.0_alpha19/cvs/Linux x86_64
Diffstat (limited to 'xfce-extra/xfce4-mount-plugin')
-rw-r--r-- | xfce-extra/xfce4-mount-plugin/Manifest | 2 | ||||
-rw-r--r-- | xfce-extra/xfce4-mount-plugin/xfce4-mount-plugin-0.5.5.ebuild | 19 |
2 files changed, 12 insertions, 9 deletions
diff --git a/xfce-extra/xfce4-mount-plugin/Manifest b/xfce-extra/xfce4-mount-plugin/Manifest index 19eff8388dee..7134e649f1bd 100644 --- a/xfce-extra/xfce4-mount-plugin/Manifest +++ b/xfce-extra/xfce4-mount-plugin/Manifest @@ -1,4 +1,4 @@ DIST xfce4-mount-plugin-0.5.5.tar.bz2 188141 RMD160 60b762499a7ba923414556de0562885f1225cfd5 SHA1 1215093edd37e684542dc14375a1c349eee64a2c SHA256 76fc4e2712cdce3bee57bea701afe3847725c629f47670741de14364b836f8a8 -EBUILD xfce4-mount-plugin-0.5.5.ebuild 796 RMD160 3938136d15922b0550afec2df0473b3c63362ac0 SHA1 86d0ead3183d4e9fcb84dce6806706e1c5e9c0e8 SHA256 562f8331d8c2526248b4902aa86d81b881833514a1a805b556d750d720abb7b5 +EBUILD xfce4-mount-plugin-0.5.5.ebuild 807 RMD160 deccd76982260f9390421a2c375c5380a632cbdf SHA1 c7e927c84c5b049b64f1747155af4656dcb7fc7e SHA256 3c2578a35d1f01a7f45bc4556365ddba22af77f39b878b03a8db87ee1718626b MISC ChangeLog 546 RMD160 a30a6ab1af5cbc3b4c4319c5546ad965573fe3b3 SHA1 c3c4132341bbae20325c437d12d4d45cf092a64c SHA256 1cf88132259d7391f41fb940a75790c80f5a39e52f1cd7f88dce5753ee5e746d MISC metadata.xml 159 RMD160 43722935bd7b4db7fe8db681054f2e53c4a5f7ce SHA1 15958ad72e234ba572c9534533c21532eb6bc0fd SHA256 900ea49b6703fce452e205b85226bf1f994725963e5840da501182e7487d0e63 diff --git a/xfce-extra/xfce4-mount-plugin/xfce4-mount-plugin-0.5.5.ebuild b/xfce-extra/xfce4-mount-plugin/xfce4-mount-plugin-0.5.5.ebuild index e3948684e260..a1f999f73d97 100644 --- a/xfce-extra/xfce4-mount-plugin/xfce4-mount-plugin-0.5.5.ebuild +++ b/xfce-extra/xfce4-mount-plugin/xfce4-mount-plugin-0.5.5.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-mount-plugin/xfce4-mount-plugin-0.5.5.ebuild,v 1.2 2009/10/08 17:38:00 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-mount-plugin/xfce4-mount-plugin-0.5.5.ebuild,v 1.3 2011/01/29 21:00:15 ssuominen Exp $ -EAPI=2 +EAPI=3 inherit xfconf -DESCRIPTION="Mount plugin for Xfce4 panel" +DESCRIPTION="Mount plugin for the Xfce panel" HOMEPAGE="http://www.xfce.org/" SRC_URI="mirror://xfce/src/panel-plugins/${PN}/0.5/${P}.tar.bz2" @@ -17,11 +17,14 @@ IUSE="debug" RDEPEND=">=xfce-base/libxfcegui4-4.3.20 >=xfce-base/xfce4-panel-4.3.20" DEPEND="${RDEPEND} - dev-util/pkgconfig - dev-util/intltool" + dev-util/intltool + dev-util/pkgconfig" pkg_setup() { + XFCONF=( + --disable-dependency-tracking + $(use_enable debug) + ) + DOCS="AUTHORS ChangeLog NEWS README TODO" - XFCONF="--disable-dependency-tracking - $(use_enable debug)" } |