From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 15A9315817D for ; Sat, 22 Jun 2024 18:54:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 217A72BC097; Sat, 22 Jun 2024 18:54:40 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 02E9D2BC098 for ; Sat, 22 Jun 2024 18:54:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1B3AE33DF47 for ; Sat, 22 Jun 2024 18:54:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 556BE1D4B for ; Sat, 22 Jun 2024 18:54:36 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1719082239.7809c9fe89ff7fc43e821529318c7307ddc24bbe.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/monica/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/monica/files/monica-3.6-makefile-cleanup.patch X-VCS-Directories: media-gfx/monica/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 7809c9fe89ff7fc43e821529318c7307ddc24bbe X-VCS-Branch: master Date: Sat, 22 Jun 2024 18:54:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b25a7bf9-21c9-4d09-8d8b-ca9268c4c625 X-Archives-Hash: fc0709db083a2ccfd6d03e27b6f122f5 commit: 7809c9fe89ff7fc43e821529318c7307ddc24bbe Author: Michael Mair-Keimberger levelnine at> AuthorDate: Tue Jun 18 17:24:06 2024 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Jun 22 18:50:39 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7809c9fe media-gfx/monica: remove unused patch Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> .../monica/files/monica-3.6-makefile-cleanup.patch | 33 ---------------------- 1 file changed, 33 deletions(-) diff --git a/media-gfx/monica/files/monica-3.6-makefile-cleanup.patch b/media-gfx/monica/files/monica-3.6-makefile-cleanup.patch deleted file mode 100644 index 21881db24971..000000000000 --- a/media-gfx/monica/files/monica-3.6-makefile-cleanup.patch +++ /dev/null @@ -1,33 +0,0 @@ -diff -Nuar monica-3.6.orig/Makefile monica-3.6/Makefile ---- monica-3.6.orig/Makefile 2005-03-14 22:00:18.000000000 -0800 -+++ monica-3.6/Makefile 2007-11-15 00:48:39.000000000 -0800 -@@ -2,22 +2,24 @@ - CXX = g++ - LINK = g++ - CFLAGS = -Wall -O2 --CXXFLAGS = `fltk-config --cxxflags` -Wall -O2 --LDFLAGS = `fltk-config --ldflags` -+CXXFLAGS = -Wall -O2 -+FLTK_CXXFLAGS = `fltk-config --cxxflags` -+LDFLAGS = -+FLTK_LDFLAGS = `fltk-config --ldflags` - TARGET = monica --DESTINATION = /usr/bin -+DESTINATION = $(DESTDIR)/usr/bin - OBJECTS = monica.o - - all: $(TARGET) - - $(TARGET): $(OBJECTS) -- $(LINK) -o $(TARGET) $(OBJECTS) $(LDFLAGS) -+ $(LINK) -o $(TARGET) $(OBJECTS) $(FLTK_LDFLAGS) $(LDFLAGS) - - - monica.o: monica.cpp -- $(CXX) -c $(CXXFLAGS) $(INCPATH) -o monica.o monica.cpp -+ $(CXX) -c $(FLTK_CXXFLAGS) $(CXXFLAGS) $(INCPATH) -o monica.o monica.cpp - - clean: - rm -f $(OBJECTS) - rm -f monica -