aboutsummaryrefslogtreecommitdiffstats
path: root/converters/ascii2binary/files
diff options
context:
space:
mode:
authorthierry <thierry@FreeBSD.org>2006-03-05 16:29:04 +0800
committerthierry <thierry@FreeBSD.org>2006-03-05 16:29:04 +0800
commit242b166756b3383a3c3294f3bc08591a39cfc10f (patch)
tree65fa2dff63381767d964876c5ac8303669dfea7e /converters/ascii2binary/files
parentf9753aaca244b8255afd36b7a2ed3ff267ca6aa6 (diff)
downloadfreebsd-ports-gnome-242b166756b3383a3c3294f3bc08591a39cfc10f.tar.gz
freebsd-ports-gnome-242b166756b3383a3c3294f3bc08591a39cfc10f.tar.zst
freebsd-ports-gnome-242b166756b3383a3c3294f3bc08591a39cfc10f.zip
Upgrade to 2.9 to make fetchable again.
Changelog at <http://billposer.org/Software/a2b.html#changelog>. Approved by: portmgr (linimon)
Diffstat (limited to 'converters/ascii2binary/files')
-rw-r--r--converters/ascii2binary/files/patch-Makefile49
1 files changed, 0 insertions, 49 deletions
diff --git a/converters/ascii2binary/files/patch-Makefile b/converters/ascii2binary/files/patch-Makefile
deleted file mode 100644
index ef22206e6959..000000000000
--- a/converters/ascii2binary/files/patch-Makefile
+++ /dev/null
@@ -1,49 +0,0 @@
---- Makefile.orig Mon Sep 12 19:35:10 2005
-+++ Makefile Mon Jan 30 00:09:11 2006
-@@ -1,28 +1,27 @@
--CC=gcc
--BINDIR=/usr/local/bin
--MANDIR=/usr/local/man/man1
-+BINDIR=${PREFIX}/bin
-+MANDIR=${PREFIX}/man/man1
- BINS= ascii2binary binary2ascii
- MANS= ascii2binary.1 binary2ascii.1
--LOCALEDIR=/usr/local/share/locale
--CFLAGS= -DPACKAGE=\"ascii2binary\" -DLOCALEDIR=\"${LOCALEDIR}\"
-+LOCALEDIR=${PREFIX}/share/locale
-+CFLAGS= ${CPPFLAGS} -DPACKAGE=\"ascii2binary\" -DLOCALEDIR=\"${LOCALEDIR}\"
- all: ${BINS} mo
- #CFLAGS= -DPACKAGE=\"ascii2binary\" -DLOCALEDIR=\"${LOCALEDIR}\"
- #all: ${BINS}
-
- ascii2binary: ascii2binary.o GetWord.o MachineInfo.o endian.o exitcodes.o
-- ${CC} -o ascii2binary ascii2binary.o GetWord.o MachineInfo.o endian.o exitcodes.o
-+ ${CC} ${LDFLAGS} -o ascii2binary ascii2binary.o GetWord.o MachineInfo.o endian.o exitcodes.o ${LIBS}
-
- binary2ascii: binary2ascii.o binfmt.o MachineInfo.o endian.o exitcodes.o
-- ${CC} -o binary2ascii binary2ascii.o binfmt.o MachineInfo.o endian.o exitcodes.o
-+ ${CC} ${LDFLAGS} -o binary2ascii binary2ascii.o binfmt.o MachineInfo.o endian.o exitcodes.o ${LIBS}
-
- MachineInfo.o: MachineInfo.c
-- ${CC} -c MachineInfo.c
-+ ${CC} -c ${CFLAGS} MachineInfo.c
-
- GetWord.o: GetWord.c
-- ${CC} -c GetWord.c
-+ ${CC} -c ${CFLAGS} GetWord.c
-
- binfmt.o: binfmt.c
-- ${CC} -c binfmt.c
-+ ${CC} -c ${CFLAGS} binfmt.c
-
- exitcodes.o: exitcodes.c
- ${CC} -c ${CFLAGS} exitcodes.c
-@@ -33,7 +32,7 @@
- binary2ascii.o: binary2ascii.c
- ${CC} ${CFLAGS} -c binary2ascii.c
-
--mo:
-+mo:
- (cd locale/fr/LC_MESSAGES; make ascii2binary.mo)
-
- install: ${BINS} ${MANS}