Bug 62908 - an error in freebsd patch for port pl-kadu
Summary: an error in freebsd patch for port pl-kadu
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: Pav Lucistnik
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-02-16 12:30 UTC by Marek Łukaszuk
Modified: 2004-02-17 13:17 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 Marek Łukaszuk 2004-02-16 12:30:20 UTC
There is an error in /usr/ports/polish/kadu/files/patch-Makefile.in.

Fix: 

in file /usr/ports/polish/kadu/files/patch-Makefile.in
the lines:
+               $(INSTALL_DATA) -d hi48-app-kadu.png "$(DESTDIR)$(datadir)/icons/hicolor/48x48/apps/kadu.png"
+               $(INSTALL_DATA) -d hi32-app-kadu.png "$(DESTDIR)$(datadir)/icons/hicolor/32x32/apps/kadu.png"
+               $(INSTALL_DATA) -d hi16-app-kadu.png "$(DESTDIR)$(datadir)/icons/hicolor/16x16/apps/kadu.png"

should be:
+               $(INSTALL_DATA) hi48-app-kadu.png "$(DESTDIR)$(datadir)/icons/hicolor/48x48/apps/kadu.png"
+               $(INSTALL_DATA) hi32-app-kadu.png "$(DESTDIR)$(datadir)/icons/hicolor/32x32/apps/kadu.png"
+               $(INSTALL_DATA) hi16-app-kadu.png "$(DESTDIR)$(datadir)/icons/hicolor/16x16/apps/kadu.png"
How-To-Repeat: cd /usr/ports/polish/kadu; make install
Comment 1 Pav Lucistnik freebsd_committer freebsd_triage 2004-02-17 12:52:45 UTC
State Changed
From-To: open->closed

No. -d have to be there, otherwise install will fail 
if target directories does not exists.
Comment 2 Pav Lucistnik freebsd_committer freebsd_triage 2004-02-17 12:55:31 UTC
State Changed
From-To: closed->open

D'oh! You're right. 


Comment 3 Pav Lucistnik freebsd_committer freebsd_triage 2004-02-17 12:55:31 UTC
Responsible Changed
From-To: freebsd-ports-bugs->pav

I messed it.
Comment 4 Pav Lucistnik freebsd_committer freebsd_triage 2004-02-17 13:17:48 UTC
State Changed
From-To: open->closed

Fix committed.