diff options
author | steve <steve@FreeBSD.org> | 1999-12-25 09:43:15 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-12-25 09:43:15 +0800 |
commit | 77954511b6a862ea13cf4ca11e417d44edc1b22c (patch) | |
tree | 0a0eb28b3fae188ef295a4e024037ccf08af9a52 /x11/xbanner/files | |
parent | 52ad854c65934139dadc3497979d80fac50bb153 (diff) | |
download | freebsd-ports-gnome-77954511b6a862ea13cf4ca11e417d44edc1b22c.tar.gz freebsd-ports-gnome-77954511b6a862ea13cf4ca11e417d44edc1b22c.tar.zst freebsd-ports-gnome-77954511b6a862ea13cf4ca11e417d44edc1b22c.zip |
* Fixed MASTER_SITES
* Modified patches to support CFLAGS/X11BASE properly
* Modified patches to support install macros
* Sorted pkg/PLIST
* Added WWW: line into pkg/DESCR
PR: 15539
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Diffstat (limited to 'x11/xbanner/files')
-rw-r--r-- | x11/xbanner/files/patch-aa | 38 | ||||
-rw-r--r-- | x11/xbanner/files/patch-ae | 19 |
2 files changed, 35 insertions, 22 deletions
diff --git a/x11/xbanner/files/patch-aa b/x11/xbanner/files/patch-aa index bd05fd450945..ec588239ad50 100644 --- a/x11/xbanner/files/patch-aa +++ b/x11/xbanner/files/patch-aa @@ -1,7 +1,7 @@ -*** Makefile.orig Mon May 12 17:55:59 1997 ---- Makefile Tue May 18 21:22:21 1999 +*** Makefile.orig Tue May 13 00:55:59 1997 +--- Makefile Sat Dec 18 03:25:54 1999 *************** -*** 6,30 **** +*** 6,27 **** .SUFFIXES: .c .o @@ -23,11 +23,8 @@ ! #INCDIR =-I/usr/X11R6/include # Library directories for the Ultrix (probably most Unixes) -! #XLIBDIR =/usr/lib/X11 - - # Comment out the following line if you do not have the XPM library. - XPM =-DHAS_XPM ---- 6,30 ---- + #XLIBDIR =/usr/lib/X11 +--- 6,27 ---- .SUFFIXES: .c .o @@ -49,10 +46,7 @@ ! INCDIR =-I$(X11BASE)/include # Library directories for the Ultrix (probably most Unixes) -! XLIBDIR =$(X11BASE)/lib - - # Comment out the following line if you do not have the XPM library. - XPM =-DHAS_XPM + #XLIBDIR =/usr/lib/X11 *************** *** 34,40 **** $(CC) $(INCDIR) $(CFLAGS) $(XPM) -c $*.c @@ -66,7 +60,7 @@ $(CC) $(INCDIR) $(CFLAGS) $(XPM) -c $*.c # Linux CFLAGS (actually generic gcc) -! CFLAGS+= -O2 +! #CFLAGS=-Wall -O2 # Want static binaries? #CFLAGS=-Wall -O2 -static @@ -85,7 +79,7 @@ # Just change it to wherever your libX11.a resides. ! LDFLAGS+=-L$(XLIBDIR) - all: xbanner freetemp random_effect xb_check + all: xbanner freetemp random_effect xb_check *************** *** 70,79 **** @@ -100,14 +94,14 @@ strip: exe strip xbanner freetemp xb_check random_effect --- 70,80 ---- - xb_check: xb_check.o - $(CC) $(CFLAGS) -o xb_check xb_check.o - -! install: freetemp xbanner xb_check random_effect -! $(INSTALL) -cs -g bin -m "0755" -o root freetemp $(BINDIR)/freetemp -! $(INSTALL) -cs -g bin -m "0755" -o root xbanner $(BINDIR)/xbanner -! $(INSTALL) -cs -g bin -m "0755" -o root xb_check $(BINDIR)/xb_check -! $(INSTALL) -cs -g bin -m "0755" -o root random_effect $(BINDIR)/random_effect + xb_check: xb_check.o + $(CC) $(CFLAGS) -o xb_check xb_check.o + +! install: freetemp xbanner xb_check random_effect +! ${BSD_INSTALL_PROGRAM} freetemp $(BINDIR)/freetemp +! ${BSD_INSTALL_PROGRAM} xbanner $(BINDIR)/xbanner +! ${BSD_INSTALL_PROGRAM} xb_check $(BINDIR)/xb_check +! ${BSD_INSTALL_PROGRAM} random_effect $(BINDIR)/random_effect strip: exe strip xbanner freetemp xb_check random_effect diff --git a/x11/xbanner/files/patch-ae b/x11/xbanner/files/patch-ae new file mode 100644 index 000000000000..bcb35f5e0649 --- /dev/null +++ b/x11/xbanner/files/patch-ae @@ -0,0 +1,19 @@ +*** samples/XBanner.ad.orig Tue May 13 00:55:58 1997 +--- samples/XBanner.ad Sat Dec 18 01:50:18 1999 +*************** +*** 96,102 **** + XBanner.BarSize: 12 + + ! Name of the pixmap file to tile over the root window +! !XBanner.BgPixFile: /usr/include/X11/pixmaps/xdm_bg.xpm + + ! The number of ripples for the Ripples BG style + XBanner.Ripples: 3 +--- 96,102 ---- + XBanner.BarSize: 12 + + ! Name of the pixmap file to tile over the root window +! !XBanner.BgPixFile: %%X11BASE%%/include/X11/pixmaps/xdm_bg.xpm + + ! The number of ripples for the Ripples BG style + XBanner.Ripples: 3 |