Bug 7331 - xmake port is rev. 1.01; current version is 1.05
Summary: xmake port is rev. 1.01; current version is 1.05
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 1998-07-20 20:30 UTC by wollman
Modified: 1998-07-27 01:05 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description wollman 1998-07-20 20:30:00 UTC
	Need updated port.

Fix: 

Here is a revised patch-aa:

	--- Makefile.orig	Wed Oct 22 12:35:01 1997
	+++ Makefile	Mon Jul 20 15:21:52 1998
	@@ -1,11 +1,12 @@
	 
	 SRCS= include.c list.c main.c subs.c var.c wild.c
	 OBJS= include.o list.o main.o subs.o var.o wild.o
	-CFLAGS= -g -O2 -Wall -Wstrict-prototypes
	+CFLAGS= -O2 -Wall -Wstrict-prototypes
	 LFLAGS=
	 EXE= xmake
	-IBDIR= /usr/local/bin
	-IMDIR= /usr/local/man/man1
	+PREFIX?= /usr/local
	+IBDIR= $(PREFIX)/bin
	+IMDIR= $(PREFIX)/man/man1
	 CC= cc
	 
	 all: $(EXE)
	@@ -16,6 +17,6 @@
	 clean:
	 	rm -f $(OBJS) $(EXE)
	 
	-install: all
	-	install -c -s -m 755 $(EXE) $(IBDIR)/$(EXE)
	-
	+install:
	+	install -c -s -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} $(EXE) $(IBDIR)
	+	install -c -o ${MANOWN} -g ${MANGRP} -m ${MANMODE} xmake.1 $(IMDIR)
How-To-Repeat: 
	cd /usr/ports/devel/xmake; make install
	Then try to build current version of diablo
Comment 1 Steve Price freebsd_committer freebsd_triage 1998-07-27 01:04:50 UTC
State Changed
From-To: open->closed

Update committed, thanks!