hwoarang    14/11/09 11:20:49

  Modified:             metadata.xml ChangeLog
  Added:                dhcpcd-ui-0.7.4.ebuild
  Log:
  Version bump. Thanks to tokiclover <[email protected]>. Bug #522854
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
09BF4F54C2BA7F3C!)

Revision  Changes    Path
1.5                  net-misc/dhcpcd-ui/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd-ui/metadata.xml?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd-ui/metadata.xml?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd-ui/metadata.xml?r1=1.4&r2=1.5

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd-ui/metadata.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- metadata.xml        6 Aug 2012 20:09:59 -0000       1.4
+++ metadata.xml        9 Nov 2014 11:20:48 -0000       1.5
@@ -1,7 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
 <pkgmetadata>
+       <herd>proxy-maintainers</herd>
        <maintainer>
-               <email>[email protected]</email>
+               <email>[email protected]</email>
+               <description>Maintainer. Assign bugs to him</description>
        </maintainer>
+<use>
+       <flag name="gtk3">
+               Add support for <pkg>x11-libs/gtk+</pkg> (The GIMP Toolkit)
+       </flag>
+       <flag name="icons">
+       Install bundled-in user interface icons</flag>
+</use>
 </pkgmetadata>



1.8                  net-misc/dhcpcd-ui/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd-ui/ChangeLog?rev=1.8&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd-ui/ChangeLog?rev=1.8&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd-ui/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd-ui/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   22 Mar 2014 19:30:17 -0000      1.7
+++ ChangeLog   9 Nov 2014 11:20:48 -0000       1.8
@@ -1,6 +1,12 @@
 # ChangeLog for net-misc/dhcpcd-ui
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd-ui/ChangeLog,v 1.7 
2014/03/22 19:30:17 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd-ui/ChangeLog,v 1.8 
2014/11/09 11:20:48 hwoarang Exp $
+
+*dhcpcd-ui-0.7.4 (09 Nov 2014)
+
+  09 Nov 2014; Markos Chandras <[email protected]> +dhcpcd-ui-0.7.4.ebuild,
+  metadata.xml:
+  Version bump. Thanks to tokiclover <[email protected]>. Bug #522854
 
   22 Mar 2014; Michael Palimaka <[email protected]> 
-dhcpcd-ui-0.5.1.ebuild,
   -files/dhcpcd-ui-0.5.1-libnotify-0.7.patch:



1.1                  net-misc/dhcpcd-ui/dhcpcd-ui-0.7.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd-ui/dhcpcd-ui-0.7.4.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd-ui/dhcpcd-ui-0.7.4.ebuild?rev=1.1&content-type=text/plain

Index: dhcpcd-ui-0.7.4.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd-ui/dhcpcd-ui-0.7.4.ebuild,v 
1.1 2014/11/09 11:20:48 hwoarang Exp $

EAPI=5

inherit eutils systemd

DESCRIPTION="Desktop notification and configuration for dhcpcd"
HOMEPAGE="http://roy.marples.name/projects/dhcpcd-ui/";
SRC_URI="http://roy.marples.name/downloads/${PN%-ui}/${P}.tar.bz2";

LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug gtk gtk3 icons qt4 libnotify"
REQUIRED_USE="|| ( gtk gtk3 qt4 )
        gtk3? ( !gtk ) gtk? ( !gtk3 )
        qt4? ( icons )"

DEPEND="${DEPEND}
        virtual/libintl
        libnotify? (
                gtk?  ( x11-libs/libnotify )
                gtk3? ( x11-libs/libnotify )
                qt4?  ( kde-base/kdelibs )
        )
        gtk?  ( x11-libs/gtk+:2 )
        gtk3? ( x11-libs/gtk+:3 )
        qt4?  ( dev-qt/qtgui:4 )"

RDEPEND=">=net-misc/dhcpcd-6.4.4
        !icons? ( x11-themes/hicolor-icon-theme )"

src_prepare()
{
        epatch_user
}

src_configure()
{
        local myeconfargs=(
                $(use_enable debug)
                $(use_with icons)
                $(usex gtk  '--with-gtk=gtk+-2.0' '')
                $(usex gtk3 '--with-gtk=gtk+-3.0' '')
                $(use_with qt4 qt)
                $(use_enable libnotify notification)
        )
        econf "${myeconfargs[@]}"
}

src_install()
{
        emake DESTDIR="${D}" INSTALL_ROOT="${D}" install

        systemd_dounit src/dhcpcd-online/dhcpcd-wait-online.service
}




Reply via email to