diff options
author | ache <ache@FreeBSD.org> | 1997-05-06 00:54:14 +0800 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-05-06 00:54:14 +0800 |
commit | b2100c402d753594789deb161eacd1ff9852b951 (patch) | |
tree | c31aca1911eee0d1721f3e6d9c1ca486c0edc5cc /converters/trans/Makefile | |
parent | b6865ab595893549c0e7755bbe8f6d5339ebdaa5 (diff) | |
download | freebsd-ports-gnome-b2100c402d753594789deb161eacd1ff9852b951.tar.gz freebsd-ports-gnome-b2100c402d753594789deb161eacd1ff9852b951.tar.zst freebsd-ports-gnome-b2100c402d753594789deb161eacd1ff9852b951.zip |
Upgrade to 1.12
Diffstat (limited to 'converters/trans/Makefile')
-rw-r--r-- | converters/trans/Makefile | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/converters/trans/Makefile b/converters/trans/Makefile index d1773cbc9983..cc22616be932 100644 --- a/converters/trans/Makefile +++ b/converters/trans/Makefile @@ -1,36 +1,42 @@ # New ports collection makefile for: trans -# Version required: 1.11 +# Version required: 1.12 # Date created: 6 May 1996 # Whom: ache # -# $Id: Makefile,v 1.4 1996/11/30 08:58:45 asami Exp $ +# $Id: Makefile,v 1.5 1997/04/26 23:55:24 asami Exp $ # -DISTNAME= trans111 -PKGNAME= trans-1.11 +DISTNAME= trans112 +PKGNAME= trans-1.12 CATEGORIES= converters russian -MASTER_SITES= ftp://ftp.informatik.uni-erlangen.de/pub/doc/ISO/charsets/ +MASTER_SITES= http://www.kostis.net/freeware/ MAINTAINER= ache@FreeBSD.org LIBDIR= ${PREFIX}/lib/trans ALL= transtab transiso checkiso transce8 +post-build: + cd ${WRKSRC} && ${MAKE} bintab + do-install: cd ${WRKSRC} && $(INSTALL_PROGRAM) $(ALL) ${PREFIX}/bin cd ${WRKSRC} && \ for i in $(ALL); do \ $(INSTALL_MAN) $$i.man ${PREFIX}/man/cat1/$$i.1; \ done - ${MKDIR} ${LIBDIR}/tables ${LIBDIR}/xlt ${LIBDIR}/doc + install -d -o ${BINOWN} -g ${BINGRP} -m 755 \ + ${LIBDIR}/tables ${LIBDIR}/xlt ${LIBDIR}/doc ${LIBDIR}/bin cd ${WRKSRC} && \ - $(INSTALL_SCRIPT) checkall mkbintab mklist one iso ${LIBDIR} + $(INSTALL_SCRIPT) checkall mkbintab mklist one iso ${LIBDIR} cd ${WRKSRC} && \ - $(INSTALL_DATA) iso10646 encoding.lis bin/trans.[ch] bin/trans.man \ - bin/utimbuf.h bin/utf.[ch] ${LIBDIR} + $(INSTALL_DATA) iso10646 encoding.lis datatype.h ${LIBDIR} + cd ${WRKSRC}/bin && \ + $(INSTALL_DATA) trans.[ch] trans.man utimbuf.h utf.[ch] \ + ${LIBDIR}/bin cd ${WRKSRC}/tables && $(INSTALL_DATA) * ${LIBDIR}/tables - cd ${WRKSRC}/xlt && $(INSTALL_DATA) * ${LIBDIR}/xlt cd ${WRKSRC}/doc && $(INSTALL_DATA) * ${LIBDIR}/doc + cd ${WRKSRC}/xlt && $(INSTALL_DATA) * ${LIBDIR}/xlt .include <bsd.port.mk> |