summaryrefslogtreecommitdiff
path: root/x11-misc/xnots
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-03-20 00:40:44 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-03-20 00:40:44 +0000
commit4cbcc855382a06088e2f016f62cafdbcb7e40665 (patch)
tree356496503d52354aa6d9f2d36126302fed5f3a73 /x11-misc/xnots
parentfcc5224904648a8e6eb528d7603154160a20022f (diff)
gentoo resync : 20.03.2022
Diffstat (limited to 'x11-misc/xnots')
-rw-r--r--x11-misc/xnots/Manifest1
-rw-r--r--x11-misc/xnots/xnots-9999.ebuild54
2 files changed, 0 insertions, 55 deletions
diff --git a/x11-misc/xnots/Manifest b/x11-misc/xnots/Manifest
index 00ad1e92d3cf..a1649149be20 100644
--- a/x11-misc/xnots/Manifest
+++ b/x11-misc/xnots/Manifest
@@ -1,5 +1,4 @@
AUX xnots-0.2.1-gcc6.patch 1134 BLAKE2B f169cdd6236c4f068aa2661c3d937d5d97035572a4e09322531f3ab3eefd2b2dc8f4f7b529973c342dad8bb80817bb7c2888c038cf1f2c4faf8f4bd926d2ff6c SHA512 236afd11f535ae142f380926ce0c8c7a6ff299ae1718b3a946aedb7daf63da949cfd282d8f4c87975ac4ac77ef7493296e95e51a49e0adc796d8a39ed5dce7a6
DIST xnots-0.2.1.tar.gz 41442 BLAKE2B 26579cfb5508ed1e956b027c769c9c0924870867428cdf5b569e571fce57777267f0523a9ceebabe7f2c705c7b6a34549a122d162cb547e44d8489708fb9e83c SHA512 bb1a334150aac932839c8d9e04d8c9f1c419f5221a218fbbe3523060fbb8d62e616f89ec06a8237fa290de37db103e98a560953ef820ef016f35dd5c844eb65c
EBUILD xnots-0.2.1-r2.ebuild 1021 BLAKE2B 61fd6c1968d3bd624f871672337d905c0132822b5a73c063a28a87367c01289205800e7be798e69bd51d789974d35edb71502a49de8b35e4bedef0b2c5921952 SHA512 2774369734797f42250f37d70ec01e5b7d5280c608ab32f73f09c74d445101a97d14c4b0c18175f4564be2f88c01f133246023bf24f9e40eebe5b93ab37c1485
-EBUILD xnots-9999.ebuild 955 BLAKE2B e0eff7bf1d5be96495952077f84fdd0450cebdeebee5a2e1c6e52b71027db409825b011e622cdc66264df002a259a1d5ec4d3799e3ed2538e9d2a7a56856dd2e SHA512 e2bd55be25d0f42da10ea7e388b3304f46d0d1767aebeb9901355953f77bab1e818d7eda5a7f10a804c980357ae7af34e88129771fd11a61eae81399be0c9c68
MISC metadata.xml 380 BLAKE2B c884315924e50e9a4067693f8d949bc6d3b590e3a8e4773800c7f622e23922f29c2b21f8f498763c19d8d7c632d0d1ecd381b86813e16958b4eab53a2984ee76 SHA512 891cb62d7e52aa1d8a79a59c6ad84040cd76de669d2647411b89728a895ecadc816ffc487ae29e1527cf602cd6a43f66352518675e1117b937149dd75d0e9795
diff --git a/x11-misc/xnots/xnots-9999.ebuild b/x11-misc/xnots/xnots-9999.ebuild
deleted file mode 100644
index 3f2faa519ab0..000000000000
--- a/x11-misc/xnots/xnots-9999.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit flag-o-matic git-r3 toolchain-funcs
-
-DESCRIPTION="A desktop sticky note program for the unix geek"
-HOMEPAGE="http://xnots.sourceforge.net https://github.com/thePalindrome/xnots"
-EGIT_REPO_URI="https://github.com/thePalindrome/xnots"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="vim-syntax"
-
-RDEPEND="
- x11-libs/libX11
- x11-libs/libXext
- x11-libs/libXrandr
- x11-libs/libXrender
- x11-libs/pango[X]
-"
-
-DEPEND="
- ${RDEPEND}
- x11-base/xorg-proto
-"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
- default
-
- sed -i -e 's|LICENCE||g' Makefile || die
-
- append-cflags -std=gnu89
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" NO_DEBUG=1
-}
-
-src_install() {
- emake \
- DESTDIR="${D}" \
- docdir=/usr/share/doc/${PF} \
- mandir=/usr/share/man \
- prefix=/usr \
- install
-
- if use vim-syntax; then
- insinto /usr/share/vim/vimfiles/syntax
- doins etc/xnots.vim
- fi
-}