Changeset 347


Ignore:
Timestamp:
Mar 14, 2007 3:50:24 PM (6 years ago)
Author:
dkg
Message:

tweak: incorporated good suggestions from rafael@…

Location:
trunk/tweak/src/tweak
Files:
2 added
1 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/tweak/src/tweak/Makefile

    r333 r347  
    2323LIBS :=  
    2424 
    25 PREFIX=$(DESTDIR)/usr 
     25PREFIX=/usr/local 
    2626BINDIR=$(PREFIX)/bin 
    27 MANDIR=$(PREFIX)/share/man/man1 
     27MANDIR=$(PREFIX)/man/man1 
    2828 
    2929TWEAK := main.o keytab.o actions.o search.o rcfile.o buffer.o btree.o 
  • trunk/tweak/src/tweak/debian/changelog

    r346 r347  
     1tweak (3.01-2) unstable; urgency=low 
     2 
     3  * removed debian/dirs 
     4  * cleaned up debian/rules and added proper copyright/license 
     5  * debian/control: added rafael to uploaders, dropped ${misc:Depends}, 
     6    properly formatted URL and added another short paragraph. 
     7  * fixed up menu entry with tweak-wrapper 
     8  * added btree.html to docs 
     9  * thanks, Rafael Laboissiere! 
     10 
     11 -- Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net>  Wed, 14 Mar 2007 15:50:31 -0400 
     12 
    113tweak (3.01-1) unstable; urgency=low 
    214 
  • trunk/tweak/src/tweak/debian/control

    r346 r347  
    33Priority: extra 
    44Maintainer: Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net> 
     5Uploaders: Rafael Laboissiere <rafael@debian.org> 
    56Build-Depends: debhelper (>= 5), halibut, libncurses5-dev 
    67Standards-Version: 3.7.2.2 
     
    89Package: tweak 
    910Architecture: any 
    10 Depends: ${shlibs:Depends}, ${misc:Depends} 
     11Depends: ${shlibs:Depends} 
    1112Description: an efficient hex editor 
    1213 Tweak is a hex editor. It allows you to edit a file at very low 
     
    1617 generate binary file formats incorrectly, and many other things. 
    1718 . 
    18  It is written by Simon Tatham, who publishes it at 
    19  http://www.chiark.greenend.org.uk/~sgtatham/tweak/ 
     19 Tweak runs under any terminal emulator using the curses library.  It 
     20 has customizable keybindings, but the default keybindings are similar 
     21 to emacs. 
     22 . 
     23  Homepage: http://www.chiark.greenend.org.uk/~sgtatham/tweak/ 
  • trunk/tweak/src/tweak/debian/copyright

    r346 r347  
    88Copyright: 1994-2007 Simon Tatham 
    99 
    10 License: 
     10License: tweak is distributed with an MIT-style license: 
    1111 
    1212Permission is hereby granted, free of charge, to any person 
  • trunk/tweak/src/tweak/debian/menu

    r346 r347  
    11?package(tweak):needs="text" hints="Expert" section="Apps/Technical"\ 
    2   title="tweak" command="/usr/bin/tweak" 
     2  title="tweak" command="/usr/bin/tweak-wrapper" 
  • trunk/tweak/src/tweak/debian/rules

    r346 r347  
    11#!/usr/bin/make -f 
    22# -*- makefile -*- 
    3 # Sample debian/rules that uses debhelper. 
    4 # This file was originally written by Joey Hess and Craig Small. 
    5 # As a special exception, when this file is copied by dh-make into a 
    6 # dh-make output file, you may use that output file without restriction. 
    7 # This special exception was added by Craig Small in version 0.37 of dh-make. 
     3# tweak makefile for debian packaging  (initially generated by dh-make) 
     4# 
     5# (C) 2007 by Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net> 
     6#  
     7# This file is released under the GPL, v2 or later 
     8# (see /usr/share/common-licenses/GPL) 
    89 
    910# Uncomment this to turn on verbose mode. 
    1011#export DH_VERBOSE=1 
    11  
    12  
    13  
    1412 
    1513CFLAGS = -Wall -g 
     
    3129build-stamp: configure-stamp  
    3230        dh_testdir 
    33  
    34         # Add here commands to compile the package. 
    3531        $(MAKE) 
    36         #docbook-to-man debian/tweak.sgml > tweak.1 
    37  
    3832        touch $@ 
    3933 
     
    4236        dh_testroot 
    4337        rm -f build-stamp configure-stamp 
    44  
    45         # Add here commands to clean up after the build process. 
    4638        -$(MAKE) clean 
    47  
    4839        dh_clean  
    4940 
     
    5445        dh_installdirs 
    5546 
    56         # Add here commands to install the package into debian/tweak. 
    57         $(MAKE) DESTDIR=$(CURDIR)/debian/tweak install 
    58  
     47        $(MAKE) DESTDIR=$(CURDIR)/debian/tweak PREFIX=$(CURDIR)/debian/tweak/usr MANDIR=$(CURDIR)/debian/tweak/usr/share/man/man1 install 
     48        install -m 0755 debian/tweak-wrapper $(CURDIR)/debian/tweak/usr/bin/tweak-wrapper 
    5949 
    6050# Build architecture-independent files here. 
     
    6959        dh_installdocs 
    7060        dh_installexamples 
    71 #       dh_install 
    72 #       dh_installmenu 
    73 #       dh_installdebconf        
    74 #       dh_installlogrotate 
    75 #       dh_installemacsen 
    76 #       dh_installpam 
    77 #       dh_installmime 
    78 #       dh_python 
    79 #       dh_installinit 
    80 #       dh_installcron 
    81 #       dh_installinfo 
     61        dh_installmenu 
    8262        dh_installman 
    8363        dh_link 
Note: See TracChangeset for help on using the changeset viewer.