public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xnots/
@ 2015-09-16  3:54 Jeroen Roovers
  0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers @ 2015-09-16  3:54 UTC (permalink / raw
  To: gentoo-commits

commit:     9437bb82af886fca25543177bf8f96d6db51f306
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 16 03:53:54 2015 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Wed Sep 16 03:53:54 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9437bb82

x11-misc/xnots: Live ebuild.

Package-Manager: portage-2.2.20.1

 x11-misc/xnots/xnots-0.2.1-r1.ebuild                        | 2 +-
 x11-misc/xnots/{xnots-0.2.1-r1.ebuild => xnots-9999.ebuild} | 7 +++----
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/x11-misc/xnots/xnots-0.2.1-r1.ebuild b/x11-misc/xnots/xnots-0.2.1-r1.ebuild
index 89f8649..ee11e5f 100644
--- a/x11-misc/xnots/xnots-0.2.1-r1.ebuild
+++ b/x11-misc/xnots/xnots-0.2.1-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 inherit toolchain-funcs
 
 DESCRIPTION="A desktop sticky note program for the unix geek"
-HOMEPAGE="http://xnots.sourceforge.net"
+HOMEPAGE="http://xnots.sourceforge.net https://github.com/thePalindrome/xnots"
 SRC_URI="mirror://sourceforge/xnots/${P}.tar.gz"
 
 LICENSE="GPL-2"

diff --git a/x11-misc/xnots/xnots-0.2.1-r1.ebuild b/x11-misc/xnots/xnots-9999.ebuild
similarity index 82%
copy from x11-misc/xnots/xnots-0.2.1-r1.ebuild
copy to x11-misc/xnots/xnots-9999.ebuild
index 89f8649..d30b43e 100644
--- a/x11-misc/xnots/xnots-0.2.1-r1.ebuild
+++ b/x11-misc/xnots/xnots-9999.ebuild
@@ -3,15 +3,14 @@
 # $Id$
 
 EAPI=5
-inherit toolchain-funcs
+inherit git-r3 toolchain-funcs
 
 DESCRIPTION="A desktop sticky note program for the unix geek"
-HOMEPAGE="http://xnots.sourceforge.net"
-SRC_URI="mirror://sourceforge/xnots/${P}.tar.gz"
+HOMEPAGE="http://xnots.sourceforge.net https://github.com/thePalindrome/xnots"
+EGIT_REPO_URI="https://github.com/thePalindrome/xnots"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 x86"
 IUSE="vim-syntax"
 
 RDEPEND="x11-libs/libX11


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xnots/
@ 2016-08-22 19:01 Jeroen Roovers
  0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers @ 2016-08-22 19:01 UTC (permalink / raw
  To: gentoo-commits

commit:     25c7fd05b4e8078439390b36cda83bab69041852
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 22 19:00:43 2016 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Mon Aug 22 19:01:03 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25c7fd05

x11-misc/xnots: Fix building with sys-devel/gcc-5* (bug #575376).

Package-Manager: portage-2.3.0

 x11-misc/xnots/xnots-0.2.1-r1.ebuild | 22 ++++++++++++++--------
 x11-misc/xnots/xnots-9999.ebuild     | 22 ++++++++++++++--------
 2 files changed, 28 insertions(+), 16 deletions(-)

diff --git a/x11-misc/xnots/xnots-0.2.1-r1.ebuild b/x11-misc/xnots/xnots-0.2.1-r1.ebuild
index ee11e5f..92153b8 100644
--- a/x11-misc/xnots/xnots-0.2.1-r1.ebuild
+++ b/x11-misc/xnots/xnots-0.2.1-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-inherit toolchain-funcs
+inherit flag-o-matic toolchain-funcs
 
 DESCRIPTION="A desktop sticky note program for the unix geek"
 HOMEPAGE="http://xnots.sourceforge.net https://github.com/thePalindrome/xnots"
@@ -14,20 +14,26 @@ SLOT="0"
 KEYWORDS="amd64 x86"
 IUSE="vim-syntax"
 
-RDEPEND="x11-libs/libX11
+RDEPEND="
+	x11-libs/libX11
 	x11-libs/libXext
-	x11-libs/libXrender
 	x11-libs/libXrandr
-	x11-libs/pango[X]"
+	x11-libs/libXrender
+	x11-libs/pango[X]
+"
 
-DEPEND="${RDEPEND}
+DEPEND="
+	${RDEPEND}
 	virtual/pkgconfig
-	x11-proto/xextproto
+	x11-proto/randrproto
 	x11-proto/renderproto
-	x11-proto/randrproto"
+	x11-proto/xextproto
+"
 
 src_prepare() {
 	sed -i -e 's|LICENCE||g' Makefile || die
+
+	append-cflags -std=gnu89
 }
 
 src_compile() {

diff --git a/x11-misc/xnots/xnots-9999.ebuild b/x11-misc/xnots/xnots-9999.ebuild
index d30b43e..4615827 100644
--- a/x11-misc/xnots/xnots-9999.ebuild
+++ b/x11-misc/xnots/xnots-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-inherit git-r3 toolchain-funcs
+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"
@@ -13,20 +13,26 @@ LICENSE="GPL-2"
 SLOT="0"
 IUSE="vim-syntax"
 
-RDEPEND="x11-libs/libX11
+RDEPEND="
+	x11-libs/libX11
 	x11-libs/libXext
-	x11-libs/libXrender
 	x11-libs/libXrandr
-	x11-libs/pango[X]"
+	x11-libs/libXrender
+	x11-libs/pango[X]
+"
 
-DEPEND="${RDEPEND}
+DEPEND="
+	${RDEPEND}
 	virtual/pkgconfig
-	x11-proto/xextproto
+	x11-proto/randrproto
 	x11-proto/renderproto
-	x11-proto/randrproto"
+	x11-proto/xextproto
+"
 
 src_prepare() {
 	sed -i -e 's|LICENCE||g' Makefile || die
+
+	append-cflags -std=gnu89
 }
 
 src_compile() {


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xnots/
@ 2017-04-07  9:24 Jeroen Roovers
  0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers @ 2017-04-07  9:24 UTC (permalink / raw
  To: gentoo-commits

commit:     89b1345faf70b8401074f5edba8f5fe8f32f7073
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  7 09:24:40 2017 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Fri Apr  7 09:24:40 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89b1345f

x11-misc/xnots: Update live ebuild.

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 x11-misc/xnots/xnots-0.2.1-r2.ebuild | 1 +
 x11-misc/xnots/xnots-9999.ebuild     | 7 +++++--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/x11-misc/xnots/xnots-0.2.1-r2.ebuild b/x11-misc/xnots/xnots-0.2.1-r2.ebuild
index 89500bfca7b..15752d34778 100644
--- a/x11-misc/xnots/xnots-0.2.1-r2.ebuild
+++ b/x11-misc/xnots/xnots-0.2.1-r2.ebuild
@@ -51,6 +51,7 @@ src_install() {
 		mandir=/usr/share/man \
 		prefix=/usr \
 		install
+
 	if use vim-syntax; then
 		insinto /usr/share/vim/vimfiles/syntax
 		doins etc/xnots.vim

diff --git a/x11-misc/xnots/xnots-9999.ebuild b/x11-misc/xnots/xnots-9999.ebuild
index 59d0d019ec2..4574a53d43a 100644
--- a/x11-misc/xnots/xnots-9999.ebuild
+++ b/x11-misc/xnots/xnots-9999.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 inherit flag-o-matic git-r3 toolchain-funcs
 
 DESCRIPTION="A desktop sticky note program for the unix geek"
@@ -29,6 +29,8 @@ DEPEND="
 "
 
 src_prepare() {
+	default
+
 	sed -i -e 's|LICENCE||g' Makefile || die
 
 	append-cflags -std=gnu89
@@ -45,6 +47,7 @@ src_install() {
 		mandir=/usr/share/man \
 		prefix=/usr \
 		install
+
 	if use vim-syntax; then
 		insinto /usr/share/vim/vimfiles/syntax
 		doins etc/xnots.vim


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xnots/
@ 2019-10-21  7:11 Jeroen Roovers
  0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers @ 2019-10-21  7:11 UTC (permalink / raw
  To: gentoo-commits

commit:     b74bbff859ccd3d566edb933571e808859891609
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 21 07:02:36 2019 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Mon Oct 21 07:11:31 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b74bbff8

x11-misc/xnots: Stable

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>

 x11-misc/xnots/xnots-0.2.1-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-misc/xnots/xnots-0.2.1-r2.ebuild b/x11-misc/xnots/xnots-0.2.1-r2.ebuild
index c92abc690cd..4037d3a8f0b 100644
--- a/x11-misc/xnots/xnots-0.2.1-r2.ebuild
+++ b/x11-misc/xnots/xnots-0.2.1-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/xnots/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="vim-syntax"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xnots/
@ 2019-10-21  7:11 Jeroen Roovers
  0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers @ 2019-10-21  7:11 UTC (permalink / raw
  To: gentoo-commits

commit:     1a910be77ba8453cb34b747523e304348f578bdc
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 21 07:03:03 2019 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Mon Oct 21 07:11:32 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a910be7

x11-misc/xnots: Old

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>

 x11-misc/xnots/xnots-0.2.1-r1.ebuild | 51 ------------------------------------
 1 file changed, 51 deletions(-)

diff --git a/x11-misc/xnots/xnots-0.2.1-r1.ebuild b/x11-misc/xnots/xnots-0.2.1-r1.ebuild
deleted file mode 100644
index f177612e4c7..00000000000
--- a/x11-misc/xnots/xnots-0.2.1-r1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit flag-o-matic toolchain-funcs
-
-DESCRIPTION="A desktop sticky note program for the unix geek"
-HOMEPAGE="http://xnots.sourceforge.net https://github.com/thePalindrome/xnots"
-SRC_URI="mirror://sourceforge/xnots/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="vim-syntax"
-
-RDEPEND="
-	x11-libs/libX11
-	x11-libs/libXext
-	x11-libs/libXrandr
-	x11-libs/libXrender
-	x11-libs/pango[X]
-"
-
-DEPEND="
-	${RDEPEND}
-	virtual/pkgconfig
-	x11-base/xorg-proto
-"
-
-src_prepare() {
-	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
-}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xnots/
@ 2020-11-29 22:52 Marek Szuba
  0 siblings, 0 replies; 10+ messages in thread
From: Marek Szuba @ 2020-11-29 22:52 UTC (permalink / raw
  To: gentoo-commits

commit:     84935dfe5d42ae4c8691f59696f3eae4704a70a6
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 29 22:33:10 2020 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Sun Nov 29 22:51:44 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84935dfe

x11-misc/xnots: take over from desktop-misc

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 x11-misc/xnots/metadata.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/x11-misc/xnots/metadata.xml b/x11-misc/xnots/metadata.xml
index 230858f0c0f..8d64b0da80c 100644
--- a/x11-misc/xnots/metadata.xml
+++ b/x11-misc/xnots/metadata.xml
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="project">
-		<email>desktop-misc@gentoo.org</email>
-		<name>Gentoo Desktop Miscellaneous Project</name>
+	<maintainer type="person">
+		<email>marecki@gentoo.org</email>
+		<name>Marek Szuba</name>
 	</maintainer>
 	<upstream>
 		<remote-id type="sourceforge">xnots</remote-id>


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xnots/
@ 2021-09-28  9:53 Marek Szuba
  0 siblings, 0 replies; 10+ messages in thread
From: Marek Szuba @ 2021-09-28  9:53 UTC (permalink / raw
  To: gentoo-commits

commit:     39d70b18014100ce2783d915c77c86a338b7df4d
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 28 09:40:21 2021 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Tue Sep 28 09:49:46 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39d70b18

x11-misc/xnots: update EAPI 6 -> 8

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 x11-misc/xnots/xnots-0.2.1-r2.ebuild | 8 +++++---
 x11-misc/xnots/xnots-9999.ebuild     | 7 ++++---
 2 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/x11-misc/xnots/xnots-0.2.1-r2.ebuild b/x11-misc/xnots/xnots-0.2.1-r2.ebuild
index 4037d3a8f0b..86bc3273dd5 100644
--- a/x11-misc/xnots/xnots-0.2.1-r2.ebuild
+++ b/x11-misc/xnots/xnots-0.2.1-r2.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
+
 inherit flag-o-matic toolchain-funcs
 
 DESCRIPTION="A desktop sticky note program for the unix geek"
@@ -23,9 +24,10 @@ RDEPEND="
 
 DEPEND="
 	${RDEPEND}
-	virtual/pkgconfig
 	x11-base/xorg-proto
 "
+BDEPEND="virtual/pkgconfig"
+
 PATCHES=(
 	"${FILESDIR}"/${PN}-0.2.1-gcc6.patch
 )

diff --git a/x11-misc/xnots/xnots-9999.ebuild b/x11-misc/xnots/xnots-9999.ebuild
index 3f81446e468..3f2faa519ab 100644
--- a/x11-misc/xnots/xnots-9999.ebuild
+++ b/x11-misc/xnots/xnots-9999.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
+
 inherit flag-o-matic git-r3 toolchain-funcs
 
 DESCRIPTION="A desktop sticky note program for the unix geek"
@@ -22,9 +23,9 @@ RDEPEND="
 
 DEPEND="
 	${RDEPEND}
-	virtual/pkgconfig
 	x11-base/xorg-proto
 "
+BDEPEND="virtual/pkgconfig"
 
 src_prepare() {
 	default


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xnots/
@ 2021-09-28 20:48 Marek Szuba
  0 siblings, 0 replies; 10+ messages in thread
From: Marek Szuba @ 2021-09-28 20:48 UTC (permalink / raw
  To: gentoo-commits

commit:     d1243b7473bc4b39be921b60bb8fae18e5009a7a
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 28 20:48:03 2021 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Tue Sep 28 20:48:28 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1243b74

x11-misc/xnots: keyword 0.2.1-r2 for -riscv

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 x11-misc/xnots/xnots-0.2.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xnots/xnots-0.2.1-r2.ebuild b/x11-misc/xnots/xnots-0.2.1-r2.ebuild
index 86bc3273dd5..808203035be 100644
--- a/x11-misc/xnots/xnots-0.2.1-r2.ebuild
+++ b/x11-misc/xnots/xnots-0.2.1-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/xnots/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 -riscv x86"
 IUSE="vim-syntax"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xnots/
@ 2022-03-11 16:40 Marek Szuba
  0 siblings, 0 replies; 10+ messages in thread
From: Marek Szuba @ 2022-03-11 16:40 UTC (permalink / raw
  To: gentoo-commits

commit:     6c7dc7c9771570173860253abbb9de4547c76ee0
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 11 15:40:12 2022 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Fri Mar 11 16:40:24 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c7dc7c9

x11-misc/xnots: remove live ebuild

With there having been no activity in the upstream repository since
August 2016, there isn't much point in having a live ebuild.

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 x11-misc/xnots/xnots-9999.ebuild | 54 ----------------------------------------
 1 file changed, 54 deletions(-)

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
-}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xnots/
@ 2024-09-14  7:09 Joonas Niilola
  0 siblings, 0 replies; 10+ messages in thread
From: Joonas Niilola @ 2024-09-14  7:09 UTC (permalink / raw
  To: gentoo-commits

commit:     ca8c907d555f0c61092388987053e30cf0b25284
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sun Sep  1 16:27:28 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat Sep 14 07:09:26 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca8c907d

x11-misc/xnots: use https

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/38371
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 x11-misc/xnots/xnots-0.2.1-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-misc/xnots/xnots-0.2.1-r2.ebuild b/x11-misc/xnots/xnots-0.2.1-r2.ebuild
index 295f6a4a777b..17a80c98c19b 100644
--- a/x11-misc/xnots/xnots-0.2.1-r2.ebuild
+++ b/x11-misc/xnots/xnots-0.2.1-r2.ebuild
@@ -5,8 +5,8 @@ EAPI=8
 
 inherit flag-o-matic toolchain-funcs
 
-DESCRIPTION="A desktop sticky note program for the unix geek"
-HOMEPAGE="http://xnots.sourceforge.net https://github.com/thePalindrome/xnots"
+DESCRIPTION="Desktop sticky note program for the unix geek"
+HOMEPAGE="https://xnots.sourceforge.net https://github.com/thePalindrome/xnots"
 SRC_URI="https://downloads.sourceforge.net/xnots/${P}.tar.gz"
 
 LICENSE="GPL-2"


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2024-09-14  7:09 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-22 19:01 [gentoo-commits] repo/gentoo:master commit in: x11-misc/xnots/ Jeroen Roovers
  -- strict thread matches above, loose matches on Subject: below --
2024-09-14  7:09 Joonas Niilola
2022-03-11 16:40 Marek Szuba
2021-09-28 20:48 Marek Szuba
2021-09-28  9:53 Marek Szuba
2020-11-29 22:52 Marek Szuba
2019-10-21  7:11 Jeroen Roovers
2019-10-21  7:11 Jeroen Roovers
2017-04-07  9:24 Jeroen Roovers
2015-09-16  3:54 Jeroen Roovers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox