diff options
author | Karel Kočí <karel.koci@nic.cz> | 2017-09-27 16:11:14 +0200 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2017-09-27 16:11:14 +0200 |
commit | 4a29ef2f7a33175de75374e35fe66a42b206c3b9 (patch) | |
tree | ebbb093d45828ac1fb3052c522d4473bb2df99a2 | |
parent | c3d2769b511914d6c3494b1f68eb1fbfd52f8b78 (diff) | |
download | gentoo-personal-overlay-4a29ef2f7a33175de75374e35fe66a42b206c3b9.tar.gz gentoo-personal-overlay-4a29ef2f7a33175de75374e35fe66a42b206c3b9.tar.bz2 gentoo-personal-overlay-4a29ef2f7a33175de75374e35fe66a42b206c3b9.zip |
Add cgdb
-rw-r--r-- | profiles/devel/packages | 1 | ||||
-rw-r--r-- | sys-apps/multiconfig/multiconfig-0.1.1-r2.ebuild | 11 |
2 files changed, 9 insertions, 3 deletions
diff --git a/profiles/devel/packages b/profiles/devel/packages index 565eccd..1602934 100644 --- a/profiles/devel/packages +++ b/profiles/devel/packages @@ -41,6 +41,7 @@ dev-util/ccache sys-fs/squashfs-tools # Utility +dev-util/cgdb dev-util/cloc dev-util/lcov dev-util/crosstool-ng diff --git a/sys-apps/multiconfig/multiconfig-0.1.1-r2.ebuild b/sys-apps/multiconfig/multiconfig-0.1.1-r2.ebuild index d10c35b..a09fdf1 100644 --- a/sys-apps/multiconfig/multiconfig-0.1.1-r2.ebuild +++ b/sys-apps/multiconfig/multiconfig-0.1.1-r2.ebuild @@ -1,6 +1,3 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - EAPI=6 VER="${PV%-r*}" @@ -51,3 +48,11 @@ src_install() { # TODO fi } + +pkg_postinst() { + # TODO run multiconfig + # TODO check if they are not activated + use bridge && einfo "Don't forget to activate bridge and bridge-dhcp services" + use firewall && einfo "Don't forget to activate iptables and ip6tables services" + use openvpn && einfo "Don't forget to activate myvpn service" +} |