diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-01-23 18:05:36 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-01-23 18:05:36 +0000 |
commit | 6a488194f039bd90dba8fdcf3db43dc0e86ee00b (patch) | |
tree | b14fb43dfb1e860e9cc3542a3687a422ca39dbe7 /net-misc/netifrc | |
parent | Version bump of emul-linux-x86-java wrt bug #537214 (diff) | |
download | gentoo-2-6a488194f039bd90dba8fdcf3db43dc0e86ee00b.tar.gz gentoo-2-6a488194f039bd90dba8fdcf3db43dc0e86ee00b.tar.bz2 gentoo-2-6a488194f039bd90dba8fdcf3db43dc0e86ee00b.zip |
Bump, lots of fixes from the github repo.
(Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'net-misc/netifrc')
-rw-r--r-- | net-misc/netifrc/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/netifrc/netifrc-0.3.1.ebuild | 69 |
2 files changed, 75 insertions, 1 deletions
diff --git a/net-misc/netifrc/ChangeLog b/net-misc/netifrc/ChangeLog index 291d362bc58a..1bf67b7b217e 100644 --- a/net-misc/netifrc/ChangeLog +++ b/net-misc/netifrc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/netifrc # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/netifrc/ChangeLog,v 1.40 2015/01/11 06:03:13 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/netifrc/ChangeLog,v 1.41 2015/01/23 18:05:36 robbat2 Exp $ + +*netifrc-0.3.1 (23 Jan 2015) + + 23 Jan 2015; Robin H. Johnson <robbat2@gentoo.org> +netifrc-0.3.1.ebuild: + Bump, lots of fixes from the github repo. 11 Jan 2015; Mike Gilbert <floppym@gentoo.org> netifrc-0.3.0.ebuild, netifrc-9999.ebuild: diff --git a/net-misc/netifrc/netifrc-0.3.1.ebuild b/net-misc/netifrc/netifrc-0.3.1.ebuild new file mode 100644 index 000000000000..f418a4d8f3f0 --- /dev/null +++ b/net-misc/netifrc/netifrc-0.3.1.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/netifrc/netifrc-0.3.1.ebuild,v 1.1 2015/01/23 18:05:36 robbat2 Exp $ + +EAPI=5 + +inherit eutils systemd + +DESCRIPTION="Gentoo Network Interface Management Scripts" +HOMEPAGE="http://www.gentoo.org/proj/en/base/openrc/" + +if [[ ${PV} == "9999" ]]; then + EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/${PN}.git" + #EGIT_REPO_URI="git://github.com/gentoo/netifrc" # Alternate + inherit git-r3 +else + SRC_URI="http://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" +fi + +LICENSE="BSD-2" +SLOT="0" +IUSE="" + +DEPEND="kernel_linux? ( virtual/pkgconfig ) + !<sys-fs/udev-172" +RDEPEND="sys-apps/gentoo-functions" + +src_prepare() { + if [[ ${PV} == "9999" ]] ; then + local ver="git-${EGIT_VERSION:0:6}" + sed -i "/^GITVER[[:space:]]*=/s:=.*:=${ver}:" mk/git.mk || die + einfo "Producing ChangeLog from Git history" + GIT_DIR="${S}/.git" git log >"${S}"/ChangeLog + fi + + # Allow user patches to be applied without modifying the ebuild + epatch_user +} + +src_compile() { + MAKE_ARGS="${MAKE_ARGS} + LIBEXECDIR=${EPREFIX}/lib/${PN} PF=${PF}" + + use prefix && MAKE_ARGS="${MAKE_ARGS} MKPREFIX=yes PREFIX=${EPREFIX}" + + emake ${MAKE_ARGS} all +} + +src_install() { + emake ${MAKE_ARGS} DESTDIR="${D}" install + dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO ChangeLog + + # Install the service file + LIBEXECDIR=${EPREFIX}/lib/${PN} + UNIT_DIR="$(systemd_get_unitdir)" + sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > "${T}/net_at.service" || die + systemd_newunit "${T}/net_at.service" 'net@.service' + dosym "${UNIT_DIR}/net@.service" "${UNIT_DIR}/net@lo.service" +} + +pkg_postinst() { + if [[ ! -e "${EROOT}"/etc/conf.d/net && -z $REPLACING_VERSIONS ]]; then + elog "The network configuration scripts will use dhcp by" + elog "default to set up your interfaces." + elog "If you need to set up something more complete, see" + elog "${EROOT}/usr/share/doc/${P}/README" + fi +} |