diff options
Diffstat (limited to 'net-im/toxic')
-rw-r--r-- | net-im/toxic/metadata.xml | 12 | ||||
-rw-r--r-- | net-im/toxic/toxic-9999.ebuild | 56 |
2 files changed, 0 insertions, 68 deletions
diff --git a/net-im/toxic/metadata.xml b/net-im/toxic/metadata.xml deleted file mode 100644 index 35db8749..00000000 --- a/net-im/toxic/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer> - <email>holgersson@posteo.de</email> - <name>holgersson</name> - </maintainer> - <use> - <flag name="libnotify">Enable desktop notification support.</flag> - <flag name="sound-notify">Adds support for sound notifications.</flag> - </use> -</pkgmetadata> diff --git a/net-im/toxic/toxic-9999.ebuild b/net-im/toxic/toxic-9999.ebuild deleted file mode 100644 index dbb19fd1..00000000 --- a/net-im/toxic/toxic-9999.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 - -inherit autotools git-2 toolchain-funcs - -DESCRIPTION="CLI Frontend for Tox" -HOMEPAGE="http://wiki.tox.im/Toxic" -SRC_URI="" -EGIT_REPO_URI="git://github.com/Tox/toxic - https://github.com/Tox/toxic" - -LICENSE="GPL-3" -SLOT="0" -IUSE="+libnotify +sound-notify" - -RDEPEND=" - dev-libs/libconfig - net-libs/tox[av] - media-libs/openal - sys-libs/ncurses - x11-libs/libX11 - libnotify? ( x11-libs/libnotify ) - sound-notify? ( media-libs/freealut )" -DEPEND="${RDEPEND} - app-text/asciidoc - virtual/pkgconfig" - -src_prepare() { - # verbose build - sed -i \ - -e 's/@$(CC)/$(CC)/' \ - build/Makefile || die - epatch_user -} - -src_compile() { - use libnotify || export NOTIFY="DISABLE_DESKTOP_NOTIFY=1" - use sound-notify || export SOUND_NOTIFY="DISABLE_SOUND_NOTIFY=1" - emake \ - CC="$(tc-getCC)" \ - USER_CFLAGS="${CFLAGS}" \ - USER_LDFLAGS="${LDFLAGS}" \ - PREFIX="/usr" ${NOTIFY} ${SOUND_NOTIFY} \ - -C build -} - -src_install() { - emake install PREFIX="/usr" DESTDIR="${D}" -C build -} - -pkg_postinst() { - elog "DHT node list is available in /usr/share/${PN}/DHTnodes" -} |