diff options
author | mnag <mnag@FreeBSD.org> | 2005-09-24 03:58:45 +0800 |
---|---|---|
committer | mnag <mnag@FreeBSD.org> | 2005-09-24 03:58:45 +0800 |
commit | dd06e43386b162727a1390c615f7568e0e947279 (patch) | |
tree | 45960f5aeba86cb5b46951518181e8d481f51c99 /devel | |
parent | 18065aa1ec2f23875d2c9081c5088362dd0df59c (diff) | |
download | freebsd-ports-gnome-dd06e43386b162727a1390c615f7568e0e947279.tar.gz freebsd-ports-gnome-dd06e43386b162727a1390c615f7568e0e947279.tar.zst freebsd-ports-gnome-dd06e43386b162727a1390c615f7568e0e947279.zip |
Remove devel/libunrar (wrong category)
Notified by: dinoex
Add new port archivers/libunrar
"Library to work with RAR archivies"
PR: ports/86508
Submitted by: Alex Samorukov <samm@os2.kiev.ua>
Approved by: pav (mentor)
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/libunrar/Makefile | 35 | ||||
-rw-r--r-- | devel/libunrar/distinfo | 2 | ||||
-rw-r--r-- | devel/libunrar/files/patch-aa | 60 | ||||
-rw-r--r-- | devel/libunrar/pkg-descr | 7 | ||||
-rw-r--r-- | devel/libunrar/pkg-plist | 4 |
6 files changed, 0 insertions, 109 deletions
diff --git a/devel/Makefile b/devel/Makefile index 43adf73bc798..365004af19bd 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -521,7 +521,6 @@ SUBDIR += libtool15 SUBDIR += libukcprog SUBDIR += libunicode - SUBDIR += libunrar SUBDIR += libusb SUBDIR += libvanessa_adt SUBDIR += libvanessa_logger diff --git a/devel/libunrar/Makefile b/devel/libunrar/Makefile deleted file mode 100644 index 92497cece6c2..000000000000 --- a/devel/libunrar/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -# New ports collection makefile for: unrar -# Date created: 23 Sep 2005 -# Whom: samm -# -# $FreeBSD$ -# - -PORTNAME= libunrar -PORTVERSION= 3.53 -CATEGORIES+= devel -MASTER_SITES= http://files1.rarlab.com/rar/ \ - http://files2.rarlab.com/rar/ \ - http://files3.rarlab.com/rar/ \ - http://files4.rarlab.com/rar/ \ - http://files5.rarlab.com/rar/ \ - http://files6.rarlab.com/rar/ -DISTNAME= unrarsrc-3.5.3 - -MAINTAINER= samm@os2.kiev.ua -COMMENT= Library to work with RAR archivies - -WRKSRC= ${WRKDIR}/unrar - -USE_GMAKE= yes -MAKEFILE= makefile.unix -ALL_TARGET= lib -INSTALLS_SHLIB= yes - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/libunrar.so.3 ${PREFIX}/lib/ - cd ${PREFIX}/lib && ${LN} -sf libunrar.so.3 libunrar.so - ${MKDIR} ${PREFIX}/include/libunrar3 - ${INSTALL_DATA} ${WRKSRC}/dll.hpp ${PREFIX}/include/libunrar3/dll.hpp - -.include <bsd.port.mk> diff --git a/devel/libunrar/distinfo b/devel/libunrar/distinfo deleted file mode 100644 index 42b3359a7986..000000000000 --- a/devel/libunrar/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (unrarsrc-3.5.3.tar.gz) = 4e8b975374064b774ea80067e11ccf13 -SIZE (unrarsrc-3.5.3.tar.gz) = 122678 diff --git a/devel/libunrar/files/patch-aa b/devel/libunrar/files/patch-aa deleted file mode 100644 index fa413fe8267a..000000000000 --- a/devel/libunrar/files/patch-aa +++ /dev/null @@ -1,60 +0,0 @@ -diff -ruN unrar.orig/makefile.unix unrar/makefile.unix ---- makefile.unix 2005-04-30 11:00:12.000000000 +0400 -+++ makefile.unix 2005-05-19 16:13:53.000000000 +0400 -@@ -7,9 +7,10 @@ - - # Linux using GCC - CXX=g++ --CXXFLAGS=-O2 --DEFINES=-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -+CXXFLAGS=-O2 -fPIC -DPIC -+DEFINES=-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DGUI -DSILENT - STRIP=strip -+RANLIB=ranlib - - # Linux using LCC - #CXX=lcc -@@ -86,7 +87,7 @@ - LINK=$(CXX) - - UNRAR_OBJ=filestr.o recvol.o rs.o scantree.o --LIB_OBJ=filestr.o scantree.o dll.o -+LIB_OBJ=dll.o - - OBJECTS=rar.o strlist.o strfn.o pathfn.o int64.o savepos.o global.o file.o filefn.o filcreat.o \ - archive.o arcread.o unicode.o system.o isnt.o crypt.o crc.o rawread.o encname.o \ -@@ -114,6 +115,12 @@ - $(STRIP) default.sfx - - lib: WHAT=RARDLL --lib: $(OBJECTS) $(LIB_OBJ) -- @rm -f libunrar.so -- $(LINK) -shared -o libunrar.so $(LDFLAGS) $(OBJECTS) $(LIB_OBJ) -+lib: $(OBJECTS) $(LIB_OBJ) $(UNRAR_OBJ) -+ @rm -f libunrar.so.3 -+ $(LINK) -shared -o libunrar.so.3 $(LDFLAGS) $(OBJECTS) $(LIB_OBJ) $(UNRAR_OBJ) -+ -+liba: WHAT=RARDLL -+liba: $(OBJECTS) $(LIB_OBJ) $(UNRAR_OBJ) -+ @rm -f libunrar.a -+ $(AR) rc libunrar.a $(OBJECTS) $(LIB_OBJ) $(UNRAR_OBJ) -+ $(RANLIB) libunrar.a -diff -ruN unrar.orig/dll.hpp unrar/dll.hpp ---- dll.hpp 2004-09-08 17:57:20.000000000 +0400 -+++ dll.hpp 2004-10-22 10:43:08.000000000 +0400 -@@ -26,13 +26,13 @@ - - #define RAR_DLL_VERSION 4 - --#ifdef _UNIX -+//#ifdef _UNIX - #define CALLBACK - #define PASCAL - #define LONG long - #define HANDLE void * - #define UINT unsigned int --#endif -+//#endif - - struct RARHeaderData - { diff --git a/devel/libunrar/pkg-descr b/devel/libunrar/pkg-descr deleted file mode 100644 index 00485e08f9c1..000000000000 --- a/devel/libunrar/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ - The UnRAR library is a minor part of the RAR archiver and contains - RAR uncompression algorithm. UnRAR requires very small volume of - memory to operate. - UnRAR library can be used by other programs to extract RAR archives. - This package containe small fixes from the http://mcmcc.bat.ru/clamav/. - -WWW: http://www.rarsoft.com/ diff --git a/devel/libunrar/pkg-plist b/devel/libunrar/pkg-plist deleted file mode 100644 index 75244d95c068..000000000000 --- a/devel/libunrar/pkg-plist +++ /dev/null @@ -1,4 +0,0 @@ -lib/libunrar.so -lib/libunrar.so.3 -include/libunrar3/dll.hpp -@dirrm include/libunrar3 |