diff options
author | John Baldwin <jhb@FreeBSD.org> | 2000-03-31 18:28:30 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2000-03-31 18:28:30 +0000 |
commit | 5754f0ce52a623024d4df860fb8a85d65da3099c (patch) | |
tree | 93ef44b080474a99366e196a43ec0725e7b8f1c8 /x11/efancylauncher/files/patch-aa | |
parent | E-Buttons is an epplet for Enlightenment that provides several buttons (diff) |
E-FancyLauncher is an epplet that is an advanced button bar used to launch
other applications. It features tooltips and pixmaps for each button as
well as optional transparency.
Diffstat (limited to 'x11/efancylauncher/files/patch-aa')
-rw-r--r-- | x11/efancylauncher/files/patch-aa | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/x11/efancylauncher/files/patch-aa b/x11/efancylauncher/files/patch-aa new file mode 100644 index 000000000000..451076f6128e --- /dev/null +++ b/x11/efancylauncher/files/patch-aa @@ -0,0 +1,32 @@ +--- makefile.orig Sat Mar 11 12:05:21 2000 ++++ makefile Fri Mar 31 09:45:06 2000 +@@ -5,6 +5,8 @@ + DOC = $(NAME).ABOUT + DATA = 1.gif 2.gif 3.gif + DOC_OR_DATA = 1 ++EBIN = ${PREFIX}/bin ++EROOT = ${PREFIX}/share/enlightenment + DATAPATH = ${EROOT}/epplet_data/$(NAME) + + all: $(EPPLET) +@@ -13,10 +15,7 @@ + @make -i -s pack + + %.epplet: %.c +- @echo Compiling $@ +- @gcc -Wall -O2 -I/usr/X11R6/include -o $@ $< -lepplet +- @strip $@; +- @if [ ! -z "`which sstrip`" ]; then sstrip $@; fi; ++ ${CC} ${CFLAGS} -I${PREFIX}/include -o $@ $< -L${PREFIX}/lib -lepplet + + install: $(EPPLET) + @if [ -z "${EROOT}" -o -z "${EBIN}" ]; then\ +@@ -52,7 +51,7 @@ + @echo $(NAME) "uninstalled :(" + + clean: +- rm $(EPPLET) *~ ++ rm $(EPPLET) + + pack: $(EPPLET) + rm *~ |