summaryrefslogtreecommitdiff
path: root/x11-misc/dmenu
diff options
context:
space:
mode:
authorbaldr333 <ra@afu.re>2023-12-21 19:54:24 -0500
committerbaldr333 <ra@afu.re>2023-12-21 19:54:24 -0500
commit2f3f4f6a3db13640bf8e097b41fd1dbfc3701f81 (patch)
treed22ea7370713249178a4899262768d88af46223e /x11-misc/dmenu
Initial commit
Diffstat (limited to 'x11-misc/dmenu')
-rw-r--r--x11-misc/dmenu/Manifest1
-rw-r--r--x11-misc/dmenu/dmenu-9999.ebuild57
2 files changed, 58 insertions, 0 deletions
diff --git a/x11-misc/dmenu/Manifest b/x11-misc/dmenu/Manifest
new file mode 100644
index 0000000..7799476
--- /dev/null
+++ b/x11-misc/dmenu/Manifest
@@ -0,0 +1 @@
+EBUILD dmenu-9999.ebuild 1271 BLAKE2B 9d95d9dc5800c8df8b8256779b29867515addf41561a414c1a8fcd447acbe88a60ae6389ebb20562eabda86cd2fd201377023bd6b954f6aa259677b9a437516f SHA512 e73d44bd5fb6648a93e63d058cb3ba7c7cef59e734485901b63308f3895f2d2492dde97f88c5a219ae3c80e3a19221d289ef4b93842424652ca2efa5c0a67e04
diff --git a/x11-misc/dmenu/dmenu-9999.ebuild b/x11-misc/dmenu/dmenu-9999.ebuild
new file mode 100644
index 0000000..60bca74
--- /dev/null
+++ b/x11-misc/dmenu/dmenu-9999.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit git-r3 savedconfig toolchain-funcs
+
+DESCRIPTION="a generic, highly customizable, and efficient menu for the X Window System"
+HOMEPAGE="https://github.com/LukeSmithxyz/dmenu"
+EGIT_REPO_URI="https://github.com/LukeSmithxyz/dmenu.git"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS=""
+IUSE="xinerama"
+
+RDEPEND="
+ media-libs/fontconfig
+ x11-libs/libX11
+ x11-libs/libXft
+ xinerama? ( x11-libs/libXinerama )
+"
+DEPEND="${RDEPEND}
+ x11-base/xorg-proto
+"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+ default
+
+ sed -i \
+ -e 's|^ @| |g' \
+ -e '/^ echo/d' \
+ Makefile || die
+
+ restore_config config.h
+}
+
+src_compile() {
+emake CC=$(tc-getCC) \
+ #"FREETYPELIBS=$( $(tc-getPKG_CONFIG) --libs x11 fontconfig xft 2>/dev/null )" \
+ #"X11INC=$( $(tc-getPKG_CONFIG) --cflags x11 2>/dev/null )" \
+ #"X11LIB=$( $(tc-getPKG_CONFIG) --libs x11 2>/dev/null )" \
+ "XINERAMAFLAGS=$(
+ usex xinerama "-DXINERAMA $(
+ $(tc-getPKG_CONFIG) --cflags xinerama 2>/dev/null
+ )" ''
+ )" \
+ "XINERAMALIBS=$(
+ usex xinerama "$( $(tc-getPKG_CONFIG) --libs xinerama 2>/dev/null)" ''
+ )"
+}
+
+src_install() {
+ emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
+
+ save_config config.h
+}