diff options
author | Jean-Yves Lefort <jylefort@FreeBSD.org> | 2005-05-22 16:43:56 +0000 |
---|---|---|
committer | Jean-Yves Lefort <jylefort@FreeBSD.org> | 2005-05-22 16:43:56 +0000 |
commit | 20e0d563111ea7fdfb91585035c6fdac86ecb080 (patch) | |
tree | f2da291e70ca2502e29cb16330f5d20b1b3a2868 /security/libtomcrypt/files | |
parent | Update to snapshot 20050522 (diff) |
- Update to 1.02 [1]
- Do not use optimization CFLAGS
- OPTIONSify
- When WITH_DOCS is defined, do not run-depend on ghostscript-gnu (the
user is free to use his favorite pdf viewer)
- Sort pkg-plist
PR: ports/81356 [1]
Submitted by: maintainer [1]
Notes
Notes:
svn path=/head/; revision=135878
Diffstat (limited to 'security/libtomcrypt/files')
-rw-r--r-- | security/libtomcrypt/files/patch-demos-test-makefile | 11 | ||||
-rw-r--r-- | security/libtomcrypt/files/patch-makefile | 29 |
2 files changed, 0 insertions, 40 deletions
diff --git a/security/libtomcrypt/files/patch-demos-test-makefile b/security/libtomcrypt/files/patch-demos-test-makefile deleted file mode 100644 index a2585b74d9c3..000000000000 --- a/security/libtomcrypt/files/patch-demos-test-makefile +++ /dev/null @@ -1,11 +0,0 @@ ---- demos/test/makefile.orig Mon Jan 10 16:35:45 2005 -+++ demos/test/makefile Mon Jan 10 16:35:58 2005 -@@ -19,7 +19,7 @@ - #CCMALLOC = -lccmalloc -ldl - - test: $(OBJECTS) -- $(CC) $(CFLAGS) $(OBJECTS) /usr/lib/libtomcrypt.a $(CCMALLOC) -o test -+ $(CC) $(CFLAGS) $(OBJECTS) $(PREFIX)/lib/libtomcrypt.a $(CCMALLOC) -o test - - clean: - rm -rf test *.o *.obj *.exe *~ .libs diff --git a/security/libtomcrypt/files/patch-makefile b/security/libtomcrypt/files/patch-makefile deleted file mode 100644 index a582545b8fb2..000000000000 --- a/security/libtomcrypt/files/patch-makefile +++ /dev/null @@ -1,29 +0,0 @@ ---- makefile.orig Thu Dec 30 19:55:17 2004 -+++ makefile Tue Jan 11 12:10:05 2005 -@@ -50,13 +50,13 @@ - #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 -+LIBPATH=$(PREFIX)/lib -+INCPATH=$(PREFIX)/include -+DATAPATH=$(PREFIX)/share/doc/libtomcrypt/pdf - - #Who do we install as? - USER=root --GROUP=root -+GROUP=wheel - - #List of objects to compile. - -@@ -251,7 +251,7 @@ - latex crypt > /dev/null - makeindex crypt.idx > /dev/null - latex crypt > /dev/null -- dvipdf crypt -+ dvipdft crypt - mv -ivf crypt.pdf doc/crypt.pdf - rm -f $(LEFTOVERS) - |