diff options
author | Volker Stolz <vs@FreeBSD.org> | 2004-08-09 13:53:10 +0000 |
---|---|---|
committer | Volker Stolz <vs@FreeBSD.org> | 2004-08-09 13:53:10 +0000 |
commit | 8842673952243af53a670aff98436f8073aecb01 (patch) | |
tree | e60601acb3417c93883efa245e01921cbb52c4d4 /security/libtomcrypt/files | |
parent | Update to 2.99.02 (diff) |
Update to 0.98
Closes PR: ports/68496
Submitted by: Wesley Shields, Yonatan Bokovza (maintainer)
Notes
Notes:
svn path=/head/; revision=115740
Diffstat (limited to 'security/libtomcrypt/files')
-rw-r--r-- | security/libtomcrypt/files/patch-makefile | 32 |
1 files changed, 11 insertions, 21 deletions
diff --git a/security/libtomcrypt/files/patch-makefile b/security/libtomcrypt/files/patch-makefile index 02b6cf2e557d..4ebf7349518c 100644 --- a/security/libtomcrypt/files/patch-makefile +++ b/security/libtomcrypt/files/patch-makefile @@ -1,27 +1,21 @@ ---- makefile.orig Wed Dec 24 20:59:55 2003 -+++ makefile Sat Apr 10 23:01:52 2004 -@@ -52,9 +52,9 @@ +--- makefile.orig Mon Aug 9 11:52:40 2004 ++++ makefile Mon Aug 9 12:03:56 2004 +@@ -43,10 +43,10 @@ #LIBPATH-The directory for libtomcrypt to be installed to. #INCPATH-The directory to install the header files for libtomcrypt. #DATAPATH-The directory to install the pdf docs. -DESTDIR= -LIBPATH=/usr/lib -INCPATH=/usr/include +-DATAPATH=/usr/share/doc/libtomcrypt/pdf +DESTDIR=$(PREFIX) +LIBPATH=/lib +INCPATH=/include - DATAPATH=/usr/share/doc/libtomcrypt/pdf ++DATAPATH=/share/doc/libtomcrypt/pdf #List of objects to compile. -@@ -106,6 +106,7 @@ - #This rule makes the test program included with libtomcrypt - test: library $(TESTOBJECTS) -+ mv $(TEST).o demos - $(CC) $(TESTOBJECTS) $(LIBNAME) -o $(TEST) $(WARN) - - #This rule makes the hash program included with libtomcrypt -@@ -129,13 +130,19 @@ +@@ -179,13 +179,15 @@ #This rule installs the library and the header files. This must be run #as root in order to have a high enough permission to write to the correct #directories and to set the owner and group to root. @@ -31,20 +25,16 @@ - install -d -g root -o root $(DESTDIR)$(DATAPATH) - install -g root -o root $(LIBNAME) $(DESTDIR)$(LIBPATH) - install -g root -o root $(HEADERS) $(DESTDIR)$(INCPATH) -- install -g root -o root crypt.pdf $(DESTDIR)$(DATAPATH) -+install: library docs install-nodocs -+ install -d -g wheel -o root $(DOCSDIR) -+ install -g wheel -o root crypt.pdf $(DOCSDIR) -+ install -g wheel -o root notes/* $(DOCSDIR) +- install -g root -o root doc/crypt.pdf $(DESTDIR)$(DATAPATH) ++install: docs install-nodocs ++ install -d -g wheel -o root $(DESTDIR)$(DATAPATH) ++ install -g wheel -o root doc/crypt.pdf $(DESTDIR)$(DATAPATH) + -+install-nodocs: ++install-nodocs: library + install -d -g wheel -o root $(DESTDIR)$(LIBPATH) + install -d -g wheel -o root $(DESTDIR)$(INCPATH) -+ install -d -g wheel -o root $(EXAMPLESDIR) + install -g wheel -o root $(LIBNAME) $(DESTDIR)$(LIBPATH) + install -g wheel -o root $(HEADERS) $(DESTDIR)$(INCPATH) -+ install -g wheel -o root examples/* $(EXAMPLESDIR) -+ install -g wheel -o root demos/* $(EXAMPLESDIR) #This rule cleans the source tree of all compiled code, not including the pdf #documentation. |