diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2017-07-13 21:49:07 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-07-13 21:49:58 +0200 |
commit | fdcc8c593edc47ba10d10d7e0d0aab6d6808fabc (patch) | |
tree | 560f7210a25b0fff09756a52080a4985f1d58495 /app-emulation/nemu/nemu-1.2.0.ebuild | |
parent | dev-python/ipython: removed the hack for linking (diff) | |
download | gentoo-fdcc8c593edc47ba10d10d7e0d0aab6d6808fabc.tar.gz gentoo-fdcc8c593edc47ba10d10d7e0d0aab6d6808fabc.tar.bz2 gentoo-fdcc8c593edc47ba10d10d7e0d0aab6d6808fabc.zip |
app-emulation/nemu: version bump.
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'app-emulation/nemu/nemu-1.2.0.ebuild')
-rw-r--r-- | app-emulation/nemu/nemu-1.2.0.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/app-emulation/nemu/nemu-1.2.0.ebuild b/app-emulation/nemu/nemu-1.2.0.ebuild new file mode 100644 index 000000000000..93bfd51e27f3 --- /dev/null +++ b/app-emulation/nemu/nemu-1.2.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="ncurses interface for QEMU" +HOMEPAGE="https://unixdev.ru/nemu" +SRC_URI="http://unixdev.ru/src/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+vnc debug" + +RDEPEND=" + virtual/udev + virtual/libusb:1= + dev-db/sqlite:3= + sys-libs/ncurses:0=[unicode] + app-emulation/qemu[vnc] + vnc? ( net-misc/tigervnc )" + +DEPEND=" + ${RDEPEND} + sys-devel/gettext" + +src_configure() { + local mycmakeargs=( + -DNM_WITH_VNC_CLIENT=$(usex vnc) + -DNM_DEBUG=$(usex debug) + ) + cmake-utils_src_configure +} + +pkg_postinst() { + elog "Old database is not supported (nEMU versions < 1.0.0)." + elog "You will need to delete current database." + elog "If upgraded from 1.0.0, execute script:" + elog "/usr/share/nemu/scripts/upgrade_db.sh" +} |