diff options
author | ache <ache@FreeBSD.org> | 1995-07-08 08:06:53 +0800 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-07-08 08:06:53 +0800 |
commit | 4d0dd995fe856eefeea9bda19749c8c1b5b6696a (patch) | |
tree | e948019a2557f52370ed5813db0258614f0d5b9c | |
parent | 3d02518db1cd5dab3f2eef8b4dbb4e93b236a7db (diff) | |
download | freebsd-ports-graphics-4d0dd995fe856eefeea9bda19749c8c1b5b6696a.tar.gz freebsd-ports-graphics-4d0dd995fe856eefeea9bda19749c8c1b5b6696a.tar.zst freebsd-ports-graphics-4d0dd995fe856eefeea9bda19749c8c1b5b6696a.zip |
Remove USA_RESIDENT stuff, it goes to pgp meta-port now
-rw-r--r-- | russian/pgp.language/Makefile | 22 |
1 files changed, 3 insertions, 19 deletions
diff --git a/russian/pgp.language/Makefile b/russian/pgp.language/Makefile index 71d61583568..c286ac38fe1 100644 --- a/russian/pgp.language/Makefile +++ b/russian/pgp.language/Makefile @@ -3,7 +3,7 @@ # Date created: 4 May 1995 # Whom: ache # -# $Id: Makefile,v 1.4 1995/06/26 15:00:37 ache Exp $ +# $Id: Makefile,v 1.5 1995/07/01 08:30:48 asami Exp $ # DISTNAME= pgp26ru @@ -14,7 +14,8 @@ EXTRACT_SUFX= .zip MAINTAINER= ache@FreeBSD.ORG -EXEC_DEPENDS= unzip:${PORTSDIR}/archivers/unzip +EXEC_DEPENDS += unzip:${PORTSDIR}/archivers/unzip +EXEC_DEPENDS += pgp:${PORTSDIR}/utils/pgp EXTRACT_CMD= unzip EXTRACT_ARGS= -q NO_WRKSUBDIR= YES @@ -22,26 +23,9 @@ NO_CONFIGURE= YES NO_PATCH= YES NO_BUILD= YES -# Need to define USA_RESIDENT to YES or NO -IS_INTERACTIVE= YES - PGPLIB= ${PREFIX}/lib/pgp OBJS= language.txt ru.hlp -.if !defined(USA_RESIDENT) || ${USA_RESIDENT} != YES && ${USA_RESIDENT} != NO -exec_depends: - @echo - @echo You must set variable USA_RESIDENT to YES, if you are USA resident - @echo or to NO, if you aren\'t USA resident to build this package - @false -.elif defined(USA_RESIDENT) -.if ${USA_RESIDENT} == YES -EXEC_DEPENDS += pgp:${PORTSDIR}/utils/pgp.usa_only -.else -EXEC_DEPENDS += pgp:${PORTSDIR}/utils/pgp.non-usa_only -.endif -.endif - do-install: [ -d ${PGPLIB} ] || mkdir -p ${PGPLIB} cd ${WRKSRC}; install -c -o bin -g bin -m 444 ${OBJS} ${PGPLIB} |