summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenry Gebhardt <hsggebhardt@gmail.com>2014-02-26 23:27:09 -0500
committerHenry Gebhardt <hsggebhardt@gmail.com>2014-02-26 23:27:09 -0500
commitd7a1f541c39dde104ad7b0caaee0256a52ce55a8 (patch)
tree21391af35d56b442b51c2fb11f4c7403dcfc5c70
parentsys-apps/systemd-units-22: kexec is upstream (diff)
downloadsystemd-master.tar.gz
systemd-master.tar.bz2
systemd-master.zip
sys-apps/systemd-units: The last unit file is in the main tree!HEADmaster
Thanks to everyone who was involved!
-rw-r--r--sys-apps/systemd-units/files/services-desktop/iptables.service19
-rw-r--r--sys-apps/systemd-units/metadata.xml15
-rw-r--r--sys-apps/systemd-units/systemd-units-22.ebuild28
3 files changed, 0 insertions, 62 deletions
diff --git a/sys-apps/systemd-units/files/services-desktop/iptables.service b/sys-apps/systemd-units/files/services-desktop/iptables.service
deleted file mode 100644
index eeb6537..0000000
--- a/sys-apps/systemd-units/files/services-desktop/iptables.service
+++ /dev/null
@@ -1,19 +0,0 @@
-# This file is part of systemd.
-#
-# systemd is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-
-[Unit]
-Description=iptables
-DefaultDependencies=false
-After=local-fs.target
-
-[Service]
-Type=oneshot
-RemainAfterExit=yes
-ExecStart=/sbin/iptables-restore /var/lib/iptables/rules-save
-
-[Install]
-WantedBy=sysinit.target
diff --git a/sys-apps/systemd-units/metadata.xml b/sys-apps/systemd-units/metadata.xml
deleted file mode 100644
index 4da9a2d..0000000
--- a/sys-apps/systemd-units/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <herd>no-herd</herd>
- <maintainer>
- <email>trapni@gentoo.org</email>
- <name>Christian Parpart</name>
- </maintainer>
- <use>
- <flag name='basic'>installs basic systemd files (used on desktop and on server)</flag>
- <flag name='server'>installs server-related systemd files</flag>
- <flag name='desktop'>installs desktop-related systemd files</flag>
- <flag name='ingnome3'>installs systemd files for packages that have one in the Gnome 3 overlay</flag>
- </use>
-</pkgmetadata>
diff --git a/sys-apps/systemd-units/systemd-units-22.ebuild b/sys-apps/systemd-units/systemd-units-22.ebuild
deleted file mode 100644
index 48bb880..0000000
--- a/sys-apps/systemd-units/systemd-units-22.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=3
-inherit eutils systemd
-
-DESCRIPTION="Service files for sys-apps/systemd"
-HOMEPAGE="http://www.freedesktop.org/wiki/Software/systemd http://en.gentoo-wiki.com/wiki/Systemd"
-SRC_URI=""
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+desktop"
-
-RDEPEND=""
-DEPEND=""
-
-src_install() {
- if use desktop; then
- systemd_dounit "${FILESDIR}"/services-desktop/*
- fi
-
- # Files in portage cannot contain a literal '@' character. Therfore,
- # convert the code string "_at" into an '@' before installing.
- rename '_at' '@' "${D}/$(systemd_get_unitdir)"/*
-}