From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Igor Zubkov To: ALT Devel discussion list Subject: Re: [devel] husky Date: Fri, 21 Oct 2005 15:46:05 +0300 User-Agent: KMail/1.8.1 References: <4358C18A.1040606@altlinux.ru> <200510211450.55362.icesik@mail.ru> <4358E0B7.8010809@altlinux.ru> In-Reply-To: <4358E0B7.8010809@altlinux.ru> MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_PMOWDg6j1CG3FGl" Message-Id: <200510211546.07210.icesik@mail.ru> X-BeenThere: devel@lists.altlinux.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ALT Devel discussion list List-Id: ALT Devel discussion list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Oct 2005 13:13:00 -0000 Archived-At: List-Archive: List-Post: --Boundary-00=_PMOWDg6j1CG3FGl Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 8bit Content-Disposition: inline В сообщении от Пятница, 21-Окт-2005 15:36 Anton Gorlov написал(a): > Тогда где патч для huskybse? Вы отредактировали  файл руками и завернули > в пакет? так делать нельзя. По кр мере патча я не наблюдаю А зачем? [icesik@localhost huskybse]$ du -hs . 364K . [icesik@localhost huskybse]$ pwd /home/icesik/CVS/husky/current/huskybse [icesik@localhost huskybse]$ В самом пакете huskybse 360 килобайт мусора. И только 3 нужных файла. А вообще, так было сделано до меня ns@. И я не вижу причин это переделывать. Вот только мне не известно, как оно у тебя вообще умудрилось собраться? Там huskymak.cfg запатчен насмерть. :-) Diff прилагается. Перед тем как обновлять, ты бы лучше сделал диффы и посмотрел что там сделано. -- np ушёл курить --Boundary-00=_PMOWDg6j1CG3FGl Content-Type: text/x-diff; charset="koi8-r"; name="huskymak.cfg.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="huskymak.cfg.diff" --- huskymak.cfg.orig 2003-06-21 09:50:44 +0300 +++ huskymak.cfg 2005-07-04 02:57:51 +0300 @@ -8,7 +8,7 @@ # Prefix for all directories # Set to your homedir if you have no root privilegies -PREFIX=/usr/local +PREFIX=/usr # Where libraries (both .a and .so files) should be placed # You should take care that this directory is listed in the LD_LIBRARY_PATH @@ -19,14 +19,14 @@ BINDIR=$(PREFIX)/bin # Where manual pages should be placed. -MANDIR=$(PREFIX)/man +MANDIR=$(PREFIX)/share/man # Where include files should be placed (don't worry, no files will be over- # written, Husky will use its own subdirectories below this directory): INCDIR=$(PREFIX)/include # The fidoconfig config file will be in this DIRECTORY: -CFGDIR=$(PREFIX)/etc/fido +CFGDIR=/etc/ftn/husky/ # Filename (without path) for the config file (default: config) #CFGNAME=config @@ -46,7 +46,7 @@ # The same as above, but for HTML documentation. This requires a working # "texi2html" program. -#HTMLDIR=$(PREFIX)/lib/husky +HTMLDIR=$(PREFIX)/share/doc/husky # Name of the config file of MSGED TE: MSGEDCFG=\"$(CFGDIR)/msged.cfg\" @@ -116,7 +116,7 @@ # update dynamic library cache # If your operating system does not need this, you may comment out this line. -LDCONFIG=/sbin/ldconfig +#LDCONFIG=/sbin/ldconfig # rename a file MV=mv @@ -151,10 +151,10 @@ SHORTNAMES=0 # Perl support -PERL=0 +PERL=1 # ZipInternal packer -USE_HPTZIP=0 +USE_HPTZIP=1 # The DYNLIBS switch controls if dynamic or static linkage is used. # This is tricky. If you set DYNLIBS=1, dynamic libraries (.so files) @@ -176,10 +176,10 @@ EXENAMEFLAG=-o # C-compiler: generate warnings -WARNFLAGS=-Wall +WARNFLAGS= # C-compiler: optimization -OPTCFLAGS=-c -s -O3 -fomit-frame-pointer -fstrength-reduce -fPIC +OPTCFLAGS=-c $(RPM_OPT_FLAGS) -fPIC ifeq ( $(DYNLIBS), 0 ) ifeq ($(OSTYPE), UNIX) @@ -259,18 +259,23 @@ # extension of executable (e.g. ".exe") _EXE= +EXE= # extension of object file _OBJ=.o +OBJ=.o # extension of static libs _LIB=.a +LIB=.a # extension of dynamic libs _DLL=.so +DLL=.so # extension of compiled pascal units _TPU=.ppu +TPU=.ppu # directory separator (DOS-like: "\\", Unix-like: "/") --Boundary-00=_PMOWDg6j1CG3FGl--