diff options
author | Tim Harder <radhermit@gentoo.org> | 2014-01-24 07:16:52 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2014-01-24 07:16:52 +0000 |
commit | 52e6c41f7a0d6c2f82ab0af123480a9e733a258e (patch) | |
tree | d2c55a323187b3e561e9bfe71457b62b0746bee0 /x11-misc/sxhkd/files | |
parent | Modernize the ebuild (eapi5, prune_libtool_files, and so forth) (diff) | |
download | gentoo-2-52e6c41f7a0d6c2f82ab0af123480a9e733a258e.tar.gz gentoo-2-52e6c41f7a0d6c2f82ab0af123480a9e733a258e.tar.bz2 gentoo-2-52e6c41f7a0d6c2f82ab0af123480a9e733a258e.zip |
Initial import, ebuild by me.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'x11-misc/sxhkd/files')
-rw-r--r-- | x11-misc/sxhkd/files/sxhkd-0.5.3-flags.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/x11-misc/sxhkd/files/sxhkd-0.5.3-flags.patch b/x11-misc/sxhkd/files/sxhkd-0.5.3-flags.patch new file mode 100644 index 000000000000..8e485c2cb58c --- /dev/null +++ b/x11-misc/sxhkd/files/sxhkd-0.5.3-flags.patch @@ -0,0 +1,23 @@ +--- sxhkd-0.5.3/Makefile ++++ sxhkd-0.5.3/Makefile +@@ -5,7 +5,6 @@ + LIBS = -lm -lxcb -lxcb-keysyms + CFLAGS += -std=c99 -pedantic -Wall -Wextra -I$(PREFIX)/include + CFLAGS += -D_POSIX_C_SOURCE=200112L -DVERSION=\"$(VERSION)\" +-LDFLAGS += -L$(PREFIX)/lib + + PREFIX ?= /usr/local + BINPREFIX = $(PREFIX)/bin +@@ -14,11 +13,9 @@ + SRC = $(wildcard *.c) + OBJ = $(SRC:.c=.o) + +-all: CFLAGS += -Os +-all: LDFLAGS += -s + all: $(NAME) + +-debug: CFLAGS += -O0 -g -DDEBUG ++debug: CFLAGS += -DDEBUG + debug: $(NAME) + + include Sourcedeps |