Bug 134065 - database/linux-f8-sqlite3 - Makefile has a little bug
Summary: database/linux-f8-sqlite3 - Makefile has a little bug
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Greg Larkin
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-04-28 15:40 UTC by Hisamitsu Sato
Modified: 2009-04-30 14:30 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Hisamitsu Sato 2009-04-28 15:40:01 UTC
Because of the definition of DOCSDIR in Makefile,
'package' and 'deinstall' targets are failed.
DOCSDIR is expanded to usr/share/doc/sqlite3-3.4.2,
but usr/share/doc/sqlite-3.4.2 is correct.

Fix: 

PLIST_FILES=  usr/bin/sqlite3 usr/lib/libsqlite3.so.0 \
                usr/lib/libsqlite3.so.0.8.6
! DOCSDIR=      ${PREFIX}/usr/share/doc/${PORTNAME}-${PORTVERSION}
  PORTDOCS=     README
  MANPREFIX=    ${PREFIX}/usr/share
  MAN1=         sqlite3.1
--- 22,28 ----

  PLIST_FILES=  usr/bin/sqlite3 usr/lib/libsqlite3.so.0 \
                usr/lib/libsqlite3.so.0.8.6
! DOCSDIR=      ${PREFIX}/usr/share/doc/sqlite-${PORTVERSION}
  PORTDOCS=     README
  MANPREFIX=    ${PREFIX}/usr/share
  MAN1=         sqlite3.1--DGMOOQjKOmCANO1yrrbrWlR7ZkBY4oJHjLliZzegQm7fgu0F
Content-Type: text/plain; name="file.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="file.diff"

*** Makefile    Tue Apr  7 02:35:44 2009
--- Makefile.new        Tue Apr 28 00:51:36 2009
***************
*** 22,28 ****
How-To-Repeat: Move to /usr/ports/database/linux-f8-sqlite3,
% make package
or
% make install && make deinstall
Comment 1 Greg Larkin freebsd_committer freebsd_triage 2009-04-29 23:37:01 UTC
Responsible Changed
From-To: freebsd-ports-bugs->glarkin

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2009-04-30 14:25:14 UTC
glarkin     2009-04-30 13:25:04 UTC

  FreeBSD ports repository

  Modified files:
    databases/linux-f8-sqlite3 Makefile 
  Log:
  - Fixed mtree error
  - Bumped PORTREVISION
  
  PR:             ports/134065
  Submitted by:   Hisamitsu Sato <hisa32 at gmail dot com>
  
  Revision  Changes    Path
  1.3       +2 -1      ports/databases/linux-f8-sqlite3/Makefile
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 3 Greg Larkin freebsd_committer freebsd_triage 2009-04-30 14:25:26 UTC
State Changed
From-To: open->closed

Committed with PORTREVISION bump, thank you!