summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Bauman <bman@gentoo.org>2020-09-23 21:01:13 -0400
committerAaron Bauman <bman@gentoo.org>2020-09-23 21:06:04 -0400
commitd332631ffc27159d6b9a6565cab251e6bcab8d8a (patch)
treeee3562661e1f8a8bbd94c0255e218832dc346dfd /x11-wm/notion
parentdev-util/cwdiff: drop old (diff)
downloadgentoo-d332631ffc27159d6b9a6565cab251e6bcab8d8a.tar.gz
gentoo-d332631ffc27159d6b9a6565cab251e6bcab8d8a.tar.bz2
gentoo-d332631ffc27159d6b9a6565cab251e6bcab8d8a.zip
x11-wm/notion: drop old
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'x11-wm/notion')
-rw-r--r--x11-wm/notion/Manifest1
-rw-r--r--x11-wm/notion/notion-3_p2013030200.ebuild83
2 files changed, 0 insertions, 84 deletions
diff --git a/x11-wm/notion/Manifest b/x11-wm/notion/Manifest
index 9fe30fa8827c..a52bb27879bf 100644
--- a/x11-wm/notion/Manifest
+++ b/x11-wm/notion/Manifest
@@ -1,2 +1 @@
-DIST notion-3-2013030200-src.tar.bz2 625211 BLAKE2B c3909bb0d9e3eba582c1adc2a275c1ab9b7d23c9a2c172be526fe96de1f76165f131857e7ff5b549c8452ef0b7e6157c71377dd4bf28a2b4ecc5261e3866a59f SHA512 266df9ca2f3613c7138a3bfe7bab1fadd27c1ad40078d134be827167b9407b900bc240780cb5375e6996777978bb8a3bc12fbfa45bb4d8d619ee93335c6039b2
DIST notion-3_p2015061300.tar.gz 797057 BLAKE2B 55258bb1d47a1c2506e9cb6654e5d68d69494a749174eaace2a53416ae40cac908b0398400a5a377dbb07618aa800529cbdfc0c7ef946d285681e1dfccfd9c48 SHA512 254be12a8ece555d9f6253d99891bb51214379d0c04b6bf9595b7e5bf9493cb5d2fada37438f89621e7157f9e3647e446b5e173847498ee3608081f006b86679
diff --git a/x11-wm/notion/notion-3_p2013030200.ebuild b/x11-wm/notion/notion-3_p2013030200.ebuild
deleted file mode 100644
index 743153bd4a20..000000000000
--- a/x11-wm/notion/notion-3_p2013030200.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils multilib toolchain-funcs
-
-DESCRIPTION="Notion is a tiling, tabbed window manager for the X window system"
-HOMEPAGE="https://notionwm.net/"
-SRC_URI="mirror://sourceforge/${PN}/files/${P/_p/-}-src.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="nls xinerama +xrandr"
-
-RDEPEND=">=dev-lang/lua-5.1:0=
- x11-libs/libSM
- x11-libs/libX11
- x11-libs/libXext
- nls? ( sys-devel/gettext )
- xinerama? ( x11-libs/libXinerama )
- xrandr? ( x11-libs/libXrandr )"
-
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-# needs luaposix,slingshot,... not in tree
-RESTRICT=test
-
-S=${WORKDIR}/${P/_p/-}
-
-src_prepare() {
- sed -e "/^CFLAGS=/s:=:+=:" \
- -e "/^CFLAGS/{s:-Os:: ; s:-g::}" \
- -e "/^LDFLAGS=/{s:=:+=: ; s:-Wl,--as-needed::}" \
- -e "/^CC=/s:=:?=:" \
- -e "s:^\(PREFIX=\).*$:\1${ROOT}usr:" \
- -e "s:^\(ETCDIR=\).*$:\1${ROOT}etc/notion:" \
- -e "s:^\(LIBDIR=\).*:\1\$(PREFIX)/$(get_libdir):" \
- -e "s:^\(DOCDIR=\).*:\1\$(PREFIX)/share/doc/${PF}:" \
- -e "s:^\(LUA_DIR=\).*$:\1\$(PREFIX)/usr:" \
- -e "s:^\(VARDIR=\).*$:\1${ROOT}var/cache/${PN}:" \
- -e "s:^\(X11_PREFIX=\).*:\1\$(PREFIX)/usr:" \
- -i system-autodetect.mk || die
- sed -e 's/gcc/$(CC)/g' \
- -i ioncore/Makefile || die
- export STRIPPROG=true
-
- tc-export CC
-}
-
-src_configure() {
- use nls || export DEFINES=" -DCF_NO_LOCALE -DCF_NO_GETTEXT"
-
- if ! use xinerama ; then
- sed -e 's/mod_xinerama//g' -i modulelist.mk || die
- fi
-
- if ! use xrandr ; then
- sed -e 's/mod_xrandr//g' -i modulelist.mk || die
- fi
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" AR="$(tc-getAR)" \
- RANLIB="$(tc-getRANLIB)"
-}
-
-src_install() {
- default
-
- exeinto /etc/X11/Sessions
- doexe "${FILESDIR}"/notion
-
- insinto /usr/share/xsessions
- doins "${FILESDIR}"/notion.desktop
-}
-
-pkg_postinst() {
- elog "If you want notion to have an ability to view a file based on its"
- elog "guessed MIME type you should emerge app-misc/run-mailcap."
-}